sogo_timezone added. sogo_ldap_bind_dn/sogo_ldap_bind_password are optional.
This commit is contained in:
parent
a1c6d89f1c
commit
0b0f55262d
|
@ -5,3 +5,4 @@ sogo_submission_server: 'smtp://localhost:587/?tls=YES&tlsVerifyMode=allowInsecu
|
||||||
sogo_imap_server: 'imap://localhost:143/'
|
sogo_imap_server: 'imap://localhost:143/'
|
||||||
sogo_sieve_server: 'sieve://localhost:4190/'
|
sogo_sieve_server: 'sieve://localhost:4190/'
|
||||||
sogo_ldap_server: 'ldapi://'
|
sogo_ldap_server: 'ldapi://'
|
||||||
|
sogo_timezone: UTC
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
SOGoMailingMechanism = smtp;
|
SOGoMailingMechanism = smtp;
|
||||||
SOGoSMTPServer = "{{sogo_submission_server}}";
|
SOGoSMTPServer = "{{sogo_submission_server}}";
|
||||||
SOGoSMTPAuthenticationType = PLAIN;
|
SOGoSMTPAuthenticationType = PLAIN;
|
||||||
SOGoTimeZone = UTC;
|
SOGoTimeZone = {{sogo_timezone}};
|
||||||
SOGoSentFolderName = INBOX;
|
SOGoSentFolderName = INBOX;
|
||||||
SOGoTrashFolderName = Trash;
|
SOGoTrashFolderName = Trash;
|
||||||
SOGoDraftsFolderName = Drafts;
|
SOGoDraftsFolderName = Drafts;
|
||||||
|
@ -37,10 +37,10 @@
|
||||||
IDFieldName = mail;
|
IDFieldName = mail;
|
||||||
UIDFieldName = mail;
|
UIDFieldName = mail;
|
||||||
baseDN = "{{sogo_ldap_base_dn}}";
|
baseDN = "{{sogo_ldap_base_dn}}";
|
||||||
{% if sogo_ldap_bind_dn %}
|
{% if sogo_ldap_bind_dn is defined %}
|
||||||
bindDN = "{{sogo_ldap_bind_dn}}";
|
bindDN = "{{sogo_ldap_bind_dn}}";
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if sogo_ldap_bind_password %}
|
{% if sogo_ldap_bind_password is defined %}
|
||||||
bindPassword = "{{sogo_ldap_bind_password}}";
|
bindPassword = "{{sogo_ldap_bind_password}}";
|
||||||
{% endif %}
|
{% endif %}
|
||||||
canAuthenticate = YES;
|
canAuthenticate = YES;
|
||||||
|
@ -56,10 +56,10 @@
|
||||||
IDFieldName = mail;
|
IDFieldName = mail;
|
||||||
UIDFieldName = mail;
|
UIDFieldName = mail;
|
||||||
baseDN = "{{sogo_ldap_base_dn}}";
|
baseDN = "{{sogo_ldap_base_dn}}";
|
||||||
{% if sogo_ldap_bind_dn %}
|
{% if sogo_ldap_bind_dn is defined %}
|
||||||
bindDN = "{{sogo_ldap_bind_dn}}";
|
bindDN = "{{sogo_ldap_bind_dn}}";
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if sogo_ldap_bind_password %}
|
{% if sogo_ldap_bind_password is defined %}
|
||||||
bindPassword = "{{sogo_ldap_bind_password}}";
|
bindPassword = "{{sogo_ldap_bind_password}}";
|
||||||
{% endif %}
|
{% endif %}
|
||||||
canAuthenticate = NO;
|
canAuthenticate = NO;
|
||||||
|
|
Loading…
Reference in a new issue