From 51547bf28a11c31c1f2747f437eb3a0899a135f1 Mon Sep 17 00:00:00 2001 From: Amin Bandali Date: Sat, 21 Feb 2015 22:43:08 -0500 Subject: [PATCH] [offlineimap] update config --- offlineimap/.offlineimap.py | 9 ++++++++ offlineimap/.offlineimaprc | 42 +++++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 offlineimap/.offlineimaprc diff --git a/offlineimap/.offlineimap.py b/offlineimap/.offlineimap.py index 23ba11c..3b89349 100644 --- a/offlineimap/.offlineimap.py +++ b/offlineimap/.offlineimap.py @@ -10,6 +10,15 @@ def mailpasswd(acct): except subprocess.CalledProcessError: return "" +def mailuser(acct): + acct = os.path.basename(acct) + path = "/home/amin/.passwd/%s" % acct + args = ["cat", path] + try: + return subprocess.check_output(args).strip() + except subprocess.CalledProcessError: + return "" + def prime_gpg_agent(): ret = False i = 1 diff --git a/offlineimap/.offlineimaprc b/offlineimap/.offlineimaprc new file mode 100644 index 0000000..60d9801 --- /dev/null +++ b/offlineimap/.offlineimaprc @@ -0,0 +1,42 @@ +[general] +pythonfile = ~/.offlineimap.py +accounts = Gmail, aminb +maxsyncaccounts = 3 + +[Account Gmail] +localrepository = GmailL +remoterepository = GmailR + +[Account aminb] +localrepository = aminbL +remoterepository = aminbR + +[Repository GmailL] +type = Maildir +localfolders = ~/Maildir/Gmail + +[Repository GmailR] +type = IMAP +remotehost = imap.gmail.com +remoteusereval = mailuser("gmail") +remotepasseval = mailpasswd("gmail") +sslcacertfile = /etc/ssl/certs/ca-certificates.crt +ssl = yes +folderfilter = lambda foldername: foldername not in '[Gmail]/All Mail' +maxconnections = 1 +realdelete = no + +[Repository aminbL] +type = Maildir +localfolders = ~/Maildir/aminb + +[Repository aminbR] +type = IMAP +remotehost = mail.aminb.org +remoteusereval = mailuser("aminb") +remotepasseval = mailpasswd("aminb") +sslcacertfile = /etc/ssl/certs/ca-certificates.crt +ssl = yes +folderfilter = lambda foldername: foldername not in 'dovecot.sieve' +maxconnections = 1 +realdelete = no -- 2.20.1