diff options
author | Urbain Vaes <urbain@vaes.uk> | 2016-01-05 14:53:50 +0000 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2016-01-05 14:53:50 +0000 |
commit | 47472c0675980abf8fdf3f7170475ad03678ad60 (patch) | |
tree | 07a665287113faed681386cfa89c08ec992f0d10 | |
parent | 3645a24c53159ddced6d390ed754766e7e7887da (diff) |
Fix bug in offlineimap'
-rw-r--r-- | .mutt/mailboxes.offlineimap | 1 | ||||
-rw-r--r-- | .mutt/muttrc | 2 | ||||
-rw-r--r-- | .offlineimap/offlineimaprc | 9 |
3 files changed, 11 insertions, 1 deletions
diff --git a/.mutt/mailboxes.offlineimap b/.mutt/mailboxes.offlineimap new file mode 100644 index 0000000..4c1bea6 --- /dev/null +++ b/.mutt/mailboxes.offlineimap @@ -0,0 +1 @@ +mailboxes "+Informal/Informal" "+Informal/Informal.bin" "+Informal/Informal.drafts" "+Informal/Informal.sent" "+Main/Main" "+Main/Main.bin" "+Main/Main.drafts" "+Main/Main.sent" "+Personal/Personal" "+Personal/Personal.bin" "+Personal/Personal.drafts" "+Personal/Personal.sent" "+Work/Work" "+Work/Work.bin" "+Work/Work.drafts" "+Work/Work.sent" diff --git a/.mutt/muttrc b/.mutt/muttrc index 9d6891c..3b413ec 100644 --- a/.mutt/muttrc +++ b/.mutt/muttrc @@ -52,7 +52,7 @@ auto_view text/html alternative_order text/plain text/enriched text/html # Editor -set editor="vim --noplugin" +set editor="vim" set include=yes # Macros diff --git a/.offlineimap/offlineimaprc b/.offlineimap/offlineimaprc index 759e39e..0be202e 100644 --- a/.offlineimap/offlineimaprc +++ b/.offlineimap/offlineimaprc @@ -7,6 +7,7 @@ maxsyncaccounts = 4 [Account Work] localrepository = Work-Local remoterepository = Work-Remote +autorefresh = 10 [Repository Work-Local] type = Maildir @@ -24,10 +25,13 @@ folderfilter = lambda folder: folder in ['INBOX', 'Sent Items', 'Drafts', 'Del sslcacertfile = /etc/ssl/certs/ca-certificates.crt realdelete = no maxconnections = 3 +auth_mechanisms = LOGIN + [Account Main] localrepository = Main-Local remoterepository = Main-Remote +autorefresh = 10 [Repository Main-Local] type = Maildir @@ -44,10 +48,12 @@ folderfilter = lambda folder: folder in ['INBOX', '[Gmail]/Sent Mail', '[Gmail sslcacertfile = /etc/ssl/certs/ca-certificates.crt realdelete = no maxconnections = 3 +auth_mechanisms = LOGIN [Account Informal] localrepository = Informal-Local remoterepository = Informal-Remote +autorefresh = 10 [Repository Informal-Local] type = Maildir @@ -64,10 +70,12 @@ folderfilter = lambda folder: folder in ['INBOX', '[Gmail]/Sent Mail', '[Gmail sslcacertfile = /etc/ssl/certs/ca-certificates.crt realdelete = no maxconnections = 3 +auth_mechanisms = LOGIN [Account Personal] localrepository = Personal-Local remoterepository = Personal-Remote +autorefresh = 10 [Repository Personal-Local] type = Maildir @@ -85,6 +93,7 @@ folderfilter = lambda folder: folder in ['INBOX', 'Sent', 'Drafts', 'Trash'] sslcacertfile = /etc/ssl/certs/ca-certificates.crt realdelete = no maxconnections = 3 +auth_mechanisms = LOGIN [mbnames] enabled = yes |