blob: e7ef768f99a2eacbb304ca2e649dbcdf5d15f1ef (
plain)
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
|
# Set default values for all following accounts.
defaults
auth on
tls on
tls_trust_file /etc/ssl/certs/ca-certificates.crt
logfile ~/.msmtp.log
# Work
account work
host smtp.gmail.com
port 587
from marc.coquand@piva.earth
user marc.coquand@piva.earth
passwordeval "pass piva/gmail"
# Home
account home
host smtp.fastmail.com
port 465
tls_starttls off
from marcc@fastmail.fr
user marcc@fastmail.fr
passwordeval "pass fastmail/marcc"
account default : home
|