diff options
| -rw-r--r-- | .config/neomutt/mappings | 5 | ||||
| -rw-r--r-- | .config/neomutt/settings | 27 | ||||
| -rw-r--r-- | .config/neomutt/signature | 4 | ||||
| -rw-r--r-- | .neomuttrc | 5 |
4 files changed, 33 insertions, 8 deletions
diff --git a/.config/neomutt/mappings b/.config/neomutt/mappings index 771b929..2e29117 100644 --- a/.config/neomutt/mappings +++ b/.config/neomutt/mappings @@ -7,6 +7,11 @@ macro index,pager gs "<change-folder>=Sent Messages<enter>" "open sent" macro index,pager gt "<change-folder>=Deleted Messages<enter>" "open trash" macro index,pager gf "<change-folder>?" "open mailbox..." +bind index,pager \CJ sidebar-next +bind index,pager \CK sidebar-prev +bind index,pager \CE sidebar-open +bind index,pager B sidebar-toggle-visible + # Attach PGP public key bind compose a noop bind compose aa attach-file diff --git a/.config/neomutt/settings b/.config/neomutt/settings index 4d74cfc..8e5f3f5 100644 --- a/.config/neomutt/settings +++ b/.config/neomutt/settings @@ -3,10 +3,15 @@ set editor = "vim" # PGP Settings set crypt_use_gpgme = yes -set crypt_autosign = no -set crypt_verify_sig = yes +set crypt_autosign = yes # auto sign all outgoing emails +set crypt_verify_sig = yes # attempt auto verify signature +set crypt_replysign = yes # sign reply to signed emails +set crypt_replyencrypt = yes # encrypt replies to encrypted emails +set crypt_replysignencrypted = yes # encrypt and sign replies to encrypted signed emails + set pgp_use_gpg_agent = yes -set pgp_default_key = "0xD9FDD29DE1EA6405" +set pgp_default_key = "83786B48F734C4F7C2CEEC30D9FDD29DE1EA6405" +set pgp_sign_as = "83786B48F734C4F7C2CEEC30D9FDD29DE1EA6405" my_hdr X-PGP-Key: https://a14m.dev/pub.gpg # Set preffered view modes @@ -20,7 +25,7 @@ set use_envelope_from # Use the From header for sending replie set edit_headers # show headers when composing set fast_reply # skip to compose when replying -# set askcc # ask for CC: +set askcc # ask for CC: set fcc_attach # save attachments with the body set forward_format = "Fwd: %s" # format of subject when forwarding set forward_decode # decode when forwarding @@ -65,9 +70,19 @@ set pager_stop # set menu_scroll set tilde # unset markers +# wait_key = no # mutt won't ask 'press any key to continue' + +# # Sidebar view Options +set sidebar_visible +set sidebar_short_path +set sidebar_folder_indent +set sidebar_next_new_wrap = yes +set sidebar_format = "%B %* [%?N?%N / ?%S]" +set mail_check_stats set mailcap_path = ~/.config/neomutt/mailcap -# # set header_cache = "~/.cache/mutt" -# # set message_cachedir = "~/.cache/mutt" + +set header_cache = "~/.cache/mutt" +set message_cachedir = "~/.cache/mutt" # set query_command = "khard email --parsable --search-in-source-files '%s'" diff --git a/.config/neomutt/signature b/.config/neomutt/signature new file mode 100644 index 0000000..30300bb --- /dev/null +++ b/.config/neomutt/signature @@ -0,0 +1,4 @@ + +--- +Best regards, +Ahmed AbdelHalim. @@ -6,8 +6,9 @@ set mail_check = 60 set timeout = 15 # User Config -set from = "[email protected]" +set from = "[email protected]" set realname = "Ahmed AbdelHalim" +set signature = ~/.config/neomutt/signature # IMAP Settings set imap_user = "a14m.me" @@ -19,7 +20,7 @@ set imap_check_subscribed # SMTP Settings set smtp_url = "smtp://[email protected]@smtp.mail.me.com:587" set smtp_pass = "`pass personal/mutt`" -set smtp_authenticators = 'gssapi:login' +set smtp_authenticators = 'login' # Folder Settings |
