forked from adam8157/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
specify ca file for offlineimap and msmtp
- Loading branch information
Showing
2 changed files
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ port 587 | |
from [email protected] | ||
user [email protected] | ||
passwordeval cat ~/.mutt/passwd | ||
tls_trust_file /usr/share/ca-certificates/mozilla/Equifax_Secure_CA.crt | ||
tls_trust_file /etc/ssl/certs/ca-certificates.crt | ||
|
||
# Set a default account | ||
account default : Gmail |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,7 @@ keepalive = 30 | |
holdconnectionopen = yes | ||
remoteuser = [email protected] | ||
remotepassfile = ~/.mutt/passwd | ||
sslcacertfile = /etc/ssl/certs/ca-certificates.crt | ||
nametrans = lambda foldername: re.sub('^\[Gmail\]/', '', foldername) | ||
folderfilter = lambda foldername: foldername in ['INBOX', 'kernel-cn', | ||
'kernelnewbies', '[Gmail]/Drafts', '[Gmail]/Spam','[Gmail]/Trash'] |