Hello,

I installed the last version of iRedMail (0.91) within DEBIAN 8 server, along
with:

NGINX 1.6.2
roundcube 1.1.1
dovecot 2.2.13
postfix 2.11.3

I updated the SOGO to the version 2.2.17a, everything seems to be working
except the menu to create the mail filtering in PREFERENCES -> MAIL OPTIONS,
there I can see just LABELS.

The filtering for me it's actually kind of needed (I could do the filters with
roundcube) but I want to get rid of roundcube and just leave SOGO. I dont know
what it's wrong, please can some of you give me some hints of what can be
wrong.

In my /etc/sogo.conf I have the following:

{
    // Official SOGo documents:
    //  - http://www.sogo.nu/english/support/documentation.html
    //  - http://wiki.sogo.nu
    //
    // Mailing list:
    //  - http://www.sogo.nu/english/support/community.html

    // Enable verbose logging. Reference:
    //
http://www.sogo.nu/nc/support/faq/article/how-to-enable-more-verbose-logging-in-sogo.html
    //SOGoDebugRequests = YES;
    //ImapDebugEnabled = YES;
    //LDAPDebugEnabled = YES;
    //MySQL4DebugEnabled = YES;
    //PGDebugEnabled = YES;

    // Performance Tuning
    //
    // The amount of instances of SOGo that will be spawned to handle multiple
    // requests simultaneously. When started from the init script, that amount
    // is overriden by the `PREFORK=` setting in /etc/sysconfig/sogo or
    // /etc/default/sogo. A value of 3 is a reasonable default for low usage.
    // The maximum value depends on the CPU and IO power provided by your
    // machine: a value set too high will actually decrease performances under
    // high load.
    //
    // You should have at least one child per EAS device configured to use
    // "push". You must also have more children than you have EAS devices
    // configured to use "push" - in order to handle normal SOGo requests to
    // its Web or DAV interfaces.
    //
    // Defaults to 1 when unset, increase it if you see below error message in
    // sogo log file: 'No child available to handle incoming request'
    WOWorkersCount = 10;

    // Daemon address and port
    WOPort = 127.0.0.1:20000;

    // PID file
    //WOPidFile = /var/run/sogo/sogo.pid;

    // Log file
    WOLogFile = /var/log/sogo/sogo.log;

    // IMAP connection pool.
    // Your performance will slightly increase, as you won't open a new
    // connection for every access to your IMAP server.
    // But you will get a lot of simultaneous open connections to your IMAP
    // server, so make sure he can handle them.
    // For debugging it is reasonable to turn pooling off.
    //NGImap4DisableIMAP4Pooling = NO;

    SOGoProfileURL =
"mysql://sogo:[email protected]:3306/sogo/sogo_user_profile";
    OCSFolderInfoURL =
"mysql://sogo:[email protected]:3306/sogo/sogo_folder_info";
    OCSSessionsFolderURL =
"mysql://sogo:[email protected]:3306/sogo/sogo_sessions_folder";

    // Default language in the web interface
    SOGoLanguage = English;
        // Specify which module to show after login: Calendar, Mail, Contacts.
    SOGoLoginModule = Mail;

    // Must login with full email address
    SOGoForceExternalLoginWithEmail = YES;

    // Allow user to change full name and email address.
    SOGoMailCustomFromEnabled = YES;

    // Enable email-based alarms on events and tasks.
    SOGoEnableEMailAlarms = YES;
    OCSEMailAlarmsFolderURL =
"mysql://sogo:[email protected]:3306/sogo/sogo_alarms_folder";

    // IMAP server
    //SOGoIMAPServer = "imaps://127.0.0.1:143/?tls=YES";
    // Local connection is considered as secure by Dovecot.
    SOGoIMAPServer = "imap://127.0.0.1:143/";

    // SMTP server
    SOGoMailingMechanism = smtp;
    SOGoSMTPServer = 127.0.0.1;
    //SOGoSMTPAuthenticationType = PLAIN;

    // Enable managesieve service
    //
    // WARNING: Sieve scripts generated by SOGo is not compatible with
Roundcube
    //          webmail, don't use sieve service in both webmails, otherwise
    //          it will be messy.
    //
    //SOGoSieveServer = sieve://127.0.0.1:4190;
    //SOGoSieveScriptsEnabled = YES;
    //SOGoVacationEnabled = YES;
    //SOGoForwardEnabled = YES;

    // Memcached
    SOGoMemcachedHost = 127.0.0.1;

    // Parameter used to set which usernames require administrative privileges
    // over all the users tables. For example, this could be used to post
    // events in the users calendar without requiring the user to configure
    // his/her ACLs. In this case you will need to specify those superuser's
    // usernames like this :
    // SOGoSuperUsernames = (<username1>[,<username2>, ...]);
    //SOGoSuperUsernames = ();

    SOGoTimeZone = "Europe/Prague";

    SOGoFirstDayOfWeek = 1;

    SOGoRefreshViewCheck = every_5_minutes;
    SOGoMailReplyPlacement = below;

    SOGoAppointmentSendEMailNotifications = YES;
    SOGoFoldersSendEMailNotifications = YES;
    SOGoACLsSendEMailNotifications = YES;

    // NOTE: PostgreSQL cannot update view in iRedMail
    SOGoPasswordChangeEnabled = YES;
         // Authentication using SQL

    SOGoUserSources = (
        {
            type = sql;
            id = vmail_mailbox;
            viewURL = "mysql://sogo:[email protected]:3306/sogo/users";
            canAuthenticate = YES;

            // Default algorithm used when changing passwords.
            userPasswordAlgorithm = ssha;
            prependPasswordScheme = YES;

            // Use vmail.mailbox as global address book.
            // WARNING: This will search all user accounts, not just accounts
            // under same domain as login user.
            //isAddressBook = YES;
            //displayName = "Global Address Book";
        }
    );


    // Authentication using LDAP
    /* LDAP backend
    SOGoUserSources = (
        {
            type = ldap;
            hostname = "PH_LDAP_URI";
            baseDN = "PH_LDAP_BASEDN";
            //bindAsCurrentUser = YES;
            bindDN = "PH_LDAP_ADMIN_DN";
            bindPassword = "PH_LDAP_ADMIN_PW";
            filter = "objectClass=mailUser AND accountStatus=active AND
enabledService=mail";
            scope = SUB;

            // The algorithm used for password encryption when changing
            // passwords without Password Policies enabled.
            // Possible values are: plain, crypt, md5-crypt, ssha.
            userPasswordAlgorithm = ssha;

            IDFieldName = mail;
            bindFields = (mail);
            CNFieldName = cn;
            // value of UID field must be unique on whole server.
            UIDFieldName = mail;
            IMAPLoginFieldName = mail;
            SearchFieldNames = (cn, sn, displayName, telephoneNumber, mail,
shadowAddress);
            canAuthenticate = YES;
            displayName = "Global Address Book";
            id = ldap_auth;
            isAddressBook = YES;
        }
    );
    LDAP backend */
}


