From 8c5e5c5415b986dfb107e18ef2f0a56f6badd589 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Fri, 24 May 2024 23:33:56 -0400 Subject: msmtp: Move to ~/.config/ --- msmtp/.config/msmtp/config | 22 ++++++++++++++++++++++ msmtp/.msmtprc | 22 ---------------------- 2 files changed, 22 insertions(+), 22 deletions(-) create mode 100644 msmtp/.config/msmtp/config delete mode 100644 msmtp/.msmtprc diff --git a/msmtp/.config/msmtp/config b/msmtp/.config/msmtp/config new file mode 100644 index 0000000..7b050b3 --- /dev/null +++ b/msmtp/.config/msmtp/config @@ -0,0 +1,22 @@ +defaults +tls on +tls_trust_file /etc/ssl/certs/ca-certificates.crt +logfile ~/.msmtp.log + +account gmail +host smtp.gmail.com +port 587 +from mattst88@gmail.com +auth on +user mattst88 +passwordeval "gpg --quiet --for-your-eyes-only --no-tty -d ~/.password-store/email/msmtp-mattst88@gmail.com.gpg" + +account gentoo +host smtp.gentoo.org +port 587 +from mattst88@gentoo.org +auth on +user mattst88 +passwordeval "gpg --quiet --for-your-eyes-only --no-tty -d ~/.password-store/email/mattst88@gentoo.org.gpg" + +account default : gmail diff --git a/msmtp/.msmtprc b/msmtp/.msmtprc deleted file mode 100644 index 7b050b3..0000000 --- a/msmtp/.msmtprc +++ /dev/null @@ -1,22 +0,0 @@ -defaults -tls on -tls_trust_file /etc/ssl/certs/ca-certificates.crt -logfile ~/.msmtp.log - -account gmail -host smtp.gmail.com -port 587 -from mattst88@gmail.com -auth on -user mattst88 -passwordeval "gpg --quiet --for-your-eyes-only --no-tty -d ~/.password-store/email/msmtp-mattst88@gmail.com.gpg" - -account gentoo -host smtp.gentoo.org -port 587 -from mattst88@gentoo.org -auth on -user mattst88 -passwordeval "gpg --quiet --for-your-eyes-only --no-tty -d ~/.password-store/email/mattst88@gentoo.org.gpg" - -account default : gmail -- cgit v1.2.3