From a0a27a3c403f880a3da52faf496e4bbc3fabe289 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Wed, 12 Feb 2020 14:07:02 +0000 Subject: Add mutt directories --- mutt/.gitignore | 3 +++ mutt/.mail/Misc/.gitkeep | 0 mutt/.mail/Personal/.gitkeep | 0 mutt/.mail/Work/.gitkeep | 0 4 files changed, 3 insertions(+) create mode 100644 mutt/.gitignore create mode 100644 mutt/.mail/Misc/.gitkeep create mode 100644 mutt/.mail/Personal/.gitkeep create mode 100644 mutt/.mail/Work/.gitkeep (limited to 'mutt') diff --git a/mutt/.gitignore b/mutt/.gitignore new file mode 100644 index 0000000..f2abc1a --- /dev/null +++ b/mutt/.gitignore @@ -0,0 +1,3 @@ +.mail/Work/* +.mail/Personal/* +.mail/Misc/* diff --git a/mutt/.mail/Misc/.gitkeep b/mutt/.mail/Misc/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/mutt/.mail/Personal/.gitkeep b/mutt/.mail/Personal/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/mutt/.mail/Work/.gitkeep b/mutt/.mail/Work/.gitkeep new file mode 100644 index 0000000..e69de29 -- cgit v1.2.3 From 20e67f471b69f90d48037efd2089cb9aa83a91dc Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Wed, 12 Feb 2020 14:19:22 +0000 Subject: Fix duplicate with mutt --- mutt/.mutt/id_personal | 2 ++ mutt/.mutt/id_work | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'mutt') diff --git a/mutt/.mutt/id_personal b/mutt/.mutt/id_personal index 8c57cd6..feb81bd 100644 --- a/mutt/.mutt/id_personal +++ b/mutt/.mutt/id_personal @@ -9,3 +9,5 @@ set trash = "+Personal/Personal.bin" macro index,pager gs " $record" macro index,pager gd " $postponed" macro index,pager gb " $trash" + +# vim: ft=muttrc diff --git a/mutt/.mutt/id_work b/mutt/.mutt/id_work index 238cfcb..c6fea5b 100644 --- a/mutt/.mutt/id_work +++ b/mutt/.mutt/id_work @@ -2,10 +2,14 @@ set from = "u.vaes13@imperial.ac.uk" set sendmail="/usr/bin/msmtp -a imperial" set spoolfile = "+Work/Work" -set record = "+Work/Work.sent" set postponed = "+Work/Work.drafts" set trash = "+Work/Work.bin" +# Record not necessary because outlook saves messages +unset record + macro index,pager gs " $record" macro index,pager gd " $postponed" macro index,pager gb " $trash" + +# vim: ft=muttrc -- cgit v1.2.3 From 8a88e667c2cd1ac5ba333fbcaf355c044860b6df Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Wed, 12 Feb 2020 14:50:53 +0000 Subject: Fix gs mapping --- mutt/.mutt/id_work | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mutt') diff --git a/mutt/.mutt/id_work b/mutt/.mutt/id_work index c6fea5b..ac75a03 100644 --- a/mutt/.mutt/id_work +++ b/mutt/.mutt/id_work @@ -8,7 +8,7 @@ set trash = "+Work/Work.bin" # Record not necessary because outlook saves messages unset record -macro index,pager gs " $record" +macro index,pager gs " +Work/Work.sent" macro index,pager gd " $postponed" macro index,pager gb " $trash" -- cgit v1.2.3 From 62558f19608e2bf2db031df4460925e9557de223 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Tue, 23 Jun 2020 10:08:41 +0100 Subject: Add mutt attachment marker --- mutt/.mutt/muttrc | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'mutt') diff --git a/mutt/.mutt/muttrc b/mutt/.mutt/muttrc index 95faa6f..7ad8cbf 100644 --- a/mutt/.mutt/muttrc +++ b/mutt/.mutt/muttrc @@ -1,11 +1,11 @@ # Folders -set folder = ~/.mail -set alias_file = ~/.mutt/alias -set header_cache = ~/.mutt/cache/headers +set folder = ~/.mail +set alias_file = ~/.mutt/alias +set header_cache = ~/.mutt/cache/headers set message_cachedir = ~/.mutt/cache/bodies set certificate_file = ~/.mutt/certificates -set mailcap_path = ~/.mutt/mailcap -set tmpdir = ~/.mutt/temp +set mailcap_path = ~/.mutt/mailcap +set tmpdir = ~/.mutt/temp # Source crypto, aliases, mailboxes source ~/.mutt/colors/base.muttrc @@ -64,6 +64,8 @@ alternative_order text/plain text/enriched text/html set editor="$EDITOR" set include=yes +# Index +set index_format="%X %Z %{%b %d} %-15.15L (%?l?%4l&%4c?) %s" # Macros macro index,pager gp " +Personal/Personal" -- cgit v1.2.3