diff options
author | Timotheus Pokorra (TBits.net) <tp@tbits.net> | 2014-08-19 15:11:29 +0200 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2014-08-19 22:53:00 +0200 |
commit | 1da7b81cebf9bb2fd9485e5af3f59ede9a31b4c0 (patch) | |
tree | 93a5525fb7c4b4f300580bcf96b85602df64c50c /pykolab/conf/defaults.py | |
parent | ee82a914da00c1f0133240abc4767ac01f4c27ea (diff) | |
download | pykolab-1da7b81cebf9bb2fd9485e5af3f59ede9a31b4c0.tar.gz |
Bug #2491: sleep time until new domains are created should be optionally set in configuration file
Diffstat (limited to 'pykolab/conf/defaults.py')
-rw-r--r-- | pykolab/conf/defaults.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pykolab/conf/defaults.py b/pykolab/conf/defaults.py index 56abe6c..06e5372 100644 --- a/pykolab/conf/defaults.py +++ b/pykolab/conf/defaults.py @@ -33,5 +33,8 @@ class Defaults(object): self.mail_attributes = ['mail', 'alias'] self.mailserver_attribute = 'mailhost' + # when you want a new domain to be added in a short time, you should reduce this value to 10 seconds + self.kolab_domain_sync_interval = 600 + self.kolab_default_locale = 'en_US' self.ldap_unique_attribute = 'nsuniqueid'
\ No newline at end of file |