forked from pub-solar/os
Benjamin Bädorf
854b0222a0
Add configuration for offlineimap, mutt, and msmtp for mail@b12f.io. This is a catch-all inbox, but it can send out via mail@ as well. Secrets will have to be added to the secret-tool manually.
22 lines
662 B
Plaintext
22 lines
662 B
Plaintext
# vim: filetype=muttrc
|
|
|
|
set from = "Benjamin Bädorf <mail@b12f.io>"
|
|
set sendmail = "msmtp -a mail@b12f.io"
|
|
set signature = "~/.config/mutt/mail@b12f.io.signature"
|
|
|
|
set pgp_default_key="4332E0D02B214D31376C366E4406E80E13CD656C"
|
|
|
|
set mbox_type = Maildir
|
|
set folder = ~/Mail
|
|
set spoolfile = "+mail\@b12f.io/INBOX"
|
|
set postponed = "+mail\@b12f.io/Drafts"
|
|
set record = "+mail\@b12f.io/Sent"
|
|
set trash = "+mail\@b12f.io/Trash"
|
|
mbox-hook = "+mail\@b12f.io/Archive"
|
|
unmailboxes *
|
|
mailboxes +mail\@b12f.io/INBOX \
|
|
+mail\@b12f.io/Drafts \
|
|
+mail\@b12f.io/Sent \
|
|
+mail\@b12f.io/Archive \
|
|
+mail\@b12f.io/Trash
|