add virus scanning
This commit is contained in:
parent
f51811b236
commit
7d4809038f
|
@ -22,7 +22,7 @@
|
||||||
- [x] scans emails
|
- [x] scans emails
|
||||||
- [ ] Dovecot moves spam to spam folder (to check)
|
- [ ] Dovecot moves spam to spam folder (to check)
|
||||||
* Virus Scanning
|
* Virus Scanning
|
||||||
- [ ] TODO: Implement
|
- [x] Checks incoming mail for viruses
|
||||||
* DKIM Signing
|
* DKIM Signing
|
||||||
- [ ] TODO: Implement
|
- [ ] TODO: Implement
|
||||||
* User Management
|
* User Management
|
||||||
|
|
|
@ -123,9 +123,8 @@ let
|
||||||
#
|
#
|
||||||
# Whether to activate virus scanning. Note that virus scanning is _very_
|
# Whether to activate virus scanning. Note that virus scanning is _very_
|
||||||
# expensive memory wise.
|
# expensive memory wise.
|
||||||
# TODO: Implement
|
|
||||||
#
|
#
|
||||||
virus_scanning = false;
|
virus_scanning = true;
|
||||||
|
|
||||||
#
|
#
|
||||||
# Whether to activate dkim signing.
|
# Whether to activate dkim signing.
|
||||||
|
|
|
@ -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
|
disable_vrfy_command = yes
|
||||||
message_size_limit = 20971520
|
message_size_limit = 20971520
|
||||||
|
|
||||||
milter_rcpt_macros = i {rcpt_addr}
|
|
||||||
|
|
||||||
# virtual mail system
|
# virtual mail system
|
||||||
virtual_uid_maps = static:5000
|
virtual_uid_maps = static:5000
|
||||||
virtual_gid_maps = static:5000
|
virtual_gid_maps = static:5000
|
||||||
|
|
|
@ -21,7 +21,7 @@ let
|
||||||
then
|
then
|
||||||
''
|
''
|
||||||
clamav {
|
clamav {
|
||||||
servers = /var/run/clamav/clam.ctl;
|
servers = /var/run/clamav/clamd.ctl;
|
||||||
};
|
};
|
||||||
''
|
''
|
||||||
else "";
|
else "";
|
||||||
|
|
|
@ -51,4 +51,8 @@ in
|
||||||
inherit vmail_group_name vmail_user_name mail_dir enable_imap
|
inherit vmail_group_name vmail_user_name mail_dir enable_imap
|
||||||
enable_pop3 cert key;
|
enable_pop3 cert key;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
clamav = import ./clamav.nix {
|
||||||
|
inherit virus_scanning;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue