diff options
Diffstat (limited to 'pykolab/conf/defaults.py')
-rw-r--r-- | pykolab/conf/defaults.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/pykolab/conf/defaults.py b/pykolab/conf/defaults.py index 3df9709..6dc5220 100644 --- a/pykolab/conf/defaults.py +++ b/pykolab/conf/defaults.py @@ -19,6 +19,7 @@ import logging + class Defaults(object): def __init__(self, plugins=None): self.loglevel = logging.CRITICAL @@ -33,10 +34,12 @@ 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 + # 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_timeout = 10 self.ldap_unique_attribute = 'nsuniqueid' - self.wallace_resource_calendar_expire_days = 100
\ No newline at end of file + self.wallace_resource_calendar_expire_days = 100 |