Created
January 28, 2016 23:19
-
-
Save luissquall/bab79bba9036bfa95e51 to your computer and use it in GitHub Desktop.
msmtp user configuration file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set default values for all following accounts. | |
defaults | |
# Always use TLS. | |
tls on | |
# Set a list of trusted CAs for TLS. You can use a system-wide default file, | |
# as in this example, or download the root certificate of your CA and use that. | |
tls_trust_file ~/etc/ssl/certs/cacert.pem | |
# [email protected] account | |
account [email protected] | |
host smtp.mandrillapp.com | |
port 587 | |
# Envelope-from address | |
from [email protected] | |
# Authentication. | |
auth on | |
#auth login | |
user [email protected] | |
#password 1234 | |
# Set a default account | |
account default : [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment