base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / nixos / modules / services / mail / mailcatcher.nix
blob6728bbcd3b8e25e4dc3a746f072a574bb66b602a
1 { config, pkgs, lib, ... }:
3 let
4   cfg = config.services.mailcatcher;
6   inherit (lib) mkEnableOption mkIf mkOption types optionalString;
7 in
9   # interface
11   options = {
13     services.mailcatcher = {
14       enable = mkEnableOption "MailCatcher, an SMTP server and web interface to locally test outbound emails";
16       http.ip = mkOption {
17         type = types.str;
18         default = "127.0.0.1";
19         description = "The ip address of the http server.";
20       };
22       http.port = mkOption {
23         type = types.port;
24         default = 1080;
25         description = "The port address of the http server.";
26       };
28       http.path = mkOption {
29         type = with types; nullOr str;
30         default = null;
31         description = "Prefix to all HTTP paths.";
32         example = "/mailcatcher";
33       };
35       smtp.ip = mkOption {
36         type = types.str;
37         default = "127.0.0.1";
38         description = "The ip address of the smtp server.";
39       };
41       smtp.port = mkOption {
42         type = types.port;
43         default = 1025;
44         description = "The port address of the smtp server.";
45       };
46     };
48   };
50   # implementation
52   config = mkIf cfg.enable {
53     environment.systemPackages = [ pkgs.mailcatcher ];
55     systemd.services.mailcatcher = {
56       description = "MailCatcher Service";
57       after = [ "network.target" ];
58       wantedBy = [ "multi-user.target" ];
60       serviceConfig = {
61         DynamicUser = true;
62         Restart = "always";
63         ExecStart = "${pkgs.mailcatcher}/bin/mailcatcher --foreground --no-quit --http-ip ${cfg.http.ip} --http-port ${toString cfg.http.port} --smtp-ip ${cfg.smtp.ip} --smtp-port ${toString cfg.smtp.port}" + optionalString (cfg.http.path != null) " --http-path ${cfg.http.path}";
64         AmbientCapabilities = optionalString (cfg.http.port < 1024 || cfg.smtp.port < 1024) "cap_net_bind_service";
65       };
66     };
67   };