summaryrefslogtreecommitdiffstats
path: root/config.py
diff options
context:
space:
mode:
authorGeorg2021-06-03 05:42:21 +0200
committerGeorg2021-06-03 05:42:21 +0200
commit491452f326f5d413bc19e3129d3b4477bf78f453 (patch)
tree32263d8e45d8a97924e5d725589fac2e6372fa33 /config.py
parenteda43f1d3cb0ecd5682d5073c547d37228531c32 (diff)
downloadmailcow-491452f326f5d413bc19e3129d3b4477bf78f453.tar.gz
mailcow-491452f326f5d413bc19e3129d3b4477bf78f453.tar.bz2
mailcow-491452f326f5d413bc19e3129d3b4477bf78f453.zip
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
Diffstat (limited to 'config.py')
-rw-r--r--config.py6
1 files changed, 3 insertions, 3 deletions
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
))