2018-08-06 12:02:49 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.msmtp;
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
msmtpAccounts =
|
|
|
|
filter (a: a.msmtp.enable) (attrValues config.accounts.email.accounts);
|
2018-08-06 12:02:49 +02:00
|
|
|
|
|
|
|
onOff = p: if p then "on" else "off";
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
accountStr = account:
|
|
|
|
with account;
|
|
|
|
concatStringsSep "\n" ([ "account ${name}" ]
|
|
|
|
++ mapAttrsToList (n: v: n + " " + v) ({
|
|
|
|
host = smtp.host;
|
|
|
|
from = address;
|
|
|
|
auth = "on";
|
|
|
|
user = userName;
|
|
|
|
tls = onOff smtp.tls.enable;
|
|
|
|
tls_starttls = onOff smtp.tls.useStartTls;
|
|
|
|
tls_trust_file = smtp.tls.certificatesFile;
|
|
|
|
} // optionalAttrs (msmtp.tls.fingerprint != null) {
|
|
|
|
tls_fingerprint = msmtp.tls.fingerprint;
|
|
|
|
} // optionalAttrs (smtp.port != null) { port = toString smtp.port; }
|
2018-08-06 12:02:49 +02:00
|
|
|
// optionalAttrs (passwordCommand != null) {
|
|
|
|
# msmtp requires the password to finish with a newline.
|
2020-02-02 00:39:17 +01:00
|
|
|
passwordeval =
|
|
|
|
''${pkgs.bash}/bin/bash -c "${toString passwordCommand}; echo"'';
|
|
|
|
} // msmtp.extraConfig) ++ optional primary ''
|
|
|
|
|
|
|
|
account default : ${name}'');
|
2018-08-06 12:02:49 +02:00
|
|
|
|
|
|
|
configFile = mailAccounts: ''
|
|
|
|
# Generated by Home Manager.
|
|
|
|
|
|
|
|
${cfg.extraConfig}
|
|
|
|
|
|
|
|
${concatStringsSep "\n\n" (map accountStr mailAccounts)}
|
|
|
|
'';
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
in {
|
2018-08-06 12:02:49 +02:00
|
|
|
|
|
|
|
options = {
|
|
|
|
programs.msmtp = {
|
|
|
|
enable = mkEnableOption "msmtp";
|
|
|
|
|
|
|
|
extraConfig = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
Extra configuration lines to add to <filename>~/.msmtprc</filename>.
|
|
|
|
See <link xlink:href="https://marlam.de/msmtp/msmtprc.txt"/> for examples.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
2020-06-16 00:45:20 +02:00
|
|
|
|
|
|
|
accounts.email.accounts = mkOption {
|
|
|
|
type = with types; attrsOf (submodule (import ./msmtp-accounts.nix));
|
|
|
|
};
|
2018-08-06 12:02:49 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home.packages = [ pkgs.msmtp ];
|
|
|
|
|
2019-02-10 17:53:33 +01:00
|
|
|
xdg.configFile."msmtp/config".text = configFile msmtpAccounts;
|
2018-08-06 12:02:49 +02:00
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
home.sessionVariables = {
|
2018-08-06 12:02:49 +02:00
|
|
|
MSMTP_QUEUE = "${config.xdg.dataHome}/msmtp/queue";
|
|
|
|
MSMTP_LOG = "${config.xdg.dataHome}/msmtp/queue.log";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|