View Issue Details

IDProjectCategoryView StatusLast Update
0005165SOGoWeb Mailpublic2020-09-17 01:55
Reportertadeu Assigned To 
PrioritynormalSeveritymajorReproducibilityalways
Status closedResolutionno change required 
PlatformServerOSDebianOS VersionBuster
Product Version5.0.0 
Summary0005165: Messages won't load
Description

There seems to be a strange bug going on with the nightly version (@shiva2.inverse 202009160133). It just won't load neither the e-mail titles nor the messages themselves. There are a few title cards loading correctly, but clicking on them does nothing.

There seems to be a lot of exceptions coming from the AngularJS side, as shown on some of the screenshots.

Steps To Reproduce

N/A

Tagswebmail

Activities

tadeu

tadeu

2020-09-16 16:01

reporter  

brokenmail5.png (13,470 bytes)   
brokenmail5.png (13,470 bytes)   
brokenmail4.png (195,857 bytes)   
brokenmail4.png (195,857 bytes)   
brokenmail3.png (197,142 bytes)   
brokenmail3.png (197,142 bytes)   
brokenmail2.png (126,211 bytes)   
brokenmail2.png (126,211 bytes)   
brokenmail1.png (108,830 bytes)   
brokenmail1.png (108,830 bytes)   
francis

francis

2020-09-16 20:59

administrator   ~0014771

Have you overwritten the configuration parameter SOGoMailLabelsColors?

tadeu

tadeu

2020-09-16 21:02

reporter   ~0014772

In fact, I have not. This setting isn't even in my config file, that, by the way, is as follows:

sogo.conf (5,156 bytes)   
{
  /* *********************  Main SOGo configuration file  **********************
   *                                                                           *
   * Since the content of this file is a dictionary in OpenStep plist format,  *
   * the curly braces enclosing the body of the configuration are mandatory.   *
   * See the Installation Guide for details on the format.                     *
   *                                                                           *
   * C and C++ style comments are supported.                                   *
   *                                                                           *
   * This example configuration contains only a subset of all available        *
   * configuration parameters. Please see the installation guide more details. *
   *                                                                           *
   * ~sogo/GNUstep/Defaults/.GNUstepDefaults has precedence over this file,    *
   * make sure to move it away to avoid unwanted parameter overrides.          *
   *                                                                           *
   * **************************************************************************/

  /* Database configuration (mysql://, postgresql:// or oracle://) */
  //SOGoProfileURL = "postgresql://sogo:sogo@localhost:5432/sogo/sogo_user_profile";
  //OCSFolderInfoURL = "postgresql://sogo:sogo@localhost:5432/sogo/sogo_folder_info";
  //OCSSessionsFolderURL = "postgresql://sogo:sogo@localhost:5432/sogo/sogo_sessions_folder";

  /* Mail */
  //SOGoDraftsFolderName = Drafts;
  //SOGoSentFolderName = Sent;
  //SOGoTrashFolderName = Trash;
  //SOGoJunkFolderName = Junk;
  SOGoIMAPServer = "imaps://imap.linux.ime.usp.br";
  //SOGoSieveServer = "sieve://127.0.0.1:4190";
  SOGoSMTPServer = "smtps://smtp.linux.ime.usp.br";
  //SOGoMailDomain = acme.com;
  //SOGoMailingMechanism = smtp;
  //SOGoForceExternalLoginWithEmail = NO;
  //SOGoMailSpoolPath = /var/spool/sogo;
  //NGImap4ConnectionStringSeparator = "/";

  /* Notifications */
  //SOGoAppointmentSendEMailNotifications = NO;
  //SOGoACLsSendEMailNotifications = NO;
  //SOGoFoldersSendEMailNotifications = NO;

  /* Authentication */
  SOGoPasswordChangeEnabled = NO;

  SOGoUserSources = (
    {
      type = ldap;
      CNFieldName = cn;
      UIDFieldName = uid;
      IDFieldName = uid; // first field of the DN for direct binds
      IMAPLoginFieldName = uid; 
      IMAPFieldName = "linux.ime.usp.br"; 
      bindFields = (uid); // array of fields to use for indirect binds
      baseDN = "ou=People,dc=linux,dc=ime,dc=usp,dc=br";
      bindDN = ""; 
      bindPassword = ""; 
      canAuthenticate = YES;
      displayName = "Rede Linux";
      hostname = "ldap://ldap.linux.ime.usp.br";
      id = public;
  //    isAddressBook = YES;
    }
  );


  /* LDAP AD/Samba4 example */
  //SOGoUserSources = (
  //  {
  //    type = ldap;
  //    CNFieldName = cn;
  //    UIDFieldName = sAMAccountName;
  //    baseDN = "CN=users,dc=domain,dc=tld";
  //    bindDN = "CN=sogo,CN=users,DC=domain,DC=tld";
  //    bindFields = (sAMAccountName, mail);
  //    bindPassword = password;
  //    canAuthenticate = YES;
  //    displayName = "Public";
  //    hostname = "ldap://127.0.0.1:389";
  //    filter = "mail = '*'";
  //    id = directory;
  //    isAddressBook = YES;
  //  }
  //);


  /* SQL authentication example */
  /*  These database columns MUST be present in the view/table:
   *    c_uid - will be used for authentication -  it's the username or username@domain.tld)
   *    c_name - which can be identical to c_uid -  will be used to uniquely identify entries
   *    c_password - password of the user, plain-text, md5 or sha encoded for now
   *    c_cn - the user's common name - such as "John Doe"
   *    mail - the user's mail address
   *  See the installation guide for more details
   */
  //SOGoUserSources =
  //  (
  //    {
  //      type = sql;
  //      id = directory;
  //      viewURL = "postgresql://sogo:sogo@127.0.0.1:5432/sogo/sogo_view";
  //      canAuthenticate = YES;
  //      isAddressBook = YES;
  //      userPasswordAlgorithm = md5;
  //    }
  //  );

  /* Web Interface */
  SOGoPageTitle = "Webmail Rede Linux";
  //SOGoVacationEnabled = YES;
  //SOGoForwardEnabled = YES;
  //SOGoSieveScriptsEnabled = YES;
  //SOGoMailAuxiliaryUserAccountsEnabled = YES;
  //SOGoTrustProxyAuthentication = YES;
  //SOGoXSRFValidationEnabled = YES;

  /* General - SOGoTimeZone *MUST* be defined */
  //SOGoLanguage = English;
  SOGoTimeZone = America/Sao_Paulo;
  //SOGoCalendarDefaultRoles = (
  //  PublicDAndTViewer,
  //  ConfidentialDAndTViewer
  //);
  //SOGoSuperUsernames = (sogo1, sogo2); // This is an array - keep the parens!
  //SxVMemLimit = 384;
  //WOPidFile = "/var/run/sogo/sogo.pid";
  //SOGoMemcachedHost = "/var/run/memcached.sock";
  
  /* Debug */
  SOGoDebugRequests = YES;
  SoDebugBaseURL = YES;
  //ImapDebugEnabled = YES;
  //LDAPDebugEnabled = YES;
  //PGDebugEnabled = YES;
  //MySQL4DebugEnabled = YES;
  //SOGoUIxDebugEnabled = YES;
  //WODontZipResponse = YES;
  //WOLogFile = /var/log/sogo/sogo.log;
}

sogo.conf (5,156 bytes)   
tadeu

tadeu

2020-09-16 21:03

reporter   ~0014773

It's mostly standard, besides one or two cosmetic settings and our LDAP auth mechanism.

francis

francis

2020-09-16 21:13

administrator   ~0014774

From the JavaScript console, type document.getElementById('UserDefaults').text and share the output.

tadeu

tadeu

2020-09-16 21:34

reporter   ~0014775

Well, it seems to be empty...

brokensogo6.png (3,048 bytes)   
brokensogo6.png (3,048 bytes)   
francis

francis

2020-09-16 22:39

administrator   ~0014776

That is your problem. Have you modified the wox templates?

tadeu

tadeu

2020-09-16 23:18

reporter   ~0014777

Not really. And I've purged the packages as well, to no avail.

How can I repair that?

tadeu

tadeu

2020-09-16 23:29

