From bcb80387265e9a3865c0dc346631690c8c4da606 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 27 Sep 2012 17:12:25 +0200 Subject: [PATCH] spamassassin: add option for running the spamd daemon in debug mode --- modules/services/mail/spamassassin.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/services/mail/spamassassin.nix b/modules/services/mail/spamassassin.nix index ecbb5dc3105..9e378ab0f20 100644 --- a/modules/services/mail/spamassassin.nix +++ b/modules/services/mail/spamassassin.nix @@ -21,6 +21,11 @@ in description = "Whether to run the SpamAssassin daemon."; }; + debug = mkOption { + default = false; + description = "Whether to run the SpamAssassin daemon in debug mode."; + }; + }; }; @@ -43,7 +48,7 @@ in description = "Spam Assassin Server"; startOn = "started networking and filesystem"; environment.TZ = config.time.timeZone; - exec = "${pkgs.spamassassin}/bin/spamd -D --username=spamd --pidfile=/var/run/spamd.pid"; + exec = "${pkgs.spamassassin}/bin/spamd ${optionalString cfg.debug "-D"} --username=spamd --pidfile=/var/run/spamd.pid"; }; };