And from the logs, the only interesting thing I saw is the following (and I
guess is not relevant with this problem):


May 29 10:08:12 sogod [16521]: localhost "POST /SOGo/so/
[email protected]/Mail/0/folderTrash/unseenCount HTTP/1.0" 200 13/0
0.639 - - 0
May 29 10:08:12 sogod [16520]: [ERROR] <0x0x7f02b71e2bc0[WOWatchDog]> No child
available to handle incoming request!
May 29 10:08:12 sogod [16521]: <0x0x7f02b7276e90[SOGoCache]> an error occurred
when caching value for key 'session:17xV1JuqqSrLyHkvRebp/w==': "SERVER HAS
FAILED AND IS DISABLED UNTIL TIMED RETRY"
May 29 10:08:12 sogod [16521]: <0x0x7f02b7276e90[SOGoCache]> an error occurred
when caching value for key '[email protected]+attributes': "SERVER HAS
FAILED AND IS DISABLED UNTIL TIMED RETRY"
May 29 10:08:12 sogod [16521]: <0x0x7f02b7276e90[SOGoCache]> an error occurred
when caching value for key '[email protected]+attributes': "SERVER HAS
FAILED AND IS DISABLED UNTIL TIMED RETRY"
May 29 10:08:12 sogod [16521]: <0x0x7f02b7276e90[SOGoCache]> an error occurred
when caching value for key '[email protected]+attributes': "SERVER HAS
FAILED AND IS DISABLED UNTIL TIMED RETRY"
May 29 10:08:12 sogod [16521]: <0x0x7f02b7276e90[SOGoCache]> an error occurred
when caching value for key '[email protected]+attributes': "SERVER HAS
FAILED AND IS DISABLED UNTIL TIMED RETRY"
May 29 10:08:12 sogod [16521]: <0x0x7f02b7276e90[SOGoCache]> an error occurred
when caching value for key 'session:17xV1JuqqSrLyHkvRebp/w==': "SERVER HAS
FAILED AND IS DISABLED UNTIL TIMED RETRY"
May 29 10:08:12 sogod [16521]: <0x0x7f02b7276e90[SOGoCache]> an error occurred
when caching value for key '[email protected]+defaults': "SERVER HAS
FAILED AND IS DISABLED UNTIL TIMED RETRY"
May 29 10:08:12 sogod [16521]: <0x0x7f02b7276e90[SOGoCache]> an error occurred
when caching value for key '[email protected]@+attributes': "SERVER HAS
FAILED AND IS DISABLED UNTIL TIMED RETRY"
May 29 10:08:12 sogod [16521]: <0x0x7f02b7276e90[SOGoCache]> an error occurred
when caching value for key '[email protected]+attributes': "SERVER HAS
FAILED AND IS DISABLED UNTIL TIMED RETRY"
May 29 10:08:12 sogod [16521]: <0x0x7f02b7276e90[SOGoCache]> an error occurred
when caching value for key '[email protected]+attributes': "SERVER HAS
FAILED AND IS DISABLED UNTIL TIMED RETRY"
May 29 10:08:12 sogod [16521]: <0x0x7f02b7276e90[SOGoCache]> an error occurred
when caching value for key '[email protected]+attributes': "SERVER HAS
FAILED AND IS DISABLED UNTIL TIMED RETRY"
May 29 10:08:12 sogod [16521]: <0x0x7f02b7276e90[SOGoCache]> an error occurred
when caching value for key '[email protected]+settings': "SERVER HAS
FAILED AND IS DISABLED UNTIL TIMED RETRY"
May 29 10:08:12 sogod [16521]: <0x0x7f02b7276e90[SOGoCache]> an error occurred
when caching value for key 'session:17xV1JuqqSrLyHkvRebp/w==': "SERVER HAS
FAILED AND IS DISABLED UNTIL TIMED RETRY"
May 29 10:08:12 sogod [16521]: localhost "POST /SOGo/so/
[email protected]/Mail/0/folderJunk/unseenCount HTTP/1.0" 200 13/0 0.296
- - 0
May 29 10:08:12 sogod [16521]: <0x0x7f02b7276e90[SOGoCache]> an error occurred
when caching value for key 'session:17xV1JuqqSrLyHkvRebp/w==': "SERVER HAS
FAILED AND IS DISABLED UNTIL TIMED RETRY"


Thanks a lot in advance for your help !


-- 
[email protected]
https://inverse.ca/sogo/lists

Reply via email to