diff options
author | Ben Sima <ben@bsima.me> | 2018-07-06 17:03:46 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2018-07-06 17:03:46 -0700 |
commit | 0bb256c4c6f295ab5df2f3bd18ec5fe054ad62c5 (patch) | |
tree | a91869ae7a7450265391acc396532a856adfce82 /muttrc | |
parent | d7a8920d0b82a699414ecc7bd5640cf3e8eb9aeb (diff) |
Add offline mail sending
Diffstat (limited to 'muttrc')
-rw-r--r-- | muttrc | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -57,16 +57,23 @@ set fast_reply=yes set forward_decode # decode when forwarding set reply_to # reply to Reply to: field set use_envelope_from = yes +set envelope_from = yes set text_flowed = yes +## Accounts + set my_pw = "`pass bnet/helium/mail/ben`" set imap_user = "ben@bsima.me" set imap_pass = $my_pw +set sendmail = msmtpq + set from = "ben@bsima.me" -set smtp_url = "smtp://ben@bsima.me@mail.bsima.me:587" -set smtp_pass = $my_pw +set use_from = yes + +#set smtp_url = "smtp://ben@bsima.me@mail.bsima.me:587" +#set smtp_pass = $my_pw set ssl_starttls = "yes" |