Hello

You are obviously using SOGo V3.
That is absolutely new, and not yet feature complete.
You should check the bug reports at http://www.sogo.nu/bugs first.

If you want to try configurations with all features (without adaptive
web interface!), then try SOGo V2.


Kind regards,
Christian Mack

Am 11.02.2016 um 11:21 schrieb Oliver Werner:
> Hello,
> 
> We would try Sogo and have successfully installed with LDAP Auth so i can 
> Login.
> 
> But now we have some issues.
> 
> 
> 1. After some actions with a user i got an Proxy Error in the Browser. follow 
> error was found in sogo.log:
> 
> EXCEPTION: <NSException: 0x7f462f85b310> NAME:NSInvalidArgumentException 
> REASON:NSDataMalloc(instance) does not recognize isJSONString INFO:(null)
> 
> After remove user from sogo_user_profile table i can login again until this 
> error came again.
> 
> 
> 2. When i would create a new contact this will be done but in my overview its 
> not appears. After reload the Page i see the content but on click this 
> removed again from page…
> 
> 3. I have configured public addressbook from LDAP but nothing will shown (but 
> Login works)
> 
> 4. When add a calendar event on iCal i got error 501 from server and when 
> create the event on sogo web frontend nothing happens.
> 
>       On log i saw this error:
>       Feb 11 10:28:57 sogod [8626]: [ERROR] 
> <0x2FC42550[SOGoAppointmentInboxFolder]:inbox> (-[SOGoGCSFolder 
> toOneRelationshipKeys]): fetch failed!
> 
> 
> Anyone can help for this issues?
> 
> Regards
> Oliver
> 
> 
> Here is my sogo.conf and apache config for the vhost
> 
> 
> 
> soso.conf
> {
>   SOGoProfileURL = 
> "mysql:/sogo:henya5hf79fg2...@dev-db01.kontrast.de:3306/kontrast_sogo_www/sogo_user_profile";
>   OCSFolderInfoURL = 
> "mysql://sogo:henya5hf79fg2...@dev-db01.kontrast.de:3306/kontrast_sogo_www/sogo_folder_info";
>   OCSSessionsFolderURL = 
> "mysql://kontrast_sogo:henya5hf79fg2...@dev-db01.kontrast.de:3306/kontrast_sogo_www/sogo_sessions_folder";
> 
> 
>   SOGoDraftsFolderName = Drafts;
>   SOGoSentFolderName = Sent;
>   SOGoTrashFolderName = Trash;
>   SOGoIMAPServer = imaps://imap.domain.com:993;
>   SOGoSMTPServer = smtp.domain.com;
>   SOGoMailDomain = domain.com;
>   SOGoMailingMechanism = smtp;
>   SOGoForceExternalLoginWithEmail = YES;
>   SOGoAppointmentSendEMailNotifications = NO;
> 
>  SOGoUserSources = (
>     {
>       type = ldap;
>       CNFieldName = cn;
>       UIDFieldName = sAMAccountName;
>       baseDN = "CN=users,dc=domain,dc=com";
>       bindDN = „CN=Auth,DC=deomain,DC=com";
>       bindFields = (sAMAccountName, mail);
>       bindPassword = <pass>;
>       canAuthenticate = YES;
>       displayName = "Public";
>       hostname = ldaps://ldap.domain.com:636;
>       id = directory;
>       isAddressBook = YES;
>     }
>   );
>   SOGoLanguage = German;
>   SOGoTimeZone = Europe/Berlin;
>   SOGoCalendarDefaultRoles = (
>     PublicDAndTViewer,
>     ConfidentialDAndTViewer
>   );
> SOGoSuperUsernames = ("oliver“);
> }
> 
> 
> apache:
> 
> <VirtualHost 192.168.1.1:80>
>    ServerName sogo.domain.com
> 
>    <IfModule mod_alias.c>
>       Redirect permanent / https://sogo.domain.com/
>    </IfModule>
> </VirtualHost>
> 
> <VirtualHost 192.168.1.1:443>
>    ServerName sogo.domain.com
> 
>    SSLEngine on
>    SSLProtocol -all +TLSv1
>    SSLCertificateFile      <file>
>    SSLCertificateKeyFile  <file>
>    SSLCertificateChainFile <file>
> 
>    <IfModule rewrite_module>
>       RewriteRule ^/$ /SOGo [R]
>    </IfModule>
> 
>    Alias /SOGo.woa/WebServerResources/ 
> /usr/lib/GNUstep/SOGo/WebServerResources/
>    Alias /SOGo/WebServerResources/ /usr/lib/GNUstep/SOGo/WebServerResources/
> 
>    <Directory /usr/lib/GNUstep/SOGo/>
>       AllowOverride None
>       <IfVersion < 2.4>
>          Order deny,allow
>          Allow from all
>       </IfVersion>
>       <IfVersion >= 2.4>
>          Require all granted
>       </IfVersion>
> 
>       # Explicitly allow caching of static content to avoid browser specific 
> behavior.
>       # A resource's URL MUST change in order to have the client load the new 
> version.
>       <IfModule expires_module>
>          ExpiresActive On
>          ExpiresDefault "access plus 1 year"
>       </IfModule>
>    </Directory>
> 
>    ProxyRequests Off
>    SetEnv proxy-nokeepalive 1
>    ProxyPreserveHost On
> 
>    # When using CAS, you should uncomment this and install 
> cas-proxy-validate.py
>    # in /usr/lib/cgi-bin to reduce server overloading
>    #
>    #ProxyPass /SOGo/casProxy http://localhost/cgi-bin/cas-proxy-validate.py
>    #<Proxy http://localhost/app/cas-proxy-validate.py>
>    #  Order deny,allow
>    #  Allow from your-cas-host-addr
>    #</Proxy>
> 
>    ProxyPass /SOGo http://127.0.0.1:20000/SOGo retry=0
> 
>    # Enable to use Microsoft ActiveSync support
>    # Note that you MUST have many sogod workers to use ActiveSync.
>    # See the SOGo Installation and Configuration guide for more details.
>    #
>    ProxyPass /Microsoft-Server-ActiveSync 
> http://127.0.0.1:20000/SOGo/Microsoft-Server-ActiveSync retry=60 
> connectiontimeout=5 timeout=360
> 
>    <Proxy http://127.0.0.1:20000/SOGo>
>       ## adjust the following to your configuration
>       RequestHeader set "x-webobjects-server-port" "443"
>       RequestHeader set "x-webobjects-server-name" "sogo.domain.com"
>       RequestHeader set "x-webobjects-server-url" "https://sogo.domain.com“
> 
>       ## When using proxy-side autentication, you need to uncomment and
>       ## adjust the following line:
>       RequestHeader unset "x-webobjects-remote-user"
>       #  RequestHeader set "x-webobjects-remote-user" "%{REMOTE_USER}e" 
> env=REMOTE_USER
>       RequestHeader set "x-webobjects-server-protocol" "HTTP/1.0"
>       AddDefaultCharset UTF-8
>       Order allow,deny
>       Allow from all
>    </Proxy>
> 
>    # For Apple autoconfiguration
>    <IfModule rewrite_module>
>       RewriteEngine On
>       RewriteRule ^/.well-known/caldav/?$ /SOGo/dav [R=301]
>    </IfModule>
> 
>    ErrorLog ${APACHE_LOG_DIR}/error_ssl_sogo.log
>    CustomLog ${APACHE_LOG_DIR}/access_ssl_sogo.log combined
> 
>         <IfModule rewrite_module>
>                 RewriteRule ^/$ /SOGo [R]
>         </IfModule>
> </VirtualHost>
> 
> 


-- 
Christian Mack
Universität Konstanz
Kommunikations-, Informations-, Medienzentrum (KIM)
Abteilung Basisdienste
78457 Konstanz
+49 7531 88-4416

Attachment: smime.p7s
Description: S/MIME Cryptographic Signature

Reply via email to