diff options
author | luxagraf <sng@luxagraf> | 2021-02-18 16:59:26 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf> | 2021-02-18 16:59:26 -0500 |
commit | 17681dcd4618ebd4c032150e03dad40ea6d9d29d (patch) | |
tree | 34a7b12383a2d23b6c9cab4e93201c541474c94e /.msmtprc | |
parent | 97a177c0f768c8551f7352b68eaf707688552ef7 (diff) |
mutt: set up second wired@scottgilbertson.net account
Diffstat (limited to '.msmtprc')
-rw-r--r-- | .msmtprc | 24 |
1 files changed, 14 insertions, 10 deletions
@@ -1,18 +1,22 @@ -account sng@luxagraf.net -host echo.mxrouting.net +defaults port 587 protocol smtp auth on +host echo.mxrouting.net +tls on +tls_trust_file /etc/ssl/certs/ca-certificates.crt +#tls_nocertcheck +logfile ~/.msmtp.log + +account personal from sng@luxagraf.net user sng@luxagraf.net passwordeval "gpg2 --quiet --for-your-eyes-only --no-tty --decrypt ~/.password-store/sng_mxroute.gpg" -tls on -#tls_trust_file ~/.mutt/DigiCertHighAssuranceEVRootCA.crt -tls_trust_file /etc/ssl/certs/ca-certificates.crt -logfile ~/.msmtp.log -account default : sng@luxagraf.net +account work +from wired@scottgilbertson.net +user wired@scottgilbertson.net +passwordeval "gpg2 --quiet --for-your-eyes-only --no-tty --decrypt ~/.password-store/wired@scottgilbertson.net.gpg" + +account default : personal -tls on -tls_nocertcheck -logfile ~/.msmtp.log |