Fix typo in msmtp config

This commit is contained in:
Evie Litherland-Smith 2023-10-03 09:24:43 +01:00
parent 6c63148774
commit c7ee2840fb

View file

@ -147,10 +147,12 @@
subFolders = "Verbatim";
extraConfig.account.AuthMechs = "LOGIN";
};
msmtp.extraConfig = {
msmtp = {
enable = lib.mkDefault accountEnabled;
tls = "off";
auth = "login";
extraConfig = {
tls = "off";
auth = "login";
};
};
mu.enable = lib.mkDefault accountEnabled;
};