mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
34 lines
491 B
Nix
34 lines
491 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
services.mail = {
|
|
|
|
sendmailSetuidWrapper = mkOption {
|
|
default = null;
|
|
internal = true;
|
|
description = ''
|
|
Configuration for the sendmail setuid wapper.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
###### implementation
|
|
|
|
config = mkIf (config.services.mail.sendmailSetuidWrapper != null) {
|
|
|
|
security.wrappers.sendmail = config.services.mail.sendmailSetuidWrapper;
|
|
|
|
};
|
|
|
|
}
|