-
Notifications
You must be signed in to change notification settings - Fork 1
/
msmtprc
36 lines (32 loc) · 984 Bytes
/
msmtprc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Set default values for all following accounts.
defaults
auth on
tls on
tls_trust_file /etc/ssl/certs/ca-certificates.crt
logfile ~/.msmtp.log
# Gmail
account Gmail
host smtp.gmail.com
port 587
from Your Name
user [email protected]
passwordeval "gpg --quiet --for-your-eyes-only --no-tty --decrypt ~/.msmtp-gmail.gpg"
#password ""
# Outlook
account Outlook
host smtp-mail.outlook.com
port 587
from Your Name
user [email protected]
passwordeval "gpg --quiet --for-your-eyes-only --no-tty --decrypt ~/.msmtp-outlook.gpg"
#password ""
# Yahoo
account Yahoo
host smtp.mail.yahoo.com
port 587
from Your Name
user [email protected]
passwordeval "gpg --quiet --for-your-eyes-only --no-tty --decrypt ~/.msmtp-yahoo.gpg"
#password ""
# Set a default account
account default : Gmail