* Added aethon account to offlineimap
This commit is contained in:
Tom Willemsen 2011-03-07 09:09:07 +01:00
parent 44e6edb041
commit 68f90d7bcd

View file

@ -1,7 +1,7 @@
[general] [general]
# NOTE: cronjob calls the quiet UI with -u # NOTE: cronjob calls the quiet UI with -u
ui = TTY.TTYUI ui = TTY.TTYUI
accounts = arch,gmail,iactor accounts = arch,gmail,iactor,aethon
pythonfile = ~/.offlineimap.py pythonfile = ~/.offlineimap.py
[Account arch] [Account arch]
@ -16,6 +16,10 @@ remoterepository = gmail-remote
localrepository = iactor-local localrepository = iactor-local
remoterepository = iactor-remote remoterepository = iactor-remote
[Account aethon]
localrepository = aethon-local
remoterepository = aethon-remote
[Repository arch-local] [Repository arch-local]
type = Maildir type = Maildir
localfolders = ~/Mail/arch localfolders = ~/Mail/arch
@ -28,6 +32,10 @@ localfolders = ~/Mail/gmail
type = Maildir type = Maildir
localfolders = ~/Mail/iactor localfolders = ~/Mail/iactor
[Repository aethon-local]
type = Maildir
localfolders = ~/Mail/aethon
[Repository arch-remote] [Repository arch-remote]
type = Gmail type = Gmail
remoteusereval = getuser("imap.google.com-arch") remoteusereval = getuser("imap.google.com-arch")
@ -50,4 +58,12 @@ remotehost = mail.iactor.nl
remoteusereval = getuser("mail.iactor.nl") remoteusereval = getuser("mail.iactor.nl")
remotepasseval = getpassword("mail.iactor.nl") remotepasseval = getpassword("mail.iactor.nl")
[Repository aethon-remote]
type = Gmail
remoteusereval = getuser("imap.google.com-aethon")
remotepasseval = getpassword("imap.google.com-aethon")
realdelete = no
nametrans = lambda folder: re.sub('.*Spam$', 'spam', re.sub('.*Drafts$', 'drafts', re.sub('.*Sent Mail$', 'sent', re.sub('.*Starred$', 'flagged', re.sub('.*Trash$', 'trash', re.sub('.*All Mail$', 'archive', folder))))))
# vim: ft=cfg tw=0 # vim: ft=cfg tw=0