blob: a86b148588a0102b80dff85f82601ac504f631e7 (
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
# Gmail
account neodarz
host mail.neodarz.net
port 587
from neodarz@neodarz.net
user neodarz@neodarz.net
passwordeval "gpg --quiet --for-your-eyes-only --no-tty --decrypt ~/.password-store/Mail/neodarz@neodarz.net.gpg"
# A freemail service
account corentin.breton
host mail.neodarz.net
port 587
from corentin.breton@neodarz.net
user corentin.breton@neodarz.net
passwordeval "gpg --quiet --for-your-eyes-only --no-tty --decrypt ~/.password-store/Mail/corentin.breton@neodarz.net.gpg"
# Set a default account
account default : neodarz
|