Created
November 1, 2010 11:59
-
-
Save paulchubatyy/658047 to your computer and use it in GitHub Desktop.
install msmtp
This file contains hidden or 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
| sudo service apache2 restart |
This file contains hidden or 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
| sudo chmod 0644 /etc/msmtprc |
This file contains hidden or 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
| sudo apt-get install msmtp ca-certificates |
This file contains hidden or 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
| defaults | |
| tls on | |
| tls_starttls on | |
| tls_trust_file /etc/ssl/certs/ca-certificates.crt | |
| account default | |
| host smtp.gmail.com | |
| port 587 | |
| auth on | |
| user [email protected] | |
| password mypass | |
| from [email protected] | |
| logfile /var/log/msmtp.log |
This file contains hidden or 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
| sendmail_path = "/usr/bin/msmtp -t" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment