46 lines
770 B
Nix
46 lines
770 B
Nix
{ config, pkgs, ... }:
|
|
|
|
with pkgs.lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.spamassassin;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
services.spamassassin = {
|
|
|
|
enable = mkOption {
|
|
default = false;
|
|
description = "Whether to run the SpamAssassin daemon.";
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
###### implementation
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
# Allow users to run 'spamc'.
|
|
environment.systemPackages = [ pkgs.spamassassin ];
|
|
|
|
jobs.spamd = {
|
|
description = "Spam Assassin Server";
|
|
startOn = "started networking and filesystem";
|
|
environment.TZ = config.time.timeZone;
|
|
exec = "${pkgs.spamassassin}/bin/spamd -C /etc/spamassassin/init.pre --siteconfigpath=/etc/spamassassin --debug --pidfile=/var/run/spamd.pid";
|
|
};
|
|
|
|
};
|
|
|
|
}
|