blob: e0124891938edd7fc7af76c6a7f434ec7a07235f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# ens configuration
# save copies of sent emails to the ${folder}Sent directory
# the '+' expands to $folders (like '~' to $HOME in the bash shell)
set record = +ens/sent
set postponed = +ens/drafts
set signature = ~/.config/mutt/sig_ens.sig
set from = ""
# use msmtp to send outgoing mail to the mailserver
# see ~/.msmtp for configuration
set sendmail="/usr/bin/msmtp -C $HOME/.config/msmtp/msmtprc -a ens"
# bcc myself to make gmail style threaded conversations
my_hdr bcc: name@domain
# pgp settings
#set pgp_sign_as=MY_PGP_KEY_ID
#set pgp_autosign=yes
# vim: set ft=muttrc
|