diff options
author | badmrfrosty <49749436+badmrfrosty@users.noreply.github.com> | 2019-06-16 22:30:57 +0200 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2019-06-16 16:30:57 -0400 |
commit | b3ce4277abf0f9332c740bf574760f7b6d7bf2a6 (patch) | |
tree | b3be47f395ff661bca0a79be4f0116b59fdbacc0 /share/mutt-wizard.muttrc | |
parent | d7dd9f89fe8ab68e730a6e81354ff2ada73e1b56 (diff) |
Avoid lags with some email providers while using IMAP (#238)
I contacted MUTT irc channel to solve severe lags while navigating mailboxes of certain email providers with IMAP) (the emails were not stored locally). After extensive testing, changing the default value of mail_check from 5 to 60 solved my problem. I propose this change because several other people might encounter the same problem (especially yahoo users)
Diffstat (limited to 'share/mutt-wizard.muttrc')
-rw-r--r-- | share/mutt-wizard.muttrc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/share/mutt-wizard.muttrc b/share/mutt-wizard.muttrc index a6a19f3..1ca0503 100644 --- a/share/mutt-wizard.muttrc +++ b/share/mutt-wizard.muttrc @@ -22,6 +22,7 @@ set forward_format = "Fwd: %s" # format of subject when forwarding set forward_quote # include message in forwards set reverse_name # reply as whomever it was to set include # include message in replies +set mail_check=60 # to avoid lags using IMAP with some email providers (yahoo for example) auto_view text/html # automatically show html (mailcap uses w3m) auto_view application/pgp-encrypted alternative_order text/plain text/enriched text/html |