Merge pull request #130 from phdoerfler/clamav-phishing

Disabled scanning of incoming mails for phishing attempts
This commit is contained in:
Robin Raymond 2018-06-09 15:17:18 +02:00 committed by GitHub
commit cfb8353f1a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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
'';
};
}