calendars and stuff

This commit is contained in:
Till 2025-04-29 10:46:09 +02:00
parent bc5f851d3f
commit d4e8658d5f
4 changed files with 67 additions and 31 deletions

View file

@ -53,6 +53,7 @@ macro index,pager gj "<change-folder>$my_junk<enter><refresh>" "Go to ju
# accounts
macro index,pager gu "<change-folder>~/.local/share/mail/gu/Inbox<enter><refresh>" "Go to GU"
# macro index,pager gp "<change-folder>+systemli/IMAP/Inbox<enter><refresh>" "Go to Systemli"
macro index,pager gm "<change-folder>~/.local/share/mail/t9e/Inbox<enter><refresh>" "Go to t9e"
# macro index,pager gm "<change-folder>+gmail/IMAP/Inbox<enter><refresh>" "Go to Gmail"
macro index,pager gk "<change-folder>~/.local/share/mail/ksh/Inbox<enter><refresh>" "Go to KSH"
macro index,pager gi "<change-folder>~/.local/share/mail/ktiu/Inbox<enter><refresh>" "Go to ktiu"

View file

@ -42,6 +42,7 @@
showSignature = "append";
};
mbsync.enable = true;
mbsync.create = "maildir";
msmtp.enable = true;
neomutt = {
enable = true;
@ -79,6 +80,49 @@
'';
};
};
t9e = {
address = "till@t9e.me";
realName = "Till Straube";
imap.host = "mail.ktiu.net";
smtp.host = "mail.ktiu.net";
smtp.tls.useStartTls = true;
notmuch.enable = true;
userName = "till";
signature.text = ''
Till Straube (he/him)
'';
signature.showSignature = "append";
neomutt = {
enable = true;
sendMailCommand = "/home/till/.nix-profile/bin/msmtp";
extraConfig = ''
set my_mbsync_acct='t9e'
set mbox='+Archive'
set my_junk='+Junk'
unset crypt_auto_pgp
unset crypt_auto_smime
unalternates *
alternates @t9e.me$
set reverse_name
set my_signature = ${
pkgs.writeText
"signature.txt"
config.accounts.email.accounts.t9e.signature.text
}
color status green default
'';
};
mbsync.enable = true;
mbsync.create = "maildir";
msmtp = {
enable = true;
extraConfig.from = "*@t9e.me";
};
passwordCommand = "secret-tool lookup server mail.ktiu.net account till";
};
ktiu = {
address = "till@ktiu.net";
realName = "Till Straube";
@ -120,6 +164,7 @@
'';
};
mbsync.enable = true;
mbsync.create = "maildir";
msmtp = {
enable = true;
extraConfig.from = "*@ktiu.net";