2023-09-04 08:53:41 +01:00
|
|
|
{ pkgs, hostName, ... }:
|
2023-09-02 08:41:07 +01:00
|
|
|
|
|
|
|
{
|
2023-09-14 08:30:55 +01:00
|
|
|
accounts.email.accounts = let
|
|
|
|
realName = "Evelyn Litherland-Smith";
|
|
|
|
notmuch.enable = true;
|
|
|
|
|
|
|
|
in {
|
|
|
|
proton = let
|
|
|
|
host = "127.0.0.1";
|
|
|
|
tls.enable = false;
|
|
|
|
in rec {
|
|
|
|
inherit realName notmuch;
|
|
|
|
maildir.path = "Proton";
|
|
|
|
imap = {
|
|
|
|
inherit host tls;
|
|
|
|
port = 1143;
|
|
|
|
};
|
|
|
|
smtp = {
|
|
|
|
inherit host tls;
|
|
|
|
port = 1025;
|
|
|
|
};
|
|
|
|
address = "e.litherlandsmith@proton.me";
|
|
|
|
aliases = [ "evie@xenia.me.uk" "evie@litherlandsmith.slmail.me" ];
|
|
|
|
passwordCommand = "${pkgs.pass}/bin/pass show Mail/Proton/${hostName}";
|
|
|
|
primary = true;
|
|
|
|
userName = address;
|
|
|
|
mbsync = {
|
|
|
|
enable = true;
|
|
|
|
create = "both";
|
|
|
|
expunge = "both";
|
|
|
|
subFolders = "Verbatim";
|
|
|
|
extraConfig.account.AuthMechs = "LOGIN";
|
|
|
|
};
|
|
|
|
msmtp = {
|
|
|
|
enable = true;
|
|
|
|
extraConfig = {
|
|
|
|
tls = "off";
|
|
|
|
auth = "login";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
icloud = rec {
|
|
|
|
inherit realName notmuch;
|
|
|
|
maildir.path = "iCloud";
|
|
|
|
imap.host = "imap.mail.me.com";
|
|
|
|
smtp.host = "smtp.mail.me.com";
|
|
|
|
address = "e.litherlandsmith@icloud.com";
|
|
|
|
passwordCommand = "${pkgs.pass}/bin/pass show Mail/iCloud/mbsync";
|
|
|
|
userName = address;
|
|
|
|
mbsync = {
|
|
|
|
enable = true;
|
|
|
|
create = "both";
|
|
|
|
expunge = "both";
|
|
|
|
subFolders = "Verbatim";
|
|
|
|
};
|
|
|
|
msmtp.enable = true;
|
|
|
|
};
|
|
|
|
ukaea = let
|
|
|
|
host = "127.0.0.1";
|
|
|
|
tls.enable = false;
|
|
|
|
in rec {
|
|
|
|
inherit realName notmuch;
|
|
|
|
maildir.path = "UKAEA";
|
|
|
|
imap = {
|
|
|
|
inherit host tls;
|
|
|
|
port = 1144;
|
|
|
|
};
|
|
|
|
smtp = {
|
|
|
|
inherit host tls;
|
|
|
|
port = 1026;
|
|
|
|
};
|
|
|
|
address = "evie.litherland-smith@ukaea.uk";
|
|
|
|
passwordCommand = "${pkgs.pass}/bin/pass show Mail/Outlook/ukaea";
|
|
|
|
userName = address;
|
|
|
|
mbsync = {
|
|
|
|
enable = true;
|
|
|
|
create = "both";
|
|
|
|
expunge = "both";
|
|
|
|
subFolders = "Verbatim";
|
|
|
|
extraConfig.account.AuthMechs = "LOGIN";
|
|
|
|
};
|
|
|
|
msmtp = {
|
|
|
|
enable = true;
|
|
|
|
extraConfig = {
|
|
|
|
tls = "off";
|
|
|
|
auth = "login";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2023-09-02 08:41:07 +01:00
|
|
|
home.packages = with pkgs; [ protonmail-bridge davmail vdirsyncer ];
|
|
|
|
programs = {
|
2023-09-14 08:30:55 +01:00
|
|
|
mbsync = { enable = true; };
|
|
|
|
msmtp = { enable = true; };
|
|
|
|
# vdirsyncer = { enable = true; };
|
|
|
|
notmuch = {
|
2023-09-02 08:41:07 +01:00
|
|
|
enable = true;
|
2023-09-14 08:30:55 +01:00
|
|
|
maildir.synchronizeFlags = true;
|
2023-09-02 08:41:07 +01:00
|
|
|
};
|
2023-09-14 08:30:55 +01:00
|
|
|
afew.enable = true;
|
|
|
|
alot.enable = true;
|
2023-09-02 08:41:07 +01:00
|
|
|
};
|
|
|
|
xdg.configFile."vdirsyncer/config".text =
|
|
|
|
import ./config/vdirsyncer.nix { inherit pkgs; };
|
|
|
|
}
|