Configurable sieve script directory

This commit is contained in:
Henri Menke 2020-11-21 14:18:40 +01:00
parent ee1ad50830
commit c00fc587f5
No known key found for this signature in database
GPG key ID: FB7AD61E3D806382
3 changed files with 24 additions and 16 deletions

View file

@ -452,6 +452,14 @@ in
'';
};
sieveDirectory = mkOption {
type = types.path;
default = "/var/sieve";
description = ''
Where to store the sieve scripts.
'';
};
virusScanning = mkOption {
type = types.bool;
default = false;