reporter   ~0014778

By the way, I've tested on another SOGo setup I have (4.3.2, also on Debian), and this outputs a set of preferences using JSON format, as expected.

I think this issue may be related to the first two JSON errors. But I'm not sure...

tadeu

tadeu

2020-09-16 23:30

reporter   ~0014779

sogobroken7.png (28,066 bytes)   
sogobroken7.png (28,066 bytes)   
francis

francis

2020-09-17 00:49

administrator   ~0014780

Any error in your log of sogod?

Is the problem the same for all users?

tadeu

tadeu

2020-09-17 01:24

reporter   ~0014781

Well, I've tested right now with a newly created user, and the same situation happens...

Excerpt from sogo.log follows.

sogo_empty_defaults_etc.png (231,214 bytes)   
sogo_empty_defaults_etc.png (231,214 bytes)   
sogo.log (60,033 bytes)   
Sep 16 22:19:07 sogod [25416]: |SOGo| starting method 'GET' on uri '/SOGo/so/desgraca/Mail/view'
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b862330[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b862330[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: |SOGo| starting method 'POST' on uri '/SOGo/so/desgraca/Mail/0/folderINBOX/expunge'
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b862330[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b888e30[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b888e30[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b888e30[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: |SOGo|   constructed root-url: /SOGo/
Sep 16 22:19:07 sogod [25416]: |SOGo|   setting root-url in context: /SOGo/so/
Sep 16 22:19:07 sogod [25416]: |SOGo| ROOT baseURL(no container, name=(null)):
  own: /SOGo/so/
Sep 16 22:19:07 sogod [25416]: <0x55bc8ba4e000[SOGoUserFolder]:desgraca> baseURL: name=desgraca (container=SOGo)
  container: /SOGo -- https://cirrose.linux.ime.usp.br/SOGo/so/desgraca/Mail/view
  own: /SOGo/so/desgraca
Sep 16 22:19:07 sogod [25416]: |SOGo|   using root-url from context: /SOGo/so/
Sep 16 22:19:07 sogod [25416]: |SOGo| ROOT baseURL(no container, name=(null)):
  own: /SOGo/so/
Sep 16 22:19:07 sogod [25416]: <0x55bc8ba4e000[SOGoUserFolder]:desgraca> baseURL: name=desgraca (container=SOGo)
  container: /SOGo -- https://cirrose.linux.ime.usp.br/SOGo/so/desgraca/Mail/view
  own: /SOGo/so/desgraca
Sep 16 22:19:07 sogod [25416]: <0x55bc8b8ae730[SOGoMailAccounts]:Mail> baseURL: name=Mail (container=SOGoUserFolder)
  container: /SOGo/so/desgraca/
  own: /SOGo/so/desgraca/Mail
Sep 16 22:19:07 sogod [25416]: |SOGo|   using root-url from context: /SOGo/so/
Sep 16 22:19:07 sogod [25416]: |SOGo| ROOT baseURL(no container, name=(null)):
  own: /SOGo/so/
Sep 16 22:19:07 sogod [25416]: <0x55bc8ba4e000[SOGoUserFolder]:desgraca> baseURL: name=desgraca (container=SOGo)
  container: /SOGo -- https://cirrose.linux.ime.usp.br/SOGo/so/desgraca/Mail/view
  own: /SOGo/so/desgraca
Sep 16 22:19:07 sogod [25416]: |SOGo|   using root-url from context: /SOGo/so/
Sep 16 22:19:07 sogod [25416]: |SOGo| ROOT baseURL(no container, name=(null)):
  own: /SOGo/so/
Sep 16 22:19:07 sogod [25416]: <0x55bc8ba4e000[SOGoUserFolder]:desgraca> baseURL: name=desgraca (container=SOGo)
  container: /SOGo -- https://cirrose.linux.ime.usp.br/SOGo/so/desgraca/Mail/view
  own: /SOGo/so/desgraca
Sep 16 22:19:07 sogod [25416]: |SOGo|   using root-url from context: /SOGo/so/
Sep 16 22:19:07 sogod [25416]: |SOGo| ROOT baseURL(no container, name=(null)):
  own: /SOGo/so/
Sep 16 22:19:07 sogod [25416]: <0x55bc8ba4e000[SOGoUserFolder]:desgraca> baseURL: name=desgraca (container=SOGo)
  container: /SOGo -- https://cirrose.linux.ime.usp.br/SOGo/so/desgraca/Mail/view
  own: /SOGo/so/desgraca
Sep 16 22:19:07 sogod [25416]: |SOGo|   using root-url from context: /SOGo/so/
Sep 16 22:19:07 sogod [25416]: |SOGo| ROOT baseURL(no container, name=(null)):
  own: /SOGo/so/
Sep 16 22:19:07 sogod [25416]: <0x55bc8ba4e000[SOGoUserFolder]:desgraca> baseURL: name=desgraca (container=SOGo)
  container: /SOGo -- https://cirrose.linux.ime.usp.br/SOGo/so/desgraca/Mail/view
  own: /SOGo/so/desgraca
Sep 16 22:19:07 sogod [25416]: |SOGo|   using root-url from context: /SOGo/so/
Sep 16 22:19:07 sogod [25416]: |SOGo| ROOT baseURL(no container, name=(null)):
  own: /SOGo/so/
Sep 16 22:19:07 sogod [25416]: <0x55bc8ba4e000[SOGoUserFolder]:desgraca> baseURL: name=desgraca (container=SOGo)
  container: /SOGo -- https://cirrose.linux.ime.usp.br/SOGo/so/desgraca/Mail/view
  own: /SOGo/so/desgraca
Sep 16 22:19:07 sogod [25416]: |SOGo|   using root-url from context: /SOGo/so/
Sep 16 22:19:07 sogod [25416]: |SOGo| ROOT baseURL(no container, name=(null)):
  own: /SOGo/so/
Sep 16 22:19:07 sogod [25416]: <0x55bc8ba4e000[SOGoUserFolder]:desgraca> baseURL: name=desgraca (container=SOGo)
  container: /SOGo -- https://cirrose.linux.ime.usp.br/SOGo/so/desgraca/Mail/view
  own: /SOGo/so/desgraca
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b78e7b0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b862330[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b862330[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b862330[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b862330[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b862330[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b862330[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b862330[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b862330[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: |SOGo| request took 0.071035 seconds to execute
Sep 16 22:19:07 sogod [25416]: 192.168.241.7 "GET /SOGo/so/desgraca/Mail/view HTTP/1.1" 200 17637/0 0.074 78821 77% 0 - 11
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b5a2f70[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: |SOGo| request took 0.128534 seconds to execute
Sep 16 22:19:07 sogod [25417]: 192.168.241.7 "POST /SOGo/so/desgraca/Mail/0/folderINBOX/expunge HTTP/1.1" 200 52/0 0.130 - - 0 - 12
Sep 16 22:19:07 sogod [25417]: |SOGo| starting method 'GET' on uri '/SOGo/so/desgraca/Calendar/alarmslist?browserTime=1600305547'
2020-09-16 22:19:07.974 sogod[25417:25417] ERROR(+[GCSFolderManager defaultFolderManager]): default 'OCSFolderInfoURL' is not configured.
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b859060[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: |SOGo| starting method 'POST' on uri '/SOGo/so/desgraca/Mail/0/folderINBOX/view'
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b859060[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b859060[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)

Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)

Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25417]: [ERROR] <0x0x55bc8b1a6dd0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
2020-09-16 22:19:07.982 sogod[25417:25417] ERROR(+[GCSFolderManager defaultFolderManager]): default 'OCSFolderInfoURL' is not configured.
Sep 16 22:19:07 sogod [25417]: |SOGo| request took 0.009820 seconds to execute
Sep 16 22:19:07 sogod [25417]: 192.168.241.7 "GET /SOGo/so/desgraca/Calendar/alarmslist?browserTime=1600305547 HTTP/1.1" 200 63/0 0.011 - - 0 - 11
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b988e00[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b988e00[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b988e00[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:07 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: |SOGo| starting method 'GET' on uri '/SOGo/so/desgraca/Mail/0/view'
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b82dfb0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b82dfb0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b82dfb0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25416]: [ERROR] <0x0x55bc8b97bca0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25416]: [ERROR] <0x0x55bc8b988e00[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25416]: [ERROR] <0x0x55bc8b988e00[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25416]: |SOGo| request took 0.152344 seconds to execute
Sep 16 22:19:08 sogod [25416]: 192.168.241.7 "POST /SOGo/so/desgraca/Mail/0/folderINBOX/view HTTP/1.1" 200 258/126 0.154 - - 0 - 12
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b9dcad0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: |SOGo| request took 0.195907 seconds to execute
Sep 16 22:19:08 sogod [25417]: 192.168.241.7 "GET /SOGo/so/desgraca/Mail/0/view HTTP/1.1" 200 682/0 0.197 - - 0 - 12
Sep 16 22:19:08 sogod [25417]: |SOGo| starting method 'POST' on uri '/SOGo/so/desgraca/Mail/0/folderINBOX/view'
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b7c40d0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b7c40d0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b7c40d0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b867250[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b7c40d0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b7c40d0[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: |SOGo| request took 0.147169 seconds to execute
Sep 16 22:19:08 sogod [25417]: 192.168.241.7 "POST /SOGo/so/desgraca/Mail/0/folderINBOX/view HTTP/1.1" 200 258/48 0.149 - - 0 - 12
Sep 16 22:19:08 sogod [25417]: |SOGo| starting method 'POST' on uri '/SOGo/so/desgraca/Mail/unseenCount'
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b8f9560[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b8f9560[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b8f9560[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:08 sogod [25417]: [ERROR] <0x0x55bc8b960370[SOGoSQLUserProfile]> failed to acquire channel for URL: (null)
Sep 16 22:19:09 sogod [25417]: |SOGo| request took 0.104278 seconds to execute
Sep 16 22:19:09 sogod [25417]: 192.168.241.7 "POST /SOGo/so/desgraca/Mail/unseenCount HTTP/1.1" 200 21/31 0.106 - - 0 - 11

sogo.log (60,033 bytes)   
francis

francis

2020-09-17 01:36

administrator   ~0014782

Configure your database parameters (SOGoProfileURL , OCSFolderInfoURL, OCSSessionsFolderURL).

tadeu

tadeu

2020-09-17 01:52

reporter   ~0014783

Oh, you're right. I forgot to configure the database. It works now...

Thanks for your patience, though. Please close this issue.

Issue History

Date Modified Username Field Change
2020-09-16 16:01 tadeu New Issue
2020-09-16 16:01 tadeu Tag Attached: webmail
2020-09-16 16:01 tadeu File Added: brokenmail5.png
2020-09-16 16:01 tadeu File Added: brokenmail4.png
2020-09-16 16:01 tadeu File Added: brokenmail3.png
2020-09-16 16:01 tadeu File Added: brokenmail2.png
2020-09-16 16:01 tadeu File Added: brokenmail1.png
2020-09-16 20:59 francis Note Added: 0014771
2020-09-16 21:02 tadeu Note Added: 0014772
2020-09-16 21:02 tadeu File Added: sogo.conf
2020-09-16 21:03 tadeu Note Added: 0014773
2020-09-16 21:13 francis Note Added: 0014774
2020-09-16 21:34 tadeu Note Added: 0014775
2020-09-16 21:34 tadeu File Added: brokensogo6.png
2020-09-16 22:39 francis Note Added: 0014776
2020-09-16 23:18 tadeu Note Added: 0014777
2020-09-16 23:29 tadeu Note Added: 0014778
2020-09-16 23:30 tadeu Note Added: 0014779
2020-09-16 23:30 tadeu File Added: sogobroken7.png
2020-09-17 00:49 francis Note Added: 0014780
2020-09-17 01:24 tadeu Note Added: 0014781
2020-09-17 01:24 tadeu File Added: sogo_empty_defaults_etc.png
2020-09-17 01:24 tadeu File Added: sogo.log
2020-09-17 01:36 francis Note Added: 0014782
2020-09-17 01:52 tadeu Note Added: 0014783
2020-09-17 01:55 francis Status new => closed
2020-09-17 01:55 francis Resolution open => no change required