mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
msmtp: fix passwordeval (#1643)
msmtp fails with broken pipe error when sending emails. The new line after the password is not required anymore since msmtp 1.8.0.
This commit is contained in:
parent
275d1b5212
commit
e3828769e8
1 changed files with 1 additions and 2 deletions
|
@ -26,9 +26,8 @@ let
|
||||||
tls_fingerprint = msmtp.tls.fingerprint;
|
tls_fingerprint = msmtp.tls.fingerprint;
|
||||||
} // optionalAttrs (smtp.port != null) { port = toString smtp.port; }
|
} // optionalAttrs (smtp.port != null) { port = toString smtp.port; }
|
||||||
// optionalAttrs (passwordCommand != null) {
|
// optionalAttrs (passwordCommand != null) {
|
||||||
# msmtp requires the password to finish with a newline.
|
|
||||||
passwordeval =
|
passwordeval =
|
||||||
''${pkgs.bash}/bin/bash -c "${toString passwordCommand}; echo"'';
|
''${pkgs.bash}/bin/bash -c "${toString passwordCommand}"'';
|
||||||
} // msmtp.extraConfig) ++ optional primary ''
|
} // msmtp.extraConfig) ++ optional primary ''
|
||||||
|
|
||||||
account default : ${name}'');
|
account default : ${name}'');
|
||||||
|
|
Loading…
Reference in a new issue