On 22/10/2013 15:17, Alessandro Bono wrote:
Hi

I have a problem with a couple of installation, when you send an email with web interface email is sent but window does not close

Found the problem. sogo servers are beyond a ngnix load proxy/balancer, if I talk directly with sogo works with not problems, if I pass via nginx window does not close
nginx configuration is

ssl_session_timeout  10m;
ssl_session_cache  shared:SSL:10m;

ssl_protocols       SSLv3 TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers EECDH+ECDSA+AESGCM:EECDH+aRSA+AESGCM:EECDH+ECDSA+SHA256:EECDH+aRSA+RC4:EDH+aRSA:EECDH:RC4:!aNULL:!eNULL:!LOW:!3DES:!MD5:!EXP:!PSK:!SRP:!DSS;
ssl_prefer_server_ciphers   on;

add_header Strict-Transport-Security max-age=2592000;

add_header X-Frame-Options DENY;

upstream cluster-ssl {
     ip_hash;
     server srv1.mycompany.com:443;
     server srv2.mycompany.com:443;
     }

server {
        listen  443;
        server_name  sogo.mycompany.com

        ssl  on;

        access_log /var/log/nginx/sogo.access.log;
        error_log /var/log/nginx/sogo.error.log error;

        location / {
              proxy_pass https://cluster-ssl;
}
}

any hint?

Systems are centos 6.4 64bit with dovecot and cyrus as imap server and postfix as smtp server with and without authentication I tried to enable ImapDebugEnabled but I found no interesting information from log
problem with sogo 2.0.7 and nightly 2.1.0.20131022-1
below you can find sogo.conf

{
OCSEMailAlarmsFolderURL = "mysql://sogo:pas...@mysql.mycompany.com:3306/sogo/sogo_alarms_folder"; OCSFolderInfoURL = "mysql://sogo:pas...@mysql.mycompany.com:3306/sogo/sogo_folder_info"; OCSSessionsFolderURL = "mysql://sogo:pas...@mysql.mycompany.com:3306/sogo/sogo_sessions_folder";
    SOGoACLsSendEMailNotifications = YES;
    SOGoEnableEMailAlarms = YES;
    SOGoAppointmentSendEMailNotifications = YES;
    SOGoDefaultCalendar = selected;
    SOGoDraftsFolderName = Drafts;
    SOGoFoldersSendEMailNotifications = YES;
    SOGoIMAPAclConformsToIMAPExt = YES;
    SOGoIMAPServer = "imaps://imap.mycompany.com:993";
    SOGoLanguage = Italian;
    SOGoLoginModule = Mail;
    SOGoMailDomain = "mycompany.com";
    SOGoMailReplyPlacement = above;
    SOGoMailingMechanism = smtp;
    SOGoPageTitle = "Webmail";
    SOGoPasswordChangeEnabled = YES;
SOGoProfileURL = "mysql://sogo:pas...@mysql.mycompany.com:3306/sogo/sogo_user_profile";
    SOGoSMTPServer = "smtp.mycompany.com";
    SOGoSMTPAuthenticationType = "PLAIN";
    SOGoSentFolderName = "Sent";
    SOGoSieveScriptsEnabled = YES;
    SOGoSieveServer = "sieve://sieve.mycompany.com";
    SOGoTimeZone = "Europe/Rome";
    SOGoTrashFolderName = Trash;
    SOGoUserSources = (
        {
            LoginFieldNames = (
                "c_uid",
                mail
            );
            canAuthenticate = YES;
            id = "Users";
            isAddressBook = YES;
            type = sql;
            userPasswordAlgorithm = none;
viewURL = "mysql://sogo:pas...@mysql.mycompany.com:3306/mailserver/sogo_view";
        }
    );
    SOGoVacationEnabled = YES;
}

how to solve this problem?

tahnks



--
Cordiali Saluti
Alessandro Bono

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

Reply via email to