From 69536af27e86a9fc875d71cb9566ccccf47b5b60 Mon Sep 17 00:00:00 2001 From: NomisIV <47303199+NomisIV@users.noreply.github.com> Date: Mon, 21 Feb 2022 22:32:32 +0100 Subject: [PATCH] himalaya: fix smtp-starttls option (#2744) The `smtp-starttls` option was previously to the value of `account.imap.tls.useStartTls`, when `account.smtp.tls.useStartTls` should be used instead --- modules/programs/himalaya.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/programs/himalaya.nix b/modules/programs/himalaya.nix index f4a0ffb3..f7864c1e 100644 --- a/modules/programs/himalaya.nix +++ b/modules/programs/himalaya.nix @@ -26,7 +26,7 @@ let smtp-passwd-cmd = lib.escapeShellArgs account.passwordCommand; smtp-host = account.smtp.host; smtp-port = account.smtp.port; - smtp-starttls = account.imap.tls.useStartTls; + smtp-starttls = account.smtp.tls.useStartTls; } // (lib.optionalAttrs (account.signature.showSignature == "append") { # FIXME: signature cannot be attached signature = account.signature.text;