nixos/home/accounts/email.nix

192 lines
5.7 KiB
Nix
Raw Normal View History

2024-01-30 14:21:50 +00:00
{
config,
lib,
pkgs,
hostName,
...
}: {
home.packages = with pkgs; [davmail];
accounts.email = {
2023-10-23 23:55:52 +01:00
maildirBasePath = "Mail";
2024-01-30 14:21:50 +00:00
accounts = let
realName = "Evie Litherland-Smith";
in {
proton = let
host = "127.0.0.1";
tls.enable = false;
accountEnabled = true;
in rec {
inherit realName;
primary = lib.mkDefault true;
maildir.path = "Proton";
imap = {
inherit host tls;
port = 1143;
};
smtp = {
inherit host tls;
port = 1025;
};
address = "e.litherlandsmith@proton.me";
2024-01-30 14:21:50 +00:00
aliases = ["evie@xenia.me.uk" "evie@litherlandsmith.slmail.me"];
userName = address;
2024-01-30 14:21:50 +00:00
passwordCommand = "${pkgs.pass}/bin/pass show mbsync/${hostName}/proton | head -n1";
mbsync = {
enable = lib.mkDefault accountEnabled;
create = "both";
expunge = "both";
remove = "both";
2024-01-30 14:21:50 +00:00
patterns = ["*" "!All Mail" "!Labels*" "!Starred" "!Recovered Messages"];
subFolders = "Verbatim";
extraConfig.account.AuthMechs = "LOGIN";
};
msmtp = {
enable = lib.mkDefault accountEnabled;
extraConfig = {
tls = "off";
auth = "login";
};
};
mu.enable = lib.mkDefault accountEnabled;
};
2024-01-30 14:21:50 +00:00
icloud = let
accountEnabled = true;
in rec {
inherit realName;
2023-10-15 10:02:16 +01:00
primary = lib.mkDefault false;
maildir.path = "iCloud";
imap.host = "imap.mail.me.com";
smtp.host = "smtp.mail.me.com";
address = "e.litherlandsmith@icloud.com";
userName = address;
2024-01-30 14:21:50 +00:00
passwordCommand = "${pkgs.pass}/bin/pass show mbsync/${hostName}/icloud | head -n1";
mbsync = {
enable = lib.mkDefault accountEnabled;
create = "both";
expunge = "both";
remove = "both";
2024-01-30 14:21:50 +00:00
patterns = ["*" "!Notes"];
subFolders = "Verbatim";
};
msmtp.enable = lib.mkDefault accountEnabled;
mu.enable = lib.mkDefault accountEnabled;
};
2023-10-15 10:02:16 +01:00
outlook = let
host = "127.0.0.1";
tls.enable = false;
accountEnabled = true;
in rec {
inherit realName;
primary = lib.mkDefault false;
2023-10-15 10:02:16 +01:00
maildir.path = "Outlook";
imap = {
inherit host tls;
port = 1144;
};
smtp = {
inherit host tls;
port = 1026;
};
address = "evie.litherland-smith@ukaea.uk";
2024-01-30 14:21:50 +00:00
aliases = ["elitherl@jet.uk"];
userName = address;
2024-01-30 14:21:50 +00:00
passwordCommand = "${pkgs.pass}/bin/pass show mbsync/${hostName}/outlook | head -n1";
mbsync = {
enable = lib.mkDefault accountEnabled;
create = "both";
expunge = "both";
remove = "both";
patterns = [
"*"
"!Conversation History"
"!Snoozed"
"!Social Activity Notifications"
"!Sync Issues*"
"!Unsent Messages"
];
subFolders = "Verbatim";
extraConfig.account.AuthMechs = "LOGIN";
};
2023-10-03 09:24:43 +01:00
msmtp = {
enable = lib.mkDefault accountEnabled;
2023-10-03 09:24:43 +01:00
extraConfig = {
tls = "off";
auth = "login";
};
};
mu.enable = lib.mkDefault accountEnabled;
};
};
};
programs = {
mu.enable = true;
msmtp.enable = true;
mbsync = {
enable = true;
groups.inboxes = {
2024-01-30 14:21:50 +00:00
proton = ["INBOX"];
icloud = ["INBOX"];
outlook = ["INBOX"];
};
};
};
2024-01-30 14:21:50 +00:00
systemd.user.services = let
emailAccounts = config.accounts.email.accounts;
in {
protonmail-bridge = lib.mkIf emailAccounts.proton.mbsync.enable {
Unit = {
Description = "Podman container-protonmail-bridge.service";
2024-01-30 14:21:50 +00:00
Documentation = ["man:podman-generate-systemd(1)"];
Wants = ["network-online.target"];
After = ["network-online.target"];
RequiresMountsFor = "%t/containers";
2023-10-01 09:17:45 +01:00
};
Service = {
2024-01-30 14:21:50 +00:00
Environment = ["PODMAN_SYSTEMD_UNIT=%n" "PATH=/run/wrappers/bin/:$PATH"];
Restart = "always";
TimeoutStopSec = 70;
ExecStart = ''
${pkgs.podman}/bin/podman run \
--cidfile=%t/%n.ctr-id \
--cgroups=no-conmon \
--rm \
--sdnotify=conmon \
--replace \
-d \
--name=protonmail-bridge \
-v protonmail:/root \
-p 127.0.0.1:1025:25/tcp \
-p 127.0.0.1:1143:143/tcp shenxn/protonmail-bridge'';
ExecStop = ''
${pkgs.podman}/bin/podman stop \
--ignore -t 10 \
--cidfile=%t/%n.ctr-id'';
ExecStopPost = ''
${pkgs.podman}/bin/podman rm \
-f \
--ignore -t 10 \
--cidfile=%t/%n.ctr-id'';
Type = "notify";
NotifyAccess = "all";
};
2024-01-30 14:21:50 +00:00
Install.WantedBy = ["default.target"];
};
2023-10-15 10:02:16 +01:00
davmail = lib.mkIf emailAccounts.outlook.mbsync.enable {
2023-10-01 09:17:45 +01:00
Unit = {
Description = "Davmail server";
2024-01-30 14:21:50 +00:00
Wants = ["network-online.target"];
After = ["network-online.target"];
2023-10-01 09:17:45 +01:00
};
Service = {
2024-01-30 14:21:50 +00:00
Environment = ["PATH=/run/current-system/sw/bin/:$PATH"];
2023-10-01 09:17:45 +01:00
Restart = "always";
ExecStartPre = with config.home; ''
2024-01-30 14:21:50 +00:00
/bin/sh -c "if [ ! -f ${homeDirectory}/.davmail.properties ]; then cp ${./.davmail.properties} ${homeDirectory}/.davmail.properties; fi; chmod 644 ${homeDirectory}/.davmail.properties"
'';
2024-01-30 14:21:50 +00:00
ExecStart = "${pkgs.davmail}/bin/davmail -notray ${config.home.homeDirectory}/.davmail.properties";
2023-10-01 09:17:45 +01:00
};
2024-01-30 14:21:50 +00:00
Install.WantedBy = ["default.target"];
2023-10-01 09:17:45 +01:00
};
};
}