diff options
Diffstat (limited to '.offlineimaprc')
-rw-r--r-- | .offlineimaprc | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/.offlineimaprc b/.offlineimaprc new file mode 100644 index 0000000..68dfacb --- /dev/null +++ b/.offlineimaprc @@ -0,0 +1,88 @@ +[general] +accounts = sleepmap.de, tu-berlin.de, c-base.org, linuxaudio.org +maxsyncaccounts = 3 +pythonfile = ~/bin/pass2offlineimap + +# Automatic mailbox generationi for mutt +[mbnames] +enabled = yes +filename = ~/.mutt/mailboxes.rc +header = "mailboxes " +peritem = "+%(accountname)s/%(foldername)s" +sep = " " +footer = "\n" + +[Account tu-berlin.de] +localrepository = tu-berlin-local +remoterepository = tu-berlin-remote +status_backend = sqlite +autorefresh = 3 +quick = 7 + +[Repository tu-berlin-local] +type = Maildir +localfolders = ~/Mail/tu-berlin.de/ + +[Repository tu-berlin-remote] +type = IMAP +remotehost = mail.tu-berlin.de +remoteuser = davezerave +remotepasseval = get_pass("davezerave@mail.tu-berlin.de") +folderfilter = lambda folder: folder not in ['Other Users/tb-ak/studio'] +sslcacertfile = /etc/ssl/cert.pem + +[Account sleepmap.de] +localrepository = sleepmap-local +remoterepository = sleepmap-remote +status_backend = sqlite +autorefresh = 3 +quick = 7 + +[Repository sleepmap-local] +type = Maildir +localfolders = ~/Mail/sleepmap.de/ + +[Repository sleepmap-remote] +type = IMAP +remotehost = sleepmap.de +remoteuser = dave@sleepmap.de +remotepasseval = get_pass("dave@sleepmap.de") +ssl = yes +cert_fingerprint = 7fb877430d73b4eb013de0e54bbf78e22b4b0261 + +[Account c-base.org] +localrepository = c-base-local +remoterepository = c-base-remote +status_backend = sqlite +autorefresh = 3 +quick = 7 + +[Repository c-base-local] +type = Maildir +localfolders = ~/Mail/c-base.org/ + +[Repository c-base-remote] +type = IMAP +remotehost = c-mail.c-base.org +remoteuser = dave +remotepasseval = get_pass("dave@c-base.org") +sslcacertfile = /etc/ssl/cert.pem + +[Account linuxaudio.org] +localrepository = linuxaudio-local +remoterepository = linuxaudio-remote +status_backend = sqlite +autorefresh = 3 +quick = 7 + +[Repository linuxaudio-local] +type = Maildir +localfolders = ~/Mail/linuxaudio.org/ + +[Repository linuxaudio-remote] +type = IMAP +remotehost = linuxaudio.org +remoteuser = lac +remotepasseval = get_pass("lac@linuxaudio.org") +ssl = yes +cert_fingerprint = dd717e1d4f6b849dfa0f1adacfb9ce1c6b7132f1 |