summary refs log blame commit diff
path: root/nixos/modules/services/mail/mail.nix
blob: b7e1d295f2c59188d4d786097932bfbed69a1d25 (plain) (tree)
1
2
3
4
5
6
7
8
9
                           
 
         





                  
 
                     
 




















                                                                            
{ config, lib, pkgs, ... }:

with lib;

{

  ###### interface

  options = {

    services.mail = {

      sendmailSetuidWrapper = mkOption {
        default = null;
        description = ''
          Configuration for the sendmail setuid wrwapper (like an element of
          security.setuidOwners)";
        '';
      };

    };

  };

  ###### implementation

  config = mkIf (config.services.mail.sendmailSetuidWrapper != null) {

    security.setuidOwners = [ config.services.mail.sendmailSetuidWrapper ];

  };

}