From e6994684c2d9e2a36997fa8dcd7cde59d4880d01 Mon Sep 17 00:00:00 2001 From: Ryan Chan Date: Fri, 21 Oct 2022 09:57:07 +0100 Subject: [PATCH] Clean up msmtp config --- msmtp/config | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/msmtp/config b/msmtp/config index 1b258c3..73e68f6 100644 --- a/msmtp/config +++ b/msmtp/config @@ -1,14 +1,23 @@ +# Set default values for all following accounts defaults + +# Always use TLS auth on tls on -# Same as sslcacertfile in ~/.offlineimaprc -tls_trust_file /etc/ssl/certs/ca-certificates.crt +# Set a list of trusted CAs for TLS. The default is to use system settings, but +# you can select your own file. +# tls_trust_file /etc/ssl/certs/ca-certificates.crt -account personal +account rycwo@posteo.net +# Envelope-from address +from rycwo@posteo.net +# Host name of SMTP server host posteo.de +# Use mail submission port 587 instead of the SMTP port 25 +port 587 +# Authentication user rycwo@posteo.net -from rycwo@posteo.net passwordeval pass show www/posteo.de/rycwo@posteo.net -port 587 -account default : personal +# Set a default account +account default : rycwo@posteo.net -- 2.38.5