1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-12 01:33:40 +02: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:
Jos van Bakel 2020-12-09 09:22:00 +01:00 committed by GitHub
parent 275d1b5212
commit e3828769e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,9 +26,8 @@ let
tls_fingerprint = msmtp.tls.fingerprint;
} // optionalAttrs (smtp.port != null) { port = toString smtp.port; }
// optionalAttrs (passwordCommand != null) {
# msmtp requires the password to finish with a newline.
passwordeval =
''${pkgs.bash}/bin/bash -c "${toString passwordCommand}; echo"'';
''${pkgs.bash}/bin/bash -c "${toString passwordCommand}"'';
} // msmtp.extraConfig) ++ optional primary ''
account default : ${name}'');