From 8b87a338e32f5e0807c2bd95675ff2c64f3ca899 Mon Sep 17 00:00:00 2001 From: niten Date: Sun, 24 Sep 2023 10:52:57 -0700 Subject: [PATCH] Add selector option --- dkim.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dkim.nix b/dkim.nix index 5a56d22..ab39f4c 100644 --- a/dkim.nix +++ b/dkim.nix @@ -43,6 +43,12 @@ in { "List of domains to be considered local, and signed instead of verified."; }; + selector = mkOption { + type = str; + description = "Name to use for mail-signing keys."; + default = "mail"; + }; + port = mkOption { type = port; description = "Port at which to listen for incoming signing requests.";