Re: [SOGo] Survey - Who uses SOGo (and why not exchange)

2015-07-17 Thread Peter Beck
Hi there,

we are currently using Zarafa for us and our customers for about 3 years.

In general it was running but I never was happy as there are a few
closed source parts in Zarafa. Not because of the price (it's not
expensive).
The Outlook client often has issues (mostly shared calenders not
showing) after Windows-Updates. Usually you need to wait a few days
until there is a working release available from Zarafa.
Other than that, Users usually never had an issue using Outlook as it
looked like it was connected to Exchange for them expect an additional
Zarafa tab.

There is no carddav support by default, you have to integrate it
yourself with sabre-zarafa, a plugin (not from Zarafa). The
xmpp-Implementation never really worked. It just works if the
lefthandside of your mail is also your xmpp login. The webapp is quiet
slow and (imho) ugly, as they try to rebuild Outlook in the Browser a
little bit...

The updates were usually painless and without issues, but since their
announcement about stopping the outlook client, i think the complete
quality is not the same anymore. Outlook support was the main reason we
were running Zarafa, as most of our customers use Outlook. But since
that decision, we think there are better solutions.

For me the main reasons for SOGo are:

*) if you use MAPI you don't need buggy connectors
*) multiple users from different sources (LDAP, SQL) are easy to
implement if you have to
*) a real, proven IMAP Server can be used (Zarafa has it's own,
feature-less IMAP-Server, we love Dovecot)
*) Thunderbird Plugin seem to work quiet well and can replace outlook in
my opinion
*) easy integrated backup and restore mechanisms
*) great clean webinterface with good features, but not useless things.
*) in the debian repos (mostly, if you don't need openchange)
*) completely free software but there is support from inverse if you need
*) upgrading (seems to be) easy and without issues

We think about not using openchange for these reasons:

*) you have to use the inverse samba package, so no repository package
anymore
*) openchange seems to have still issues and we believe we'll never get
happy to provide half of an exchange, so we try to convince our
customers to use something that is working ;-) (please correct me if I
am wrong)
*) keep it simple... (imap, card- and caldav is something other clients
can do as well)

What I would love to see in SOGo is an integration of Owncloud in the
Webmail, that would be nice and handy to store/attach files to messages.

Regards Peter
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] how exclude a mail address from global address list

2015-07-17 Thread Yavuz Maşlak


On 15/07/15 18:16, Christian M. Jensen cmjscrip...@yahoo.com wrote:

Hi,

On 15-07-2015 16:56, Yavuz Maşlak wrote:

 On 15/07/15 16:25, Francis Lachapelle flachape...@inverse.ca wrote:

 Hello Yavuz

 On Jul 15, 2015, at 3:23 AM, Yavuz Maşlak yavuz.mas...@ihlas.com.tr
 wrote:


 i have 3 domains  ( for example  a.com  b.comc.com ).

 Users of A.com  and b.com  can see eachother but c.com
 C.com ¹s users can only see eachother but other domains.

 How can i do that ?

 Could you give me an example?
 This should do it:

 SOGoDomainsVisibility = ( (a.com, b.com), (c.com) );


 Francis--
 users@sogo.nu
 https://inverse.ca/sogo/lists
 I tried now. Unfortunately, it does not work.
 Whan can be the problem ?


How do you define your domains in SOGo configuration?

if your just set all your configuration in  'SOGoUserSources' then SOGo
has no way of detecting what user source belong to what domain
but if you use the 'Domains' value then 'SOGoDomainsVisibility' will
work as expected

