summaryrefslogtreecommitdiffstats
path: root/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/default.nix b/default.nix
index bf86e19..f46f1a4 100644
--- a/default.nix
+++ b/default.nix
@@ -44,6 +44,13 @@ in
description = "The domains that this mail server serves.";
};
+ certificateDomains = mkOption {
+ type = types.listOf types.str;
+ example = [ "imap.example.com" "pop3.example.com" ];
+ default = [];
+ description = "Secondary domains and subdomains for which it is necessary to generate a certificate.";
+ };
+
messageSizeLimit = mkOption {
type = types.int;
example = 52428800;