mirror of
https://github.com/jessebot/dot_files.git
synced 2025-10-01 01:48:43 +00:00
a very basic neomuttrc for use with protonmail
This commit is contained in:
parent
4c8e0f28b5
commit
d1fefdf74b
1 changed files with 66 additions and 0 deletions
66
.config/neomutt/neomuttrc
Normal file
66
.config/neomutt/neomuttrc
Normal file
|
@ -0,0 +1,66 @@
|
|||
# thank you to: https://cheatsheets.stephane.plus/productivity/neomutt/
|
||||
|
||||
# sources secret variables: $my_user, $my_pass, and $my_name
|
||||
source ~/.config/neomutt/keys
|
||||
|
||||
# --------------------------- Char encoding --------------------------- #
|
||||
|
||||
# Character set on sent messages:
|
||||
set send_charset="utf-8"
|
||||
|
||||
# If there is no charset given on incoming msg, its probably windows:
|
||||
set assumed_charset="iso-8859-1"
|
||||
|
||||
|
||||
# --------------------------- IMAP settings --------------------------- #
|
||||
|
||||
# ("+" substitutes for `folder`)
|
||||
set mbox_type = Maildir
|
||||
set folder = imap://127.0.0.1:1143/
|
||||
set record = +Sent
|
||||
set postponed = +Drafts
|
||||
set trash = +Trash
|
||||
set spoolfile = +INBOX
|
||||
mailboxes = +INBOX
|
||||
set mail_check = 5 # seconds
|
||||
|
||||
# Local protonmail-bridge host server: 127.0.0.1
|
||||
# Protonmail-bridge imap port: 1143
|
||||
set imap_user = $my_user
|
||||
set imap_pass = $my_pass
|
||||
|
||||
# Store message headers locally to speed things up.
|
||||
# If hcache is a folder, Mutt will create sub cache folders for each account
|
||||
# which may speeds things up even more:
|
||||
set header_cache = ~/.cache/mutt
|
||||
|
||||
# Store messages locally to speed things up, like searching message bodies.
|
||||
# Can be the same folder as header_cache.
|
||||
# This will cost important disk usage according to your e-mail amount.
|
||||
set message_cachedir = "~/.cache/mutt"
|
||||
|
||||
# Specify where to save and/or look for postponed messages.
|
||||
set postponed = +[Protonmail]/Drafts
|
||||
|
||||
# Allow Mutt to open a new IMAP connection automatically.
|
||||
unset imap_passive
|
||||
|
||||
# Keep the IMAP connection alive by polling intermittently (time in seconds).
|
||||
set imap_keepalive = 300
|
||||
|
||||
# How often to check for new mail (time in seconds).
|
||||
set mail_check = 360
|
||||
|
||||
|
||||
# --------------------------- SMTP settings --------------------------- #
|
||||
|
||||
set smtp_pass = $my_pass
|
||||
set realname = #my_name
|
||||
set from = $my_user
|
||||
set use_from = yes
|
||||
|
||||
# Local protonmail-bridge host server: 127.0.0.1
|
||||
# Protonmail-bridge smtp port: 1025
|
||||
set smtp_url = smtp://$my_user:$smtp_pass@127.0.0.1:1025
|
||||
set ssl_force_tls = yes
|
||||
set ssl_starttls = yes
|
Loading…
Add table
Add a link
Reference in a new issue