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
|
@ -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