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

34 lines
485 B
Nix
Raw Normal View History

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