From 678ca1a9d17a3b4056e1e73efd57bcea1ae584d3 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Mon, 21 Nov 2022 11:19:05 -0800 Subject: [PATCH] email: Fix creation of aliases for security@ and usenet@ Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- plinth/modules/email/aliases.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plinth/modules/email/aliases.py b/plinth/modules/email/aliases.py index 425f63bd9..ee4823752 100644 --- a/plinth/modules/email/aliases.py +++ b/plinth/modules/email/aliases.py @@ -96,8 +96,8 @@ def setup_common_aliases(username): """ aliases = [ 'mailer-daemon', 'postmaster', 'nobody', 'webmaster', 'www', - 'hostmaster', 'info', 'support', 'abuse', 'noc', 'security' - 'usenet', 'news', 'ftp' + 'hostmaster', 'info', 'support', 'abuse', 'noc', 'security', 'usenet', + 'news', 'ftp' ] for alias in aliases: if not exists(alias):