blob: 4a5a9d249f6dc3482c4c069f1923296dc78bb10a (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Set default values for all following accounts.
defaults
auth on
tls on
logfile ~/.msmtp.log
# gmail.com
account gmail
host smtp.gmail.com
port 587
from mikisabate@gmail.com
user mikisabate
passwordeval "gpg --quiet --for-your-eyes-only --no-tty --decrypt ~/.mbsyncpassgmail.gpg"
# suse.com
account comsuse
host smtp.office365.com
port 587
auth xoauth2
from msabate@suse.com
user msabate@suse.com
passwordeval ~/bin/mutt_oauth2.py /home/backup/mail/comsuse/sessionfile
# suse.de
account desuse
host imap.suse.de
port 587
from msabate@imapsusede
user msabate@imapsusede
passwordeval "gpg --quiet --for-your-eyes-only --no-tty --decrypt ~/.imapsusede.gpg"
# cgtsuse.org
account sindicat
host cgtsuse.org
port 587
from msabate@cgtsuse.org
user msabate@cgtsuse.org
passwordeval "gpg --quiet --for-your-eyes-only --no-tty --decrypt ~/.mbsyncpasssusede.gpg"
# capellades.cat
account ajuntament
host mail.diba.cat
port 587
from sabatesm@capellades.cat
user dibasp\sabatesm
passwordeval "gpg --quiet --for-your-eyes-only --no-tty --decrypt ~/.mbsyncpasssusede.gpg"
# uoc.edu
account uoc
host smtp.gmail.com
port 587
from mssola@uoc.edu
user mssola
passwordeval "gpg --quiet --for-your-eyes-only --no-tty --decrypt ~/.mbsyncpassuoc.gpg"
# Set a default account
account default : gmail
|