From eaa20ae4ecd80f46d1ab740cc731618e988cc7f3 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Fri, 12 May 2023 09:13:12 +0100 Subject: Equalises taskrc between debian and arch --- taskrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/taskrc b/taskrc index a83af46..300883d 100644 --- a/taskrc +++ b/taskrc @@ -111,6 +111,8 @@ urgency.user.project.h.chore.coefficient=-3.0 urgency.user.project.h.admin.coefficient=-0.5 urgency.user.project.h.buy.coefficient=-4.0 urgency.user.project.h.diy.coefficient=-5.0 +urgency.user.project.w.smart.ded.coefficient=-2.0 +urgency.user.project.h.ideas.coefficient=-2.0 urgency.user.project=-0.0 urgency.user.tag.link.coefficient=-5.0 urgency.user.tag.idea.coefficient=-5.0 -- cgit v1.2.3 From 2c72fdae7d0a57ce50b389a809cbee391acef794 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Fri, 12 May 2023 10:01:04 +0100 Subject: Emables GPG encryption in neomutt --- mutt/gpg.rc | 31 +++++++++++++++++++++++++++++++ muttrc | 6 +++--- 2 files changed, 34 insertions(+), 3 deletions(-) create mode 100644 mutt/gpg.rc diff --git a/mutt/gpg.rc b/mutt/gpg.rc new file mode 100644 index 0000000..39c351b --- /dev/null +++ b/mutt/gpg.rc @@ -0,0 +1,31 @@ +# Use GPGME +# from https://seniormars.github.io/posts/neomutt/ +# Use my key for signing and encrypting +set pgp_default_key = 19014642A9FCD633B886B8F59C9841C3EF4E0B8E + +# Use GPGME +set crypt_use_gpgme = yes + +# Automatically sign all out-going email +set crypt_autosign = yes + +# Sign replies to signed emails +set crypt_replysign = yes + +# Encrypt replies to encrypted emails +set crypt_replyencrypt = yes + +# Encrypt and sign replies to encrypted and signed email +set crypt_replysignencrypted = yes + +# Attempt to verify signatures automatically +set crypt_verify_sig = yes + +# Attempt to encrypt automatically, if possible +# I would recommend setting this to no +# And this will cause your emails to be marked as spam +# as they can't decrypt your emails LMAO +set crypt_opportunistic_encrypt = no + +# So you can view encrypted emails automatically +auto_view application/pgp-encrypted diff --git a/muttrc b/muttrc index 47808e4..fed0b11 100644 --- a/muttrc +++ b/muttrc @@ -198,8 +198,8 @@ set sendmail = "/usr/bin/msmtp -a matthewlemon" set sendmail_wait = 0 set record = "+matt-matthewlemon.com/Sent" -bind compose p postpone-message -bind index p recall-message +#bind compose p postpone-message +#bind index p recall-message # Get mutt to understand the contacts command line prog which reads Contacts #set query_command = "contacts -Sf '%eTOKEN%n' '%s' | sed -e 's/TOKEN/\t/g'" @@ -258,7 +258,7 @@ macro index \ #macro index "unset wait_key/usr/bin/notmuch-mutt --prompt search~/.cache/mutt_results" "search mail (using notmuch)" #macro index "unset wait_key/usr/bin/notmuch-mutt thread~/.cache/mutt_resultsset wait_key" "search and reconstruct owning thread (using notmuch)" # -#source ~/.mutt/gpg.rc # Use GPG +source ~/.mutt/gpg.rc # Use GPG #source ~/.mutt/auto_views # Define auto_views. source ~/.mutt/aliases # Load in my aliases. source ~/.mutt/subscriptions # Define the list of subscribed mailing lists. -- cgit v1.2.3