diff options
author | Luke Smith <luke@lukesmith.xyz> | 2018-08-21 14:38:20 -0400 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2018-08-21 14:38:20 -0400 |
commit | 810c7710f016f452e6aeec39be6bcde24b586c1f (patch) | |
tree | 4b448b374be9ddbc94aff27d042219d5f8789e27 /autoconf | |
parent | 8ba05e8ee8cea7663460deac636eadf576faa49c (diff) |
full msmtprc compatibility added
Diffstat (limited to 'autoconf')
-rw-r--r-- | autoconf/msmtprc_header | 6 | ||||
-rw-r--r-- | autoconf/msmtprc_profile | 7 | ||||
-rw-r--r-- | autoconf/mutt_profile | 1 |
3 files changed, 13 insertions, 1 deletions
diff --git a/autoconf/msmtprc_header b/autoconf/msmtprc_header new file mode 100644 index 0000000..8040e03 --- /dev/null +++ b/autoconf/msmtprc_header @@ -0,0 +1,6 @@ +defaults +auth on +tls on +tls_trust_file /etc/ssl/certs/ca-certificates.crt +logfile ~/.msmtp.log + diff --git a/autoconf/msmtprc_profile b/autoconf/msmtprc_profile new file mode 100644 index 0000000..0ec99d0 --- /dev/null +++ b/autoconf/msmtprc_profile @@ -0,0 +1,7 @@ + +account $title +host $smtp +port $sport +from $login +user $login +passwordeval "gpg -d --quiet --for-your-eyes-only --no-tty ~/.config/mutt/credentials/$title.gpg | sed -e '$a\'" diff --git a/autoconf/mutt_profile b/autoconf/mutt_profile index 3b4622b..a96c93a 100644 --- a/autoconf/mutt_profile +++ b/autoconf/mutt_profile @@ -2,7 +2,6 @@ # muttrc file for account $title set realname = "$realname" set from = "$fulladdr" -set smtp_url = "smtp://$login@$smtp:$sport/" set sendmail = "/usr/bin/msmtp -a $title" set folder = "~/.mail/$title" set header_cache = ~/.config/mutt/accounts/$title/cache/headers |