2019-10-24 02:20:38 +02:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
let
|
|
|
|
passcmd = id: "${pkgs.pass}/bin/pass ${id}";
|
|
|
|
ticks = "''";
|
2020-01-16 09:42:57 +01:00
|
|
|
|
2019-12-20 05:54:26 +01:00
|
|
|
in {
|
2019-10-24 02:20:38 +02:00
|
|
|
# Maildir <-> Server communication
|
|
|
|
# --------------------------------
|
|
|
|
# mbsync: MailDir <-> IMAP
|
|
|
|
# msmtp: sendmail interface sending mails through your provider.
|
|
|
|
|
|
|
|
# client backend
|
|
|
|
# --------------
|
|
|
|
# notmuch: Tagdatabase for Emails
|
|
|
|
# afew: Autotagger using notmuch
|
|
|
|
# muchsync: notmuch database synctool
|
|
|
|
|
|
|
|
# clients
|
|
|
|
# -------
|
|
|
|
# alot
|
|
|
|
# astroid
|
|
|
|
# neomutt
|
|
|
|
|
|
|
|
home-manager.users.mainUser.accounts.email.accounts = {
|
|
|
|
palo_van_dalo-gmx = {
|
|
|
|
primary = false;
|
|
|
|
address = "palo_van_dalo@gmx.de";
|
|
|
|
aliases = [ ];
|
|
|
|
realName = "Ingolf Wagner";
|
|
|
|
userName = "palo_van_dalo@gmx.de";
|
|
|
|
passwordCommand = passcmd "mail/gmx/palo_van_dalo@gmx.de";
|
|
|
|
smtp = {
|
|
|
|
host = "smtp.gmx.net";
|
|
|
|
port = 465;
|
|
|
|
};
|
|
|
|
notmuch.enable = true;
|
2019-12-20 05:54:26 +01:00
|
|
|
msmtp = { enable = true; };
|
2019-10-24 02:20:38 +02:00
|
|
|
};
|
|
|
|
ingolf-wagner-gmx = {
|
|
|
|
primary = false;
|
|
|
|
address = "ingolf.wagner@gmx.de";
|
|
|
|
aliases = [ ];
|
|
|
|
realName = "Ingolf Wagner";
|
|
|
|
userName = "ingolf.wagner@gmx.de";
|
|
|
|
passwordCommand = passcmd "mail/gmx/ingolf.wagner@gmx.de";
|
|
|
|
smtp = {
|
|
|
|
host = "smtp.gmx.net";
|
|
|
|
port = 465;
|
|
|
|
};
|
|
|
|
notmuch.enable = true;
|
2019-12-20 05:54:26 +01:00
|
|
|
msmtp = { enable = true; };
|
2019-10-24 02:20:38 +02:00
|
|
|
};
|
|
|
|
pali_palo = {
|
|
|
|
primary = false;
|
|
|
|
address = "pali_palo@web.de";
|
|
|
|
aliases = [ ];
|
|
|
|
realName = "Ingolf Wagner";
|
|
|
|
userName = "pali_palo@web.de";
|
|
|
|
passwordCommand = passcmd "mail/web.de/pali_palo@web.de";
|
|
|
|
smtp = {
|
|
|
|
host = "smtp.web.de";
|
|
|
|
port = 465;
|
|
|
|
};
|
|
|
|
notmuch.enable = true;
|
|
|
|
msmtp = {
|
|
|
|
enable = true;
|
|
|
|
# msmtp --serverinfo --tls --tls-certcheck=off -a gmail
|
|
|
|
# tls.fingerprint = "77:2F:E1:F0:1C:9C:00:45:36:D5:0B:25:17:76:AC:7F:0E:79:68:27:8C:E9:E1:F6:BD:DF:F1:6F:1E:8C:85:18";
|
|
|
|
# tls.fingerprint = "3F:B7:F9:7A:AC:9C:D7:C4:2E:8A:C1:F9:90:B5:D7:D1:8E:E2:F7:7D:9D:DB:FA:01:55:27:D2:79:5F:F8:C1:64";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
gmail = {
|
|
|
|
# for google accounts you have to allow 'less secure apps' in accounts.google.com
|
|
|
|
primary = true;
|
|
|
|
address = "palipalo9@googlemail.com";
|
|
|
|
aliases = [ ];
|
|
|
|
realName = "Ingolf Wagner";
|
|
|
|
userName = "palipalo9@googlemail.com";
|
|
|
|
passwordCommand = passcmd "mail/gmail/palipalo9@googlemail.com";
|
|
|
|
smtp = {
|
|
|
|
host = "smtp.gmail.com";
|
|
|
|
port = 465;
|
|
|
|
};
|
|
|
|
notmuch.enable = true;
|
|
|
|
msmtp = {
|
|
|
|
enable = true;
|
|
|
|
# msmtp --serverinfo --tls --tls-certcheck=off -a gmail
|
|
|
|
# tls.fingerprint = "77:2F:E1:F0:1C:9C:00:45:36:D5:0B:25:17:76:AC:7F:0E:79:68:27:8C:E9:E1:F6:BD:DF:F1:6F:1E:8C:85:18";
|
|
|
|
# tls.fingerprint = "3F:B7:F9:7A:AC:9C:D7:C4:2E:8A:C1:F9:90:B5:D7:D1:8E:E2:F7:7D:9D:DB:FA:01:55:27:D2:79:5F:F8:C1:64";
|
|
|
|
};
|
|
|
|
gpg = {
|
|
|
|
encryptByDefault = true;
|
|
|
|
signByDefault = true;
|
|
|
|
key = "42AC51C9482D0834CF488AF1389EC2D64AC71EAC";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
ingolf-wagner = {
|
|
|
|
primary = false;
|
|
|
|
address = "contact@ingolf-wagner.de";
|
|
|
|
aliases = [ ];
|
|
|
|
realName = "Ingolf Wagner";
|
|
|
|
userName = "contact@ingolf-wagner.de";
|
|
|
|
passwordCommand = passcmd "mail/siteground/contact@ingolf-wagner.de";
|
2019-11-29 06:01:03 +01:00
|
|
|
notmuch.enable = true;
|
2019-10-24 02:20:38 +02:00
|
|
|
smtp = {
|
|
|
|
host = "securees5.sgcpanel.com";
|
|
|
|
port = 587;
|
|
|
|
tls.useStartTls = true;
|
|
|
|
};
|
|
|
|
msmtp = {
|
|
|
|
enable = true;
|
|
|
|
# msmtp --serverinfo --tls --tls-certcheck=off -a ingolf-wagner
|
2019-12-20 05:54:26 +01:00
|
|
|
tls.fingerprint =
|
|
|
|
"33:B9:77:B6:69:2C:0C:BC:ED:28:12:79:02:AC:00:4E:E3:EE:31:EF:5E:C8:12:1C:02:5D:13:0B:BA:C0:1E:5F";
|
2019-10-24 02:20:38 +02:00
|
|
|
};
|
|
|
|
gpg = {
|
|
|
|
encryptByDefault = true;
|
|
|
|
signByDefault = true;
|
|
|
|
key = "42AC51C9482D0834CF488AF1389EC2D64AC71EAC";
|
|
|
|
};
|
|
|
|
};
|
2019-11-29 06:01:03 +01:00
|
|
|
gaykraft = {
|
|
|
|
primary = false;
|
|
|
|
address = "root@gaykraft.com";
|
|
|
|
aliases = [ ];
|
|
|
|
realName = "Ingolf Wagner";
|
|
|
|
userName = "root@gaykraft.com";
|
|
|
|
passwordCommand = "mail/gaykraft.com/root@gaykraft.com";
|
|
|
|
mbsync = {
|
|
|
|
enable = true;
|
|
|
|
create = "both";
|
|
|
|
};
|
|
|
|
smtp = {
|
|
|
|
host = "mail.gaykraft.com";
|
|
|
|
port = 587;
|
|
|
|
tls.useStartTls = true;
|
|
|
|
};
|
|
|
|
msmtp = {
|
|
|
|
enable = true;
|
|
|
|
# msmtp --serverinfo --tls --tls-certcheck=off -a gaykraft
|
2019-12-20 05:54:26 +01:00
|
|
|
tls.fingerprint =
|
|
|
|
"08:42:73:72:3E:68:7D:55:89:7A:30:02:4B:CD:30:35:F1:6D:3E:7A:DD:A8:B6:84:67:25:37:F0:4F:7F:86:FE";
|
2019-11-29 06:01:03 +01:00
|
|
|
};
|
|
|
|
notmuch.enable = true;
|
|
|
|
};
|
2019-10-24 02:20:38 +02:00
|
|
|
c-base = {
|
|
|
|
primary = false;
|
|
|
|
address = "palo@c-base.org";
|
|
|
|
aliases = [ ];
|
|
|
|
realName = "Ingolf Wagner";
|
|
|
|
userName = "palo";
|
|
|
|
passwordCommand = passcmd "mail/c-base/palo@c-base.org";
|
|
|
|
smtp = {
|
|
|
|
host = "c-mail.c-base.org";
|
|
|
|
port = 465;
|
|
|
|
};
|
|
|
|
notmuch.enable = true;
|
|
|
|
msmtp = {
|
|
|
|
enable = true;
|
|
|
|
# msmtp --serverinfo --tls --tls-certcheck=off -a c-base
|
2019-12-20 05:54:26 +01:00
|
|
|
tls.fingerprint =
|
|
|
|
"9C:82:3B:0F:31:CE:1B:8E:96:00:CC:C9:FF:E7:BE:66:95:92:4F:22:DD:D6:2E:0E:1D:90:76:BE:8E:9E:8E:16";
|
2019-10-24 02:20:38 +02:00
|
|
|
};
|
|
|
|
gpg = {
|
|
|
|
encryptByDefault = true;
|
|
|
|
signByDefault = true;
|
|
|
|
key = "42AC51C9482D0834CF488AF1389EC2D64AC71EAC";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
# install mail programs
|
|
|
|
home-manager.users.mainUser.programs.msmtp.enable = true;
|
|
|
|
home-manager.users.mainUser.programs.notmuch.enable = true;
|
|
|
|
|
|
|
|
# enable html emails
|
|
|
|
home-manager.users.mainUser.home.file.".mailcap".text = ''
|
|
|
|
text/html; ${pkgs.elinks}/bin/elinks -dump ; copiousoutput;
|
|
|
|
'';
|
|
|
|
|
2020-03-17 11:21:41 +01:00
|
|
|
home-manager.users.mainUser.home.file.".muttrc".text = let
|
|
|
|
|
|
|
|
index_format = pkgs.writers.writeDash "index_format" ''
|
|
|
|
# http://www.mutt.org/doc/manual/#formatstrings
|
|
|
|
recipent="$(echo $1 | sed 's/[^,]*<\([^>]*\)[^,]*/ \1/g')"
|
|
|
|
echo "%4C %Z %?GI?%GI& ? %[%y-%m-%d %H:%M] %-20.20a %?M?(%3M)& ? %s %> $recipent %?g?%g?%"
|
|
|
|
'';
|
|
|
|
in ''
|
2020-01-16 09:42:57 +01:00
|
|
|
# gpg
|
|
|
|
set crypt_use_gpgme=yes
|
|
|
|
set crypt_autosign=yes
|
|
|
|
set crypt_verify_sig=yes
|
|
|
|
set crypt_replysign=yes
|
|
|
|
set crypt_replyencrypt=yes
|
|
|
|
set crypt_replysignencrypted=yes
|
2020-01-17 09:46:13 +01:00
|
|
|
|
|
|
|
# mutt is not smart enough to see if I have a key or not
|
|
|
|
#set crypt_autoencrypt = yes
|
2020-01-16 09:42:57 +01:00
|
|
|
|
|
|
|
set pgp_check_gpg_decrypt_status_fd
|
|
|
|
set pgp_use_gpg_agent = yes
|
|
|
|
set pgp_self_encrypt = yes # needs default key
|
|
|
|
set pgp_default_key = 42AC51C9482D0834CF488AF1389EC2D64AC71EAC
|
|
|
|
|
|
|
|
# read html mails
|
|
|
|
auto_view text/html
|
|
|
|
set mailcap_path = ~/.mailcap
|
|
|
|
|
|
|
|
# notmuch
|
|
|
|
set nm_default_uri="notmuch://$HOME/Maildir" # path to the maildir
|
|
|
|
set nm_record = yes
|
|
|
|
set nm_record_tags = "-inbox me archive"
|
|
|
|
set virtual_spoolfile=yes # enable virtual folders
|
|
|
|
|
2020-01-17 10:38:16 +01:00
|
|
|
set sendmail=${
|
|
|
|
pkgs.writers.writeBash "msmtp" ''
|
|
|
|
${pkgs.coreutils}/bin/tee >(${pkgs.notmuch}/bin/notmuch insert --create-folder +sent) | \
|
2020-02-26 09:38:55 +01:00
|
|
|
${pkgs.msmtp}/bin/msmtpq "$@"
|
2020-01-17 10:38:16 +01:00
|
|
|
''
|
|
|
|
}
|
2020-01-16 09:42:57 +01:00
|
|
|
|
|
|
|
set from="contact@ingolf-wagner.de"
|
|
|
|
#alternates ^.*@ingolf-wagner\.de$ ^.*@.*\.r$
|
|
|
|
set use_from=yes
|
|
|
|
set envelope_from=yes
|
|
|
|
set reverse_name
|
|
|
|
|
|
|
|
set sort=threads
|
|
|
|
|
2020-03-17 11:21:41 +01:00
|
|
|
set index_format="${index_format} %r |"
|
2020-01-16 09:42:57 +01:00
|
|
|
|
2020-03-16 15:31:13 +01:00
|
|
|
virtual-mailboxes "INBOX" "notmuch://?query=(tag:inbox or (tag:sent and not tag:archive)) AND NOT tag:discourse AND NOT tag:muted"
|
|
|
|
virtual-mailboxes "Unread" "notmuch://?query=(tag:unread AND NOT tag:muted)"
|
|
|
|
virtual-mailboxes "Discourse.all" "notmuch://?query=(tag:discourse AND NOT tag:muted)"
|
|
|
|
virtual-mailboxes "Discourse.development" "notmuch://?query=(tag:discourse AND tag:development AND NOT tag:muted)"
|
|
|
|
virtual-mailboxes "Discourse.announcements" "notmuch://?query=(tag:discourse AND tag:announcements AND NOT tag:muted)"
|
|
|
|
virtual-mailboxes "Discourse.links" "notmuch://?query=(tag:discourse AND tag:links AND NOT tag:muted)"
|
|
|
|
virtual-mailboxes "Discourse.games" "notmuch://?query=(tag:discourse AND tag:games AND NOT tag:muted)"
|
|
|
|
virtual-mailboxes "Discourse.meta" "notmuch://?query=(tag:discourse AND tag:meta AND NOT tag:muted)"
|
|
|
|
virtual-mailboxes "Discourse.events" "notmuch://?query=(tag:discourse AND tag:events AND NOT tag:muted)"
|
2020-01-16 09:42:57 +01:00
|
|
|
virtual-mailboxes "Starred" "notmuch://?query=tag:flagged"
|
|
|
|
virtual-mailboxes "Archive" "notmuch://?query=tag:archive"
|
|
|
|
virtual-mailboxes "Sent" "notmuch://?query=tag:sent"
|
|
|
|
virtual-mailboxes "Junk" "notmuch://?query=tag:junk"
|
|
|
|
virtual-mailboxes "All" "notmuch://?query=*"
|
|
|
|
|
|
|
|
tag-transforms "junk" "k" \
|
|
|
|
"unread" "u" \
|
|
|
|
"replied" "↻" \
|
2020-03-16 15:31:13 +01:00
|
|
|
"TODO" "T"
|
2020-01-16 09:42:57 +01:00
|
|
|
|
|
|
|
# notmuch bindings
|
2020-01-28 02:44:30 +01:00
|
|
|
bind index \\\\ noop
|
|
|
|
bind pager \\ noop
|
|
|
|
bind pager \\\\ noop
|
2020-01-16 09:42:57 +01:00
|
|
|
macro index \\\\ "<vfolder-from-query>" # looks up a hand made query
|
2020-01-27 23:25:46 +01:00
|
|
|
macro pager \\\\ "<vfolder-from-query>" # looks up a hand made query
|
2020-01-28 02:44:30 +01:00
|
|
|
|
2020-03-04 10:02:12 +01:00
|
|
|
macro index + "<modify-labels>+flagged\n<sync-mailbox>" # tag as starred
|
|
|
|
macro pager + "<modify-labels>+flagged\n<sync-mailbox>" # tag as starred
|
|
|
|
macro index ! "<modify-labels>+flagged\n<sync-mailbox>" # tag as starred
|
|
|
|
macro pager ! "<modify-labels>+flagged\n<sync-mailbox>" # tag as starred
|
|
|
|
macro index - "<modify-labels>-flagged\n<sync-mailbox>" # tag as unstarred
|
|
|
|
macro pager - "<modify-labels>-flagged\n<sync-mailbox>" # tag as unstarred
|
2020-01-16 09:42:57 +01:00
|
|
|
|
2020-01-28 02:44:30 +01:00
|
|
|
# Address Book
|
|
|
|
# ------------
|
|
|
|
set query_command="${pkgs.notmuch-addrlookup}/bin/notmuch-addrlookup --mutt '%s'"
|
2020-01-16 09:42:57 +01:00
|
|
|
|
|
|
|
# keys bindings
|
|
|
|
# -------------
|
|
|
|
#killed
|
|
|
|
bind index d noop
|
|
|
|
bind pager d noop
|
|
|
|
|
|
|
|
bind index S noop
|
|
|
|
bind index s noop
|
|
|
|
bind pager S noop
|
|
|
|
bind pager s noop
|
|
|
|
macro index S "<modify-labels-then-hide>-inbox -unread +junk\n" # tag as Junk mail
|
|
|
|
macro index s "<modify-labels>-junk\n" # tag as Junk mail
|
|
|
|
macro pager S "<modify-labels-then-hide>-inbox -unread +junk\n" # tag as Junk mail
|
|
|
|
macro pager s "<modify-labels>-junk\n" # tag as Junk mail
|
|
|
|
|
|
|
|
|
|
|
|
bind index A noop
|
|
|
|
bind index a noop
|
|
|
|
bind pager A noop
|
|
|
|
bind pager a noop
|
|
|
|
macro index A "<modify-labels>+archive -unread -inbox\n" # tag as Archived
|
|
|
|
macro index a "<modify-labels>-archive\n" # tag as Archived
|
|
|
|
macro pager A "<modify-labels>+archive -unread -inbox\n" # tag as Archived
|
|
|
|
macro pager a "<modify-labels>-archive\n" # tag as Archived
|
|
|
|
|
|
|
|
bind index U noop
|
|
|
|
bind index u noop
|
|
|
|
bind pager U noop
|
|
|
|
bind pager u noop
|
2020-01-25 07:13:03 +01:00
|
|
|
macro index u "<modify-labels>+unread\n"
|
|
|
|
macro index U "<modify-labels>-unread\n"
|
|
|
|
macro pager u "<modify-labels>+unread\n"
|
|
|
|
macro pager U "<modify-labels>-unread\n"
|
2020-01-16 09:42:57 +01:00
|
|
|
|
2020-01-16 11:31:05 +01:00
|
|
|
bind index l noop
|
|
|
|
bind pager l noop
|
2020-01-17 09:46:13 +01:00
|
|
|
macro index l "<modify-labels>" # set tags manual
|
|
|
|
macro pager l "<modify-labels>" # set tags manual
|
2020-01-16 11:31:05 +01:00
|
|
|
|
|
|
|
# taskwarrior
|
|
|
|
# -----------
|
|
|
|
# from https://www.nixternal.com/mark-e-mails-in-mutt-as-tasks-in-taskwarrior/
|
2020-01-16 09:42:57 +01:00
|
|
|
bind index t noop
|
|
|
|
bind pager t noop
|
2020-01-16 11:31:05 +01:00
|
|
|
bind index T noop
|
|
|
|
bind pager T noop
|
2020-01-17 10:38:16 +01:00
|
|
|
macro index T "<pipe-message>${
|
|
|
|
pkgs.writers.writeDash "mutt2task" ''
|
|
|
|
${pkgs.taskwarrior}/bin/task add +email E-mail: $( ${pkgs.gnugrep}/bin/grep 'Subject' $* | awk -F: '{print $2}' )
|
|
|
|
''
|
|
|
|
}<enter>"
|
2020-01-16 09:42:57 +01:00
|
|
|
|
|
|
|
# top index bar in email view
|
|
|
|
set pager_index_lines=7
|
|
|
|
# top_index_bar toggle
|
|
|
|
macro pager ,@1 "<enter-command> set pager_index_lines=0; macro pager ] ,@2 'Toggle indexbar<Enter>"
|
|
|
|
macro pager ,@2 "<enter-command> set pager_index_lines=3; macro pager ] ,@3 'Toggle indexbar<Enter>"
|
|
|
|
macro pager ,@3 "<enter-command> set pager_index_lines=7; macro pager ] ,@1 'Toggle indexbar<Enter>"
|
|
|
|
macro pager ] ,@1 'Toggle indexbar
|
|
|
|
|
|
|
|
# sidebar
|
|
|
|
# -------
|
|
|
|
set sidebar_width = 20
|
|
|
|
set sidebar_visible = yes # set to "no" to disable sidebar view at startup
|
|
|
|
color sidebar_new yellow default
|
|
|
|
# sidebar bindings
|
|
|
|
bind index <left> sidebar-prev # got to previous folder in sidebar
|
|
|
|
bind index <right> sidebar-next # got to next folder in sidebar
|
|
|
|
bind index <space> sidebar-open # open selected folder from sidebar
|
|
|
|
|
|
|
|
# sidebar toggle
|
|
|
|
#macro index,pager ,@) "<enter-command> set sidebar_visible=no; macro index,pager [ ,@( 'Toggle sidebar'<Enter>"
|
|
|
|
#macro index,pager ,@( "<enter-command> set sidebar_visible=yes; macro index,pager [ ,@) 'Toggle sidebar'<Enter>"
|
|
|
|
#macro index,pager [ ,@( 'Toggle sidebar' # toggle the sidebar
|
|
|
|
'';
|
|
|
|
|
2019-10-24 02:20:38 +02:00
|
|
|
environment.systemPackages = let
|
2020-01-16 09:42:57 +01:00
|
|
|
|
2020-01-16 11:31:05 +01:00
|
|
|
mailSync = pkgs.writers.writeDashBin "mail-sync" ''
|
2019-10-24 02:20:38 +02:00
|
|
|
${pkgs.muchsync}/bin/muchsync mailfetcher@workhorse.private --nonew
|
|
|
|
'';
|
2020-01-16 11:31:05 +01:00
|
|
|
mailSend = pkgs.writers.writeDashBin "mail-send" ''
|
2019-10-24 02:20:38 +02:00
|
|
|
${pkgs.msmtp}/bin/msmtp-queue -r
|
|
|
|
'';
|
2020-01-16 11:31:05 +01:00
|
|
|
mailView = pkgs.writers.writeDashBin "mail-view" ''
|
|
|
|
${pkgs.neomutt}/bin/neomutt"$@"
|
2019-10-24 02:20:38 +02:00
|
|
|
'';
|
2020-01-16 11:31:05 +01:00
|
|
|
mutt = pkgs.writers.writeDashBin "mutt" ''
|
|
|
|
${pkgs.neomutt}/bin/neomutt"$@"
|
|
|
|
'';
|
|
|
|
mail = pkgs.writers.writeDashBin "mail" ''
|
2019-10-24 02:20:38 +02:00
|
|
|
${mailSync}/bin/mail-sync
|
|
|
|
${mailView}/bin/mail-view
|
|
|
|
${mailSend}/bin/mail-send
|
|
|
|
${mailSync}/bin/mail-sync
|
|
|
|
'';
|
2020-01-17 10:38:16 +01:00
|
|
|
in [
|
|
|
|
pkgs.notmuch
|
|
|
|
pkgs.alot
|
|
|
|
pkgs.muchsync
|
|
|
|
mail
|
|
|
|
mailSync
|
|
|
|
mailView
|
|
|
|
mailSend
|
|
|
|
pkgs.neomutt
|
|
|
|
mutt
|
|
|
|
];
|
2019-10-24 02:20:38 +02:00
|
|
|
|
|
|
|
}
|