using the domain parameter:

  domains = {
 domain.com = {
 SOGoMailDomain = domain.com;
 SOGoSuperUsernames = (
 postmas...@domain.com
 );
 SOGoUserSources = (
 {
 type = sql;
 id = sql-auth;
 isAddressBook = NO;
 .
 },
 {
 type = sql;
 id = sql_addressbook;
 isAddressBook = YES;
 .
 }
 );
 };
 domain1.com = {
 SOGoMailDomain = domain1.com;
 SOGoSuperUsernames = (
 postmas...@domain1.com
 );
 SOGoUserSources = (
 {
 type = ldap;
 id = ldap_auth;
 isAddressBook = NO;
 .
 },
 {
 type = ldap;
 id = ldap_addressbook;
 isAddressBook = YES;
 .
 }
 );
 };
};


Regards
Christian Jensen
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Hi

Does ldap id have to be different for every domain in Sogousersources?
SOGoDomainsVisibility does not work in my conf.


My sogo.conf;
###
{
SOGoDebugRequests = YES;
 LDAPDebugEnabled = YES;
SOGoEASDebugEnabled = YES;
WOWorkersCount = 50;
WOPort = 127.0.0.1:2;
WOLogFile = /var/log/sogo/sogo.log;
SOGoProfileURL =
mysql://sogo:PASS@127.0.0.1:3306/sogo/sogo_user_profile;
OCSFolderInfoURL =
mysql://sogo:PASS@127.0.0.1:3306/sogo/sogo_folder_info;
OCSSessionsFolderURL =
mysql://sogo:PASS@127.0.0.1:3306/sogo/sogo_sessions_folder;
SOGoLanguage = English;
SOGoLoginModule = Mail;
SOGoForceExternalLoginWithEmail = YES;
SOGoMailCustomFromEnabled = YES;
SOGoEnableEMailAlarms = YES;
SOGoIMAPServer = imap://127.0.0.1:143/;

SOGoDomainsVisibility = ( (domain.com, domain1.com), (domain2.com) );

SOGoMailingMechanism = smtp;
SOGoSMTPServer = 127.0.0.1;
SOGoMemcachedHost = 127.0.0.1;
SOGoTimeZone = Asia/Istanbul;
SOGoFirstDayOfWeek = 1;
SOGoRefreshViewCheck = every_5_minutes;
SOGoMailReplyPlacement = below;
SOGoAppointmentSendEMailNotifications = YES;
SOGoFoldersSendEMailNotifications = YES;
SOGoACLsSendEMailNotifications = YES;
SOGoPasswordChangeEnabled = YES;
SQL backend */

domains = {
   “domain.com = {
   SOGoMailDomain = “domain.com;
   SOGoUserSources = (
   {
   type = ldap;
   hostname = ldap://127.0.0.1:389;;
   baseDN = o=domains,dc=root,dc=com;
   bindDN = cn=vmailadmin,dc=root,dc=com;
   bindPassword = “PASS”;
   filter = objectClass=mailUser AND accountStatus=active;
   scope = SUB;
   userPasswordAlgorithm = ssha;
   IDFieldName = mail;
   bindFields = (mail);
   CNFieldName = cn;
   UIDFieldName = mail;
   IMAPLoginFieldName = mail;
   SearchFieldNames = (cn, sn, displayName, telephoneNumber,
mail, shadowAddress);
   canAuthenticate = YES;
   displayName = LDAP Auth;
   id = ldap_auth;
   isAddressBook = NO;
   },
   {
   type = ldap;
   hostname = ldap://127.0.0.1:389;;
   baseDN = o=domains,dc=root,dc=com;
   bindDN = cn=vmailadmin,dc=root,dc=com;
   bindPassword = “PASS”;
   filter = objectClass=mailUser AND accountStatus=active AND
enabledService=mail;
   scope = SUB;
   userPasswordAlgorithm = ssha;
   IDFieldName = mail;
   bindFields = (mail);
   

[SOGo] Mysql Error 'c_description' in 'field list'

2015-07-17 Thread goblin
Since yesterdays update in wheezy i can't set new tasks in calendar.

Logfile shows mysql error:

Jul 17 10:04:38 sogod [2197]: 0x0x7fc00e32ddd0[GCSFolder] ERROR(-[GCSFolder
writeContent:fromComponent:container:toName:baseVersion:]): cannot insert
content : MySQL4Exception: 0x7fc00e579eb0 NAME:ExecutionFailed
REASON:Unknown column 'c_description' in 'field list'
Jul 17 10:04:38 sogod [2197]: [ERROR]
0x0E37D010[SOGoAppointmentObject]:d6712da1-9b8e-4ec1-b88e-f58ba4985678.ics
write failed: MySQL4Exception: 0x7fc00e579eb0 NAME:ExecutionFailed
REASON:Unknown column 'c_description' in 'field list'
[...]
Jul 17 10:04:38 sogod [2197]: |SOGo| starting method 'REPORT' on uri '/SOGo/
dav/user@sogoserver/Calendar/89D-54C21700-1-762C1380/'
Jul 17 10:04:38 sogod [2197]: 0x0x7fc00e0e5440[SOGoCache] an error occurred
when caching value for key 'user@sogoserver+attributes': WRITE FAILURE
Jul 17 10:04:39 sogod [2197]: 0x0x7fc00e0e5440[SOGoCache] an error occurred
when caching value for key 'user@sogoserver+attributes': WRITE FAILURE
Jul 17 10:04:39 sogod [2197]: 0x0x7fc00e0e5440[SOGoCache] an error occurred
when caching value for key 'user@sogoserver+settings': WRITE FAILURE


What can i do to solve this error?

-- 
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] how exclude a mail address from global address list

2015-07-17 Thread Francis Lachapelle

 On Jul 17, 2015, at 1:29 AM, Yavuz Maşlak yavuz.mas...@ihlas.com.tr wrote:
 
 
 
 On 15/07/15 18:16, Christian M. Jensen cmjscrip...@yahoo.com wrote:
 
 Hi,
 
 On 15-07-2015 16:56, Yavuz Maşlak wrote:
 
 On 15/07/15 16:25, Francis Lachapelle flachape...@inverse.ca wrote:
 
 Hello Yavuz
 
 On Jul 15, 2015, at 3:23 AM, Yavuz Maşlak yavuz.mas...@ihlas.com.tr
 wrote:
 
 
 i have 3 domains  ( for example  a.com  b.comc.com ).
 
 Users of A.com  and b.com  can see eachother but c.com
 C.com ¹s users can only see eachother but other domains.
 
 How can i do that ?
 
 Could you give me an example?
 This should do it:
 
 SOGoDomainsVisibility = ( (a.com, b.com), (c.com) );
 
 
 Francis--
 users@sogo.nu
 https://inverse.ca/sogo/lists
 I tried now. Unfortunately, it does not work.
 Whan can be the problem ?
 
 
 How do you define your domains in SOGo configuration?
 
 if your just set all your configuration in  'SOGoUserSources' then SOGo
 has no way of detecting what user source belong to what domain
 but if you use the 'Domains' value then 'SOGoDomainsVisibility' will
 work as expected
 
 using the domain parameter:
 
 domains = {
domain.com = {
SOGoMailDomain = domain.com;
SOGoSuperUsernames = (
postmas...@domain.com
);
SOGoUserSources = (
{
type = sql;
id = sql-auth;
isAddressBook = NO;
.
},
{
type = sql;
id = sql_addressbook;
isAddressBook = YES;
.
}
);
};
domain1.com = {
SOGoMailDomain = domain1.com;
SOGoSuperUsernames = (
postmas...@domain1.com
);
SOGoUserSources = (
{
type = ldap;
id = ldap_auth;
isAddressBook = NO;
.
},
{
type = ldap;
id = ldap_addressbook;
isAddressBook = YES;
.
}
);
};
 };
 
 
 Regards
 Christian Jensen
 -- 
 users@sogo.nu
 https://inverse.ca/sogo/lists
 
 Hi
 
 Does ldap id have to be different for every domain in Sogousersources?
 SOGoDomainsVisibility does not work in my conf.



 My sogo.conf;
 ###
 {
SOGoDebugRequests = YES;
 LDAPDebugEnabled = YES;
SOGoEASDebugEnabled = YES;
WOWorkersCount = 50;
WOPort = 127.0.0.1:2;
WOLogFile = /var/log/sogo/sogo.log;
SOGoProfileURL =
 mysql://sogo:PASS@127.0.0.1:3306/sogo/sogo_user_profile;
OCSFolderInfoURL =
 mysql://sogo:PASS@127.0.0.1:3306/sogo/sogo_folder_info;
OCSSessionsFolderURL =
 mysql://sogo:PASS@127.0.0.1:3306/sogo/sogo_sessions_folder;
SOGoLanguage = English;
SOGoLoginModule = Mail;
SOGoForceExternalLoginWithEmail = YES;
SOGoMailCustomFromEnabled = YES;
SOGoEnableEMailAlarms = YES;
SOGoIMAPServer = imap://127.0.0.1:143/;
 
SOGoDomainsVisibility = ( (domain.com, domain1.com), (domain2.com) );
 
SOGoMailingMechanism = smtp;
SOGoSMTPServer = 127.0.0.1;
SOGoMemcachedHost = 127.0.0.1;
SOGoTimeZone = Asia/Istanbul;
SOGoFirstDayOfWeek = 1;
SOGoRefreshViewCheck = every_5_minutes;
SOGoMailReplyPlacement = below;
SOGoAppointmentSendEMailNotifications = YES;
SOGoFoldersSendEMailNotifications = YES;
SOGoACLsSendEMailNotifications = YES;
SOGoPasswordChangeEnabled = YES;
SQL backend */
 
domains = {
   “domain.com = {
   SOGoMailDomain = “domain.com;
   SOGoUserSources = (
   {
   type = ldap;
   hostname = ldap://127.0.0.1:389;;
   baseDN = o=domains,dc=root,dc=com;
   bindDN = cn=vmailadmin,dc=root,dc=com;
   bindPassword = “PASS”;
   filter = objectClass=mailUser AND accountStatus=active;
   scope = SUB;
   userPasswordAlgorithm = ssha;
   IDFieldName = mail;
   bindFields = (mail);
   CNFieldName = cn;
   UIDFieldName = mail;
   IMAPLoginFieldName = mail;
   SearchFieldNames = (cn, sn, displayName, telephoneNumber,
 mail, shadowAddress);
   canAuthenticate = YES;
   displayName = LDAP Auth;
   id = ldap_auth;
   isAddressBook = NO;
   },
   {
   type = ldap;
   hostname = ldap://127.0.0.1:389;;
   baseDN = o=domains,dc=root,dc=com;
   bindDN = cn=vmailadmin,dc=root,dc=com;
   bindPassword = “PASS”;
   filter = objectClass=mailUser AND accountStatus=active AND
 enabledService=mail;
   scope = SUB;
   userPasswordAlgorithm = 

Re: [SOGo] Mysql Error 'c_description' in 'field list'

2015-07-17 Thread Francis Lachapelle

 On Jul 17, 2015, at 4:17 AM, goblin gobli...@gmx.de wrote:
 
 Since yesterdays update in wheezy i can't set new tasks in calendar.
 
 Logfile shows mysql error:
 
 Jul 17 10:04:38 sogod [2197]: 0x0x7fc00e32ddd0[GCSFolder] ERROR(-[GCSFolder
 writeContent:fromComponent:container:toName:baseVersion:]): cannot insert
 content : MySQL4Exception: 0x7fc00e579eb0 NAME:ExecutionFailed
 REASON:Unknown column 'c_description' in 'field list'
 Jul 17 10:04:38 sogod [2197]: [ERROR]
 0x0E37D010[SOGoAppointmentObject]:d6712da1-9b8e-4ec1-b88e-f58ba4985678.ics
 write failed: MySQL4Exception: 0x7fc00e579eb0 NAME:ExecutionFailed
 REASON:Unknown column 'c_description' in 'field list'
 [...]
 Jul 17 10:04:38 sogod [2197]: |SOGo| starting method 'REPORT' on uri '/SOGo/
 dav/user@sogoserver/Calendar/89D-54C21700-1-762C1380/'
 Jul 17 10:04:38 sogod [2197]: 0x0x7fc00e0e5440[SOGoCache] an error occurred
 when caching value for key 'user@sogoserver+attributes': WRITE FAILURE
 Jul 17 10:04:39 sogod [2197]: 0x0x7fc00e0e5440[SOGoCache] an error occurred
 when caching value for key 'user@sogoserver+attributes': WRITE FAILURE
 Jul 17 10:04:39 sogod [2197]: 0x0x7fc00e0e5440[SOGoCache] an error occurred
 when caching value for key 'user@sogoserver+settings': WRITE FAILURE
 
 
 What can i do to solve this error?

This has been discussed many times. The database schema has changed; you must 
run sql-update-2.2.17_to_2.3.0-mysql.sh. The script should under 
/usr/share/doc/sogo/. Always read the 'Upgrade' section of the installation 
guide when updating your installation.

https://github.com/inverse-inc/sogo/blob/master/Documentation/SOGoInstallationGuide.asciidoc#L2721

Francis-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Survey - Who uses SOGo (and why not exchange)

2015-07-17 Thread Charles Marcus
I'm curious, would you agree with the other person who replied about
issues with Openchange+Outlook?



On 7/16/2015 6:29 PM, Infoomatic infooma...@gmx.at wrote:
 Hi,

 We have evaluated Kolab but found it not stable, neither the community 
 edition nor the enterprise edition. Too many bugs, a beta version of cyrus 
 losing index files on a regular basis, stuck (zombie) processes, a setup 
 routine which does not exchange the placeholder/variables in the config 
 files, a version of 389-directory server with serious flaws etc. We did use 
 it in production for a year, but after a while with heavy usage and with 
 mailboxes with up to 200k mails we encountered lots of issues; users losing 
 all of their contacts (or at least problems with syncing ... the files were 
 on the server, however they disappeared on the mobile phone as well as in the 
 webinterface), same problem with calendars. The documentation is not really 
 straight forward and you have to do a lot of dirty hacks; too much dirty 
 patches on roundcube that actually do not 100% work; even a scripted daemon 
 that does content analysis (wallaced), but there exists 0 documentation and 
 the daemon hangs once in a while. We also had issues with the admin interface 
 somehow modifying the ldap schema. In the end: lots of troubles.

 My view on MS Exchange is biased since I strongly believe in open source, 
 however in a project I have to use it. I don't like it, its bloated and very 
 very slow, the Microsoft Smart Filtering really sucks and using the buggy 
 relay connectors is just pure pain in the ass. Even with the old mailserver 
 on the same GBit-switch we did not manage to get more than 5 mails/sec into 
 MS Exchange (dovecot on a testserver did around 30). Lots of tools get 
 timeout because its so slow (running new adequate hardware for about 80 
 users), e.g. the Xerox WorkCentre cannot send scans because establishing a 
 connection to the server is too slow. IMAP support is under all critics, 
 users moving folders around get error messages in thunderbird because they 
 are still shown on the old places, so they have to delete the account and 
 create a new one. The Outlook Web App (webinterface) is also not that 
 userfriendly, losing some mails contents and mixing up some conversations, 
 also, when you delete some mails via webinterface they show up on IMAP for 
 hours, it needs a long time to synchronize. Search seems buggy because some 
 mails are not found when you search a term. Gna, have to stop this here ... I 
 just hate it.

 Now, SOGo: 
 *) few bugs, most of them I can live with
 *) compared to Kolab: fast bug fixes and _stable_ releases
 *) fast  lightweight, fast  lightweight, fast  lightweight!!!
 *) Excellent documentation
 *) Good package management and straight forward lifecycle management (almost 
 always upgrades without worries!)
 *) As mentioned elsewhere: I like the GUI, its like a desktop software ... I 
 am a little worried about V3 that has to be modern - I think its difficult 
 for all the functionality to stick to those design standards
 *) Modularity: use an awesome stack of nginx/apache, postfix/exim/qmail, 
 dovecot/cyrus/courier, antispam filter, openldap/apache 
 DS/389-Directoryservice, various other tools ... you get the idea ... and on 
 top sogo

 One of the things I am missing most in SOGo is 2 factor authorization, like 
 with yubi key or some other tools.

 Thats an interesting thread, hope we get some more opinions!

 best regards,
 infoomatic



-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Survey - Who uses SOGo (and why not exchange)

2015-07-17 Thread Peter Beck
On 07/17/2015 03:18 PM, Charles Marcus wrote:
 I'm curious, would you agree with the other person who replied about
 issues with Openchange+Outlook?
To be clear:
I have no experience using Outlook with SOGo/OpenChange, just did a
(really) short test...
this is what I've heard from others, even on this mailing list.

I am also very interested to hear from other users what exactly is
working fine and where are the bottlenecks with openchange.
Usually you have to get response from users working with a solution as
they sometimes are used to do things we've never expected as admins ;-)

Regards
Peter
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] how exclude a mail address from global address list

2015-07-17 Thread Yavuz Maşlak


On 17/07/15 17:13, Francis Lachapelle flachape...@inverse.ca wrote:


 On Jul 17, 2015, at 1:29 AM, Yavuz Maşlak yavuz.mas...@ihlas.com.tr
wrote:
 
 
 
 On 15/07/15 18:16, Christian M. Jensen cmjscrip...@yahoo.com wrote:
 
 Hi,
 
 On 15-07-2015 16:56, Yavuz Maşlak wrote:
 
 On 15/07/15 16:25, Francis Lachapelle flachape...@inverse.ca
wrote:
 
 Hello Yavuz
 
 On Jul 15, 2015, at 3:23 AM, Yavuz Maşlak
yavuz.mas...@ihlas.com.tr
 wrote:
 
 
 i have 3 domains  ( for example  a.com  b.comc.com ).
 
 Users of A.com  and b.com  can see eachother but c.com
 C.com ¹s users can only see eachother but other domains.
 
 How can i do that ?
 
 Could you give me an example?
 This should do it:
 
 SOGoDomainsVisibility = ( (a.com, b.com), (c.com) );
 
 
 Francis--
 users@sogo.nu
 https://inverse.ca/sogo/lists
 I tried now. Unfortunately, it does not work.
 Whan can be the problem ?
 
 
 How do you define your domains in SOGo configuration?
 
 if your just set all your configuration in  'SOGoUserSources' then SOGo
 has no way of detecting what user source belong to what domain
 but if you use the 'Domains' value then 'SOGoDomainsVisibility' will
 work as expected
 
 using the domain parameter:
 
 domains = {
domain.com = {
SOGoMailDomain = domain.com;
SOGoSuperUsernames = (
postmas...@domain.com
);
SOGoUserSources = (
{
type = sql;
id = sql-auth;
isAddressBook = NO;
.
},
{
type = sql;
id = sql_addressbook;
isAddressBook = YES;
.
}
);
};
domain1.com = {
SOGoMailDomain = domain1.com;
SOGoSuperUsernames = (
postmas...@domain1.com
);
SOGoUserSources = (
{
type = ldap;
id = ldap_auth;
isAddressBook = NO;
.
},
{
type = ldap;
id = ldap_addressbook;
isAddressBook = YES;
.
}
);
};
 };
 
 
 Regards
 Christian Jensen
 -- 
 users@sogo.nu
 https://inverse.ca/sogo/lists
 
 Hi
 
 Does ldap id have to be different for every domain in Sogousersources?
 SOGoDomainsVisibility does not work in my conf.



 My sogo.conf;
 ###
 {
SOGoDebugRequests = YES;
 LDAPDebugEnabled = YES;
SOGoEASDebugEnabled = YES;
WOWorkersCount = 50;
WOPort = 127.0.0.1:2;
WOLogFile = /var/log/sogo/sogo.log;
SOGoProfileURL =
 mysql://sogo:PASS@127.0.0.1:3306/sogo/sogo_user_profile;
OCSFolderInfoURL =
 mysql://sogo:PASS@127.0.0.1:3306/sogo/sogo_folder_info;
OCSSessionsFolderURL =
 mysql://sogo:PASS@127.0.0.1:3306/sogo/sogo_sessions_folder;
SOGoLanguage = English;
SOGoLoginModule = Mail;
SOGoForceExternalLoginWithEmail = YES;
SOGoMailCustomFromEnabled = YES;
SOGoEnableEMailAlarms = YES;
SOGoIMAPServer = imap://127.0.0.1:143/;
 
SOGoDomainsVisibility = ( (domain.com, domain1.com), (domain2.com)
);
 
SOGoMailingMechanism = smtp;
SOGoSMTPServer = 127.0.0.1;
SOGoMemcachedHost = 127.0.0.1;
SOGoTimeZone = Asia/Istanbul;
SOGoFirstDayOfWeek = 1;
SOGoRefreshViewCheck = every_5_minutes;
SOGoMailReplyPlacement = below;
SOGoAppointmentSendEMailNotifications = YES;
SOGoFoldersSendEMailNotifications = YES;
SOGoACLsSendEMailNotifications = YES;
SOGoPasswordChangeEnabled = YES;
SQL backend */
 
domains = {
   “domain.com = {
   SOGoMailDomain = “domain.com;
   SOGoUserSources = (
   {
   type = ldap;
   hostname = ldap://127.0.0.1:389;;
   baseDN = o=domains,dc=root,dc=com;
   bindDN = cn=vmailadmin,dc=root,dc=com;
   bindPassword = “PASS”;
   filter = objectClass=mailUser AND accountStatus=active;
   scope = SUB;
   userPasswordAlgorithm = ssha;
   IDFieldName = mail;
   bindFields = (mail);
   CNFieldName = cn;
   UIDFieldName = mail;
   IMAPLoginFieldName = mail;
   SearchFieldNames = (cn, sn, displayName, telephoneNumber,
 mail, shadowAddress);
   canAuthenticate = YES;
   displayName = LDAP Auth;
   id = ldap_auth;
   isAddressBook = NO;
   },
   {
   type = ldap;
   hostname = ldap://127.0.0.1:389;;
   baseDN = o=domains,dc=root,dc=com;
   bindDN = cn=vmailadmin,dc=root,dc=com;
   bindPassword = “PASS”;
   filter = objectClass=mailUser AND accountStatus=active
AND
 

Re: [SOGo] Survey - Who uses SOGo (and why not exchange)

2015-07-17 Thread Infoo Matic

On Friday, July 17, 2015 15:18 CEST, Charles Marcus cmar...@media-brokers.com 
wrote:
 I'm curious, would you agree with the other person who replied about
 issues with Openchange+Outlook?

I cannot tell anything about it since I have never used openchange, just the 
activesync package.


 On 7/16/2015 6:29 PM, Infoomatic infooma...@gmx.at wrote:
  Hi,
 
  We have evaluated Kolab but found it not stable, neither the community 
  edition nor the enterprise edition. Too many bugs, a beta version of cyrus 
  losing index files on a regular basis, stuck (zombie) processes, a setup 
  routine which does not exchange the placeholder/variables in the config 
  files, a version of 389-directory server with serious flaws etc. We did use 
  it in production for a year, but after a while with heavy usage and with 
  mailboxes with up to 200k mails we encountered lots of issues; users losing 
  all of their contacts (or at least problems with syncing ... the files were 
  on the server, however they disappeared on the mobile phone as well as in 
  the webinterface), same problem with calendars. The documentation is not 
  really straight forward and you have to do a lot of dirty hacks; too much 
  dirty patches on roundcube that actually do not 100% work; even a scripted 
  daemon that does content analysis (wallaced), but there exists 0 
  documentation and the daemon hangs once in a while. We also had issues with 
  the admin interface somehow modifying the ldap schema. In the end: lots of 
  troubles.
 
  My view on MS Exchange is biased since I strongly believe in open source, 
  however in a project I have to use it. I don't like it, its bloated and 
  very very slow, the Microsoft Smart Filtering really sucks and using the 
  buggy relay connectors is just pure pain in the ass. Even with the old 
  mailserver on the same GBit-switch we did not manage to get more than 5 
  mails/sec into MS Exchange (dovecot on a testserver did around 30). Lots of 
  tools get timeout because its so slow (running new adequate hardware for 
  about 80 users), e.g. the Xerox WorkCentre cannot send scans because 
  establishing a connection to the server is too slow. IMAP support is under 
  all critics, users moving folders around get error messages in thunderbird 
  because they are still shown on the old places, so they have to delete the 
  account and create a new one. The Outlook Web App (webinterface) is also 
  not that userfriendly, losing some mails contents and mixing up some 
  conversations, also, when you delete some mails via webinterface they 
  show up on IMAP for hours, it needs a long time to synchronize. Search 
  seems buggy because some mails are not found when you search a term. Gna, 
  have to stop this here ... I just hate it.
 
  Now, SOGo:
  *) few bugs, most of them I can live with
  *) compared to Kolab: fast bug fixes and _stable_ releases
  *) fast  lightweight, fast  lightweight, fast  lightweight!!!
  *) Excellent documentation
  *) Good package management and straight forward lifecycle management 
  (almost always upgrades without worries!)
  *) As mentioned elsewhere: I like the GUI, its like a desktop software ... 
  I am a little worried about V3 that has to be modern - I think its 
  difficult for all the functionality to stick to those design standards
  *) Modularity: use an awesome stack of nginx/apache, postfix/exim/qmail, 
  dovecot/cyrus/courier, antispam filter, openldap/apache 
  DS/389-Directoryservice, various other tools ... you get the idea ... and 
  on top sogo
 
  One of the things I am missing most in SOGo is 2 factor authorization, like 
  with yubi key or some other tools.
 
  Thats an interesting thread, hope we get some more opinions!
 
  best regards,
  infoomatic



 --
 users@sogo.nu
 https://inverse.ca/sogo/lists




-- 
users@sogo.nu
https://inverse.ca/sogo/lists

[SOGo] BTS activities for Friday, July 17 2015

2015-07-17 Thread SOGo reporter
Title: BTS activities for Friday, July 17 2015





  
BTS Activities

  Home page: http://www.sogo.nu/bugs
  Project: SOGo
  For the period covering: Friday, July 17 2015

  
  
idlast updatestatus (resolution)categorysummary
	
	
	  
	
3283
	2015-07-17 09:23:52
	updated (open)
	Backend Address Book
	(read-only) Addressbook reports DAV:all privilege
	
	  
	
3284
	2015-07-17 09:30:07
	updated (open)
	Backend Address Book
	global addressbook supports neither ctag nor sync-token
	
	  
	
3277
	2015-07-17 04:43:17
	updated (open)
	Backend Calendar
	Setting MultipleBookings to -1 is the same as 0 or nonexistent
	
	  
	
425
	2015-07-17 07:54:45
	closed (fixed)
	Web Calendar
	event edition window: only one url can be entered