mirror of
https://gitlab.com/simple-nixos-mailserver/nixos-mailserver.git
synced 2024-11-11 19:39:16 +05:00
add virus scanning
This commit is contained in:
parent
f51811b236
commit
7d4809038f
@ -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
|
||||
|
@ -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
23
mail-server/clamav.nix
Normal 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;
|
||||
}
|
||||
|
@ -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
|
||||
|
@ -21,7 +21,7 @@ let
|
||||
then
|
||||
''
|
||||
clamav {
|
||||
servers = /var/run/clamav/clam.ctl;
|
||||
servers = /var/run/clamav/clamd.ctl;
|
||||
};
|
||||
''
|
||||
else "";
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user