-
-
Save jmarhee/c03f612598e05ae0928ab621112854e7 to your computer and use it in GitHub Desktop.
mutt: muttrc settings for ProtonMail Bridge
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set from="[email protected]" | |
set my_user="[email protected]" | |
set my_pass="pass" | |
set smtp_port="1025" | |
set imap_port="1143" | |
set ssl_starttls=yes | |
set smtp_url="smtp://$my_user:[email protected]:$smtp_port" | |
# workaround for https://github.com/neomutt/neomutt/issues/1211 | |
set imap_authenticators=login | |
set folder="imap://$my_user:[email protected]:$imap_port/" | |
set spoolfile="+INBOX" | |
set trash="+Trash" | |
set mbox="+Received" | |
set move=no | |
set record="+Sent" | |
set copy=no | |
set postponed="+Drafts" | |
set postpone=yes | |
unset imap_passive | |
set mail_check=20 # seconds | |
set timeout=10 # seconds | |
set imap_check_subscribed=yes | |
# Sidebar | |
set sidebar_visible=yes | |
set sidebar_short_path=yes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Does this configuration make it possible to use mutt's "e" command and write edits back out to the inbox ?
I ask because I had tried it myself some months ago and I found that although my editor (emacs) wrote out my edits to local temp storage successfully, my edits did not make it back to the message on the Protonmail server - the message in the inbox remained unchanged.
I apologize if this comment does not belong here.