From 98f90f71e2cf02b647f73b886d52f62b3aef6461 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charlotte=20=F0=9F=A6=9D=20Delenk?= Date: Mon, 11 Nov 2024 14:09:33 +0100 Subject: [PATCH] fix ports for thunderbird --- programs/desktop/pim/email.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/programs/desktop/pim/email.nix b/programs/desktop/pim/email.nix index 2797071a..d6c01bc2 100644 --- a/programs/desktop/pim/email.nix +++ b/programs/desktop/pim/email.nix @@ -2,7 +2,10 @@ { accounts.email.accounts.lotte = { address = "lotte@chir.rs"; - imap.host = "imappro.zoho.eu"; + imap = { + host = "imappro.zoho.eu"; + port = 993; + }; imapnotify = { enable = true; onNotify = "${pkgs.isync}/bin/mbsync test-%s"; @@ -31,7 +34,10 @@ config.sops.secrets."accounts/email/accounts/lotte/password".path ]; realName = "Charlotte 🦝 Delenk"; - smtp.host = "smtppro.zoho.eu"; + smtp = { + host = "smtppro.zoho.eu"; + port = 465; + }; thunderbird.enable = true; userName = "lotte@chir.rs"; primary = true;