Initial commit

This commit is contained in:
2018-06-30 13:56:53 +00:00
committed by artlef
commit 8a58bb9264
11 changed files with 339 additions and 0 deletions

27
msmtprc Normal file
View File

@ -0,0 +1,27 @@
# Set default values for all following accounts.
defaults
auth on
tls on
tls_trust_file /etc/ssl/certs/ca-certificates.crt
logfile ~/.msmtp.log
# first example
account example
host smtp.example.com
port 465
from myuser@example.com
user myuser
# passwd.gpg contains the password for the first account.
passwordeval "gpg -dq ~/.getmail/passwd.gpg"
tls_starttls off
# Gmail
account gmail
host smtp.gmail.com
port 587
from gmailuser@gmail.com
user gmailuser
passwordeval "gpg -dq ~/.offlineimappass.gpg"
# Set a default account
account default : myuser