diff options
| author | Georg | 2021-06-03 05:42:21 +0200 |
|---|---|---|
| committer | Georg | 2021-06-03 05:42:21 +0200 |
| commit | 491452f326f5d413bc19e3129d3b4477bf78f453 (patch) | |
| tree | 32263d8e45d8a97924e5d725589fac2e6372fa33 /config.py | |
| parent | eda43f1d3cb0ecd5682d5073c547d37228531c32 (diff) | |
| download | mailcow-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.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 )) |
