1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-18 15:39:46 +03:00
nixpkgs/nixos/modules/services/mail/mailhog.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

108 lines
2.5 KiB
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}:
let
cfg = config.services.mailhog;
2020-09-07 13:08:42 +08:00
args = lib.concatStringsSep " " (
[
"-api-bind-addr :${toString cfg.apiPort}"
"-smtp-bind-addr :${toString cfg.smtpPort}"
"-ui-bind-addr :${toString cfg.uiPort}"
"-storage ${cfg.storage}"
]
++ lib.optional (cfg.storage == "maildir") "-maildir-path $STATE_DIRECTORY"
2020-09-07 13:08:42 +08:00
++ cfg.extraArgs
);
mhsendmail = pkgs.writeShellScriptBin "mailhog-sendmail" ''
exec ${lib.getExe pkgs.mailhog} sendmail $@
'';
2020-09-07 13:08:42 +08:00
in
{
###### interface
2020-09-07 13:08:42 +08:00
imports = [
(lib.mkRemovedOptionModule [
"services"
"mailhog"
"user"
] "")
2020-09-07 13:08:42 +08:00
];
options = {
services.mailhog = {
enable = lib.mkEnableOption "MailHog, web and API based SMTP testing";
2020-09-07 13:08:42 +08:00
setSendmail = lib.mkEnableOption "set the system sendmail to mailhogs's" // {
default = true;
};
storage = lib.mkOption {
type = lib.types.enum [
"maildir"
"memory"
];
2020-09-07 13:08:42 +08:00
default = "memory";
description = "Store mails on disk or in memory.";
};
apiPort = lib.mkOption {
type = lib.types.port;
2020-09-07 13:08:42 +08:00
default = 8025;
description = "Port on which the API endpoint will listen.";
};
smtpPort = lib.mkOption {
type = lib.types.port;
2020-09-07 13:08:42 +08:00
default = 1025;
description = "Port on which the SMTP endpoint will listen.";
};
uiPort = lib.mkOption {
type = lib.types.port;
2020-09-07 13:08:42 +08:00
default = 8025;
description = "Port on which the HTTP UI will listen.";
};
extraArgs = lib.mkOption {
type = lib.types.listOf lib.types.str;
default = [ ];
2020-09-07 13:08:42 +08:00
description = "List of additional arguments to pass to the MailHog process.";
};
};
};
###### implementation
config = lib.mkIf cfg.enable {
systemd.services.mailhog = {
2020-09-07 13:08:42 +08:00
description = "MailHog - Web and API based SMTP testing";
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
2020-09-07 13:08:42 +08:00
Type = "exec";
ExecStart = "${lib.getExe pkgs.mailhog} ${args}";
2020-09-07 13:08:42 +08:00
DynamicUser = true;
Restart = "on-failure";
StateDirectory = "mailhog";
};
};
services.mail.sendmailSetuidWrapper = lib.mkIf cfg.setSendmail {
program = "sendmail";
source = lib.getExe mhsendmail;
# Communication happens through the network, no data is written to disk
owner = "nobody";
group = "nogroup";
};
};
meta.maintainers = with lib.maintainers; [ RTUnreal ];
}