diff options
Diffstat (limited to 'dotfiles')
-rw-r--r-- | dotfiles/offlineimap.py | 6 | ||||
-rw-r--r-- | dotfiles/offlineimaprc | 38 |
2 files changed, 44 insertions, 0 deletions
diff --git a/dotfiles/offlineimap.py b/dotfiles/offlineimap.py new file mode 100644 index 0000000..8309482 --- /dev/null +++ b/dotfiles/offlineimap.py @@ -0,0 +1,6 @@ +#! /usr/bin/env python2 +from subprocess import check_output + + +def get_pass(account): + return check_output("pass Mail/" + account, shell=True).splitlines()[0] diff --git a/dotfiles/offlineimaprc b/dotfiles/offlineimaprc new file mode 100644 index 0000000..f0db668 --- /dev/null +++ b/dotfiles/offlineimaprc @@ -0,0 +1,38 @@ +# Sample minimal config file. Copy this to ~/.offlineimaprc and edit to +# get started fast. + +[general] +accounts = neodarz, corentin.breton +pythonfile = ~/.offlineimap.py + +[Account neodarz] +localrepository = neodarz-local +remoterepository = neodarz-remote + +[Repository neodarz-local] +type = Maildir +localfolders = ~/Mail/neodarz@neodarz.net + +[Repository neodarz-remote] +type = IMAP +remotehost = mail.neodarz.net +remoteuser = neodarz@neodarz.net +remotepasseval = get_pass("neodarz@neodarz.net") +ssl = yes +sslcacertfile = /etc/ssl/certs/ca-certificates.crt + +[Account corentin.breton] +localrepository = corentin.breton-local +remoterepository = corentin.breton-remote + +[Repository corentin.breton-local] +type = Maildir +localfolders = ~/Mail/corentin.breton@neodarz.net + +[Repository corentin.breton-remote] +type = IMAP +remotehost = mail.neodarz.net +remoteuser = corentin.breton@neodarz.net +remotepasseval = get_pass("corentin.breton@neodarz.net") +ssl = yes +sslcacertfile = /etc/ssl/certs/ca-certificates.crt |