Disabled scanning of incoming mails for phishing attempts

This commit is contained in:
Philipp Dörfler 2018-06-09 09:10:18 +00:00
parent 68232ddf87
commit 92238c61f6

View File

@ -23,6 +23,10 @@ in
config = lib.mkIf cfg.virusScanning {
services.clamav.daemon.enable = true;
services.clamav.updater.enable = true;
services.clamav.daemon.extraConfig = ''
PhishingScanURLs no
'';
};
}