add virus scanning

This commit is contained in:
Robin Raymond 2017-08-13 21:51:07 +02:00
parent f51811b236
commit 7d4809038f
6 changed files with 30 additions and 6 deletions

View File

@ -22,7 +22,7 @@
- [x] scans emails
- [ ] Dovecot moves spam to spam folder (to check)
* Virus Scanning
- [ ] TODO: Implement
- [x] Checks incoming mail for viruses
* DKIM Signing
- [ ] TODO: Implement
* User Management

View File

@ -123,9 +123,8 @@ let
#
# Whether to activate virus scanning. Note that virus scanning is _very_
# expensive memory wise.
# TODO: Implement
#
virus_scanning = false;
virus_scanning = true;
#
# Whether to activate dkim signing.

23
mail-server/clamav.nix Normal file
View File

@ -0,0 +1,23 @@
# nixos-mailserver: a simple mail server
# Copyright (C) 2016-2017 Robin Raymond
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>
{ virus_scanning }:
{
daemon.enable = virus_scanning;
updater.enable = virus_scanning;
}

View File

@ -61,8 +61,6 @@ in
disable_vrfy_command = yes
message_size_limit = 20971520
milter_rcpt_macros = i {rcpt_addr}
# virtual mail system
virtual_uid_maps = static:5000
virtual_gid_maps = static:5000

View File

@ -21,7 +21,7 @@ let
then
''
clamav {
servers = /var/run/clamav/clam.ctl;
servers = /var/run/clamav/clamd.ctl;
};
''
else "";

View File

@ -51,4 +51,8 @@ in
inherit vmail_group_name vmail_user_name mail_dir enable_imap
enable_pop3 cert key;
};
clamav = import ./clamav.nix {
inherit virus_scanning;
};
}