kujiu (@uberwald)
8ca6287fb1
-> Passwords in KeePassXC (access by keyring) -> Neomutt + Aerc (mail) -> vdirsyncer + khal + khard (calendar and contacts) zsh -> fish -> poezio (XMPP) -> newsboat (RSS with FreshRSS) -> toot (Mastodon client) vim -> neovim (with lunarvim) -> nvimpager (pager based on neovim) -> konsole With Nightfox theme.
19 lines
641 B
Text
19 lines
641 B
Text
set my_account_home = '~/.config/neomutt/accounts/template1@example.com'
|
|
set from = "template1@example.com"
|
|
set realname = "Mr Template Example"
|
|
set imap_pass = "`keyring get 'mail:template1@example.com' 'template1@example.com'`"
|
|
set imap_user = "$from"
|
|
set smtp_url = "smtp://$imap_user@smtp.example.com:587/"
|
|
set smtp_pass = "$imap_pass"
|
|
set folder = "imap://imap.example.com"
|
|
set spoolfile = "=INBOX"
|
|
set postponed = "=Drafts"
|
|
set record = "=Sent"
|
|
set trash = "=Trash"
|
|
set signature = $my_account_home/signature.txt
|
|
set imap_check_subscribed
|
|
set ssl_starttls=yes
|
|
set ssl_force_tls=yes
|
|
unset imap_passive
|
|
set mail_check=400
|
|
set timeout=60
|