mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 11:39:46 +01:00
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
This commit is contained in:
parent
b3af91d293
commit
69536af27e
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ let
|
||||||
smtp-passwd-cmd = lib.escapeShellArgs account.passwordCommand;
|
smtp-passwd-cmd = lib.escapeShellArgs account.passwordCommand;
|
||||||
smtp-host = account.smtp.host;
|
smtp-host = account.smtp.host;
|
||||||
smtp-port = account.smtp.port;
|
smtp-port = account.smtp.port;
|
||||||
smtp-starttls = account.imap.tls.useStartTls;
|
smtp-starttls = account.smtp.tls.useStartTls;
|
||||||
} // (lib.optionalAttrs (account.signature.showSignature == "append") {
|
} // (lib.optionalAttrs (account.signature.showSignature == "append") {
|
||||||
# FIXME: signature cannot be attached
|
# FIXME: signature cannot be attached
|
||||||
signature = account.signature.text;
|
signature = account.signature.text;
|
||||||
|
|
Loading…
Reference in a new issue