about summary refs log tree commit diff
path: root/labernix/modules/services/postfix/restrictions.nix
blob: fbb47f106c89c6f5f6dd5c951052e562d59034d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{ config, lib, ... }:

with lib;

let
  mkRestriction = name: specificDescription: {
    option.${name} = mkOption {
      default = null;
      type = types.nullOr types.list;
      description = ''
        A list of restrictions to apply or <option>null</option> to use the
        built-in default value from Postfix.
        ${specificDescription}
      '';
    };
    config = let
      cfg = config.labernix.postfix.restrictions.${name};
    in mkIf (cfg != null) ''
      smtpd_${name}_restrictions = ${concatStringsSep ", " cfg}
    '';
  };
  restrictions = mapAttrsToList mkRestriction {
    client = mkRestriction ''
      SMTP server access restrictions in the context of a client SMTP connection
      request.
    '';
    data = mkRestriction ''
      Access restrictions that the Postfix SMTP server applies in the context of
      the SMTP DATA command.
    '';
    end_of_data = mkRestriction ''
      Access restrictions that the Postfix SMTP server applies in the context of
      the SMTP END-OF-DATA command.
    '';
    etrn = mkRestriction ''
      SMTP server access restrictions in the context of a client ETRN request.
    '';
    helo = mkRestriction ''
      Restrictions that the Postfix SMTP server applies in the context of the
      SMTP HELO command.
    '';
    recipient = mkRestriction ''
      Access restrictions that the Postfix SMTP server applies in the context of
      the RCPT TO command.
    '';
    sender = mkRestriction ''
      Restrictions that the Postfix SMTP server applies in the context of the
      MAIL FROM command.
    '';
  };
in {
  options.labernix.postfix.restrictions = mapAttrs mkRestriction restrictions;
}