31 lines
793 B
Plaintext
31 lines
793 B
Plaintext
# Set default values for all following accounts.
|
|
defaults
|
|
|
|
# Always use TLS
|
|
tls on
|
|
|
|
# Set a list of trusted CAs for TLS. The default is to use system settings,
|
|
# but you can select your own file.
|
|
tls_trust_file /etc/ssl/certs/ca-certificates.crt
|
|
logfile ~/.config/msmtp/msmtp.log
|
|
|
|
# Account Gmail
|
|
account gmail
|
|
|
|
# Host name of the SMTP server
|
|
host smtp.gmail.com
|
|
|
|
# Use the mail submission port 587 instead of the SMTP port 25.
|
|
port 587
|
|
|
|
# Envelop-from address
|
|
from fabio.scottodisantolo@gmail.com
|
|
|
|
# Authentication. The password is given using one of five methods
|
|
auth on
|
|
user fabio.scottodisantolo@gmail.com
|
|
passwordeval "gpg -q -d /home/fscotto/.cache/gmail1.gpg"
|
|
|
|
# Set a default account
|
|
account default : gmail
|