fix(mail): rename system folder 'Spam' to 'Junk'
This commit is contained in:
parent
f167e163c7
commit
6210510cda
3 changed files with 11 additions and 4 deletions
|
@ -1,6 +1,9 @@
|
|||
# clear previously defined mailboxes
|
||||
#unmailboxes *
|
||||
|
||||
# clear previously defined headers
|
||||
unmy_hdr *
|
||||
|
||||
set mbox = "+nullpointer/Archive"
|
||||
set postponed = "+nullpointer/Drafts"
|
||||
set trash = "+nullpointer/Trash"
|
||||
|
@ -15,9 +18,9 @@ set smtp_url=smtp://$from@smtp.nullpointer.io:587
|
|||
|
||||
# nullpointer specific macros
|
||||
macro index A "<save-message>+nullpointer/Archive<enter>" "move message to the archive"
|
||||
macro index S "<save-message>+nullpointer/Spam<enter>" "mark message as spam"
|
||||
macro index S "<save-message>+nullpointer/Junk<enter>" "mark message as spam"
|
||||
macro index D "<save-message>+nullpointer/Trash<enter>" "move message to the trash"
|
||||
# tag macros
|
||||
macro index \Ca "<tag-prefix-cond><save-message>+nullpointer/Archive<enter>" "move tagged messages to archive"
|
||||
macro index \Cs "<tag-prefix-cond><save-message>+nullpointer/Spam<enter>" "move tagged messages to spam"
|
||||
macro index \Cs "<tag-prefix-cond><save-message>+nullpointer/Junk<enter>" "move tagged messages to spam"
|
||||
macro index \Cd "<tag-prefix-cond><save-message>+nullpointer/Trash<enter>" "move tagged messages to trash"
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
# clear previously defined mailboxes
|
||||
#unmailboxes *
|
||||
|
||||
# clear previously defined headers
|
||||
unmy_hdr *
|
||||
|
||||
set mbox = "+rawlinson/Archive"
|
||||
set postponed = "+rawlinson/Drafts"
|
||||
set trash = "+rawlinson/Trash"
|
||||
|
@ -15,9 +18,9 @@ set smtp_url=smtp://$from@smtp.nullpointer.io:587
|
|||
|
||||
# rawlinson specific macros
|
||||
macro index A "<save-message>+rawlinson/Archive<enter>" "move message to the archive"
|
||||
macro index S "<save-message>+rawlinson/Spam<enter>" "mark message as spam"
|
||||
macro index S "<save-message>+rawlinson/Junk<enter>" "mark message as spam"
|
||||
macro index D "<save-message>+rawlinson/Trash<enter>" "move message to the trash"
|
||||
# tag macros
|
||||
macro index \Ca "<tag-prefix-cond><save-message>+rawlinson/Archive<enter>" "move tagged messages to archive"
|
||||
macro index \Cs "<tag-prefix-cond><save-message>+rawlinson/Spam<enter>" "move tagged messages to spam"
|
||||
macro index \Cs "<tag-prefix-cond><save-message>+rawlinson/Junk<enter>" "move tagged messages to spam"
|
||||
macro index \Cd "<tag-prefix-cond><save-message>+rawlinson/Trash<enter>" "move tagged messages to trash"
|
||||
|
|
|
@ -28,6 +28,7 @@ set editor = "nvim +/^$ +nohlsearch" # place cursor after headers + turn off sea
|
|||
set edit_headers # enable header editing when composing
|
||||
set mime_forward = ask-no # ask if fwd msg as attachments
|
||||
set send_charset = "utf-8" # charset to use when sending
|
||||
unset user_agent # remove UA header
|
||||
|
||||
# grab rest of the config
|
||||
source ~/.config/mutt/colours
|
||||
|
|
Loading…
Reference in a new issue