2020-06-13 03:11:00 +02:00
|
|
|
# NixOS module for configuring the simple SMTP relay.
|
2021-04-02 14:18:50 +02:00
|
|
|
{ depot, pkgs, config, lib, ... }:
|
2020-06-13 03:11:00 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
inherit (builtins) attrValues mapAttrs;
|
|
|
|
inherit (lib)
|
|
|
|
concatStringsSep
|
|
|
|
mkEnableOption
|
2020-07-01 01:23:14 +02:00
|
|
|
mkIf
|
2020-06-13 03:11:00 +02:00
|
|
|
mkOption
|
|
|
|
types
|
2022-01-01 14:38:14 +01:00
|
|
|
;
|
2020-06-13 03:11:00 +02:00
|
|
|
|
|
|
|
cfg = config.services.depot.smtprelay;
|
|
|
|
description = "Simple SMTP relay";
|
|
|
|
|
2022-01-01 14:38:14 +01:00
|
|
|
# Configuration values that are always overridden.
|
|
|
|
#
|
|
|
|
# - logging is pinned to stdout for journald compatibility
|
|
|
|
# - secret config is loaded through systemd's credential loading facility
|
2020-06-13 03:11:00 +02:00
|
|
|
overrideArgs = {
|
|
|
|
logfile = "";
|
2022-01-01 14:38:14 +01:00
|
|
|
config = "$CREDENTIALS_DIRECTORY/secrets";
|
2020-06-13 03:11:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
# Creates the command line argument string for the service.
|
|
|
|
prepareArgs = args:
|
|
|
|
concatStringsSep " "
|
2022-01-01 14:38:14 +01:00
|
|
|
(attrValues (mapAttrs (key: value: "-${key} \"${toString value}\"")
|
2020-06-13 03:11:00 +02:00
|
|
|
(args // overrideArgs)));
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.services.depot.smtprelay = {
|
|
|
|
enable = mkEnableOption description;
|
2022-01-01 14:38:14 +01:00
|
|
|
|
2020-06-13 03:11:00 +02:00
|
|
|
args = mkOption {
|
|
|
|
type = types.attrsOf types.str;
|
|
|
|
description = "Key value pairs for command line arguments";
|
|
|
|
};
|
2022-01-01 14:38:14 +01:00
|
|
|
|
|
|
|
secretsFile = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "/run/agenix/smtprelay";
|
|
|
|
};
|
2020-06-13 03:11:00 +02:00
|
|
|
};
|
|
|
|
|
2020-07-01 01:23:14 +02:00
|
|
|
config = mkIf cfg.enable {
|
2020-06-13 03:11:00 +02:00
|
|
|
systemd.services.smtprelay = {
|
|
|
|
inherit description;
|
2021-04-02 14:18:50 +02:00
|
|
|
script = "${depot.third_party.smtprelay}/bin/smtprelay ${prepareArgs cfg.args}";
|
2020-06-13 03:11:00 +02:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
|
|
|
|
serviceConfig = {
|
|
|
|
Restart = "always";
|
|
|
|
StateDirectory = "smtprelay";
|
|
|
|
DynamicUser = true;
|
2022-01-01 14:38:14 +01:00
|
|
|
LoadCredential = "secrets:${cfg.secretsFile}";
|
2020-06-13 03:11:00 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|