nixpkgs/nixos/modules/services/mail/mail.nix

34 lines
493 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
{
###### interface
options = {
services.mail = {
sendmailSetuidWrapper = mkOption {
default = null;
2016-03-25 16:08:20 +01:00
internal = true;
description = ''
2016-03-25 16:08:20 +01:00
Configuration for the sendmail setuid wapper.
'';
};
};
};
###### implementation
config = mkIf (config.services.mail.sendmailSetuidWrapper != null) {
2017-01-29 05:48:03 +01:00
security.wrappers.setuid = [ config.services.mail.sendmailSetuidWrapper ];
};
}