From 37b28e05d7c119623f28605659e075fc7d79d400 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Tue, 15 Feb 2022 19:19:25 -0800 Subject: [PATCH] email: Drop mentions of clamav as it is too memory intensive A fresh install of clamav-daemon takes up about 1GiB or RAM. Most of this is the virus signature database and is used regularly for a scan. This makes ClamAV unsuitable for FreedomBox running on many single board computers. Drop ClamAV until we start recommending/requiring at least 2GiB of RAM. Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- plinth/modules/email/__init__.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/plinth/modules/email/__init__.py b/plinth/modules/email/__init__.py index 44db24be7..1a743a27c 100644 --- a/plinth/modules/email/__init__.py +++ b/plinth/modules/email/__init__.py @@ -21,14 +21,11 @@ from plinth.signals import domain_added, domain_removed from . import audit, manifest -clamav_packages = ['clamav', 'clamav-daemon'] -clamav_daemons = ['clamav-daemon', 'clamav-freshclam'] - _description = [ _('This is a complete email server solution using Postfix, Dovecot, ' - 'Rspamd and ClamAV. Postfix sends and receives emails. Dovecot allows ' + 'and Rspamd. Postfix sends and receives emails. Dovecot allows ' 'email clients to access your mailbox using IMAP and POP3. Rspamd deals ' - 'with spam. ClamAV identifies viruses and malware.'), + 'with spam.'), _('Roundcube app provides web ' 'interface for users to access email.'), _('During installation, any other email servers in the system will be '