blob: cbf45331a80cd18df11048cf93a341d0a3182c0e (
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@sustainably.app
user marc.coquand@sustainably.app
passwordeval "pass sustainably/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
|