From 491452f326f5d413bc19e3129d3b4477bf78f453 Mon Sep 17 00:00:00 2001 From: Georg Date: Thu, 3 Jun 2021 05:42:21 +0200 Subject: Version 1 - Added basic error handling - Decided to keep Debug block: - moved it to the bottom - hardcoded my hostmask - Changed server config variable to Private - Changed access config variable's help text --- config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'config.py') diff --git a/config.py b/config.py index ed3fbc3..dbdbbcd 100644 --- a/config.py +++ b/config.py @@ -68,7 +68,7 @@ registry.String('', """ Your Mailcow server \(https://example.com\) """ -, private=False +, private=True )) conf.registerGroup(Mailcow, 'access') @@ -76,7 +76,7 @@ conf.registerGroup(Mailcow, 'access') conf.registerGlobalValue(Mailcow.access, 'read', registry.CommaSeparatedListOfStrings('', """ -Nicknames to grant Read-Only access +Hostmasks to grant Read-Only access """ , private=True )) @@ -84,7 +84,7 @@ Nicknames to grant Read-Only access conf.registerGlobalValue(Mailcow.access, 'write', registry.CommaSeparatedListOfStrings('', """ -Nicknames to grant Write access +Hostmasks to grant Write access """ , private=True )) -- cgit v1.2.3