I'm trying to configure SOGo from scratch
 
I installed SOGo 5 on debian and configured postgres database on another host, so my SOGo config looks like that:
 
{
  SOGoProfileURL = "postgresql://sogo:pass@192.168.5.9:5432/sogo/sogo_user_profile";
  OCSFolderInfoURL = "postgresql://sogo:pass@192.168.5.9:5432/sogo/sogo_folder_info";
  OCSSessionsFolderURL = "postgresql://sogo:pass@192.168.5.9:5432/sogo/sogo_sessions_folder";
  OCSEMailAlarmsFolderURL = "postgresql://sogo:pass@192.168.5.9:5432/sogo/sogo_alarms_folder";
  SOGoLanguage = English;
  SOGoAppointmentSendEMailNotifications = YES;
  SOGoMailingMechanism = smtp;
  SOGoSMTPServer = 127.0.0.1;
  SOGoTimeZone = UTC;
  SOGoSentFolderName = Sent;
  SOGoTrashFolderName = Trash;
  SOGoDraftsFolderName = Drafts;
  SOGoIMAPServer = "imaps://localhost:143/?tls=YES";
  SOGoSieveServer = "sieve://localhost:4190/?tls=YES";
  SOGoIMAPAclConformsToIMAPExt = YES;
  SOGoVacationEnabled = NO;
  SOGoForwardEnabled = NO;
  SOGoSieveScriptsEnabled = NO;
  SOGoFirstDayOfWeek = 0;
  SOGoMailMessageCheck = manually;
  SOGoMailAuxiliaryUserAccountsEnabled = NO;
  SOGoMemcachedHost = 127.0.0.1;
  WOHttpAllowHost = ( localhost, "192.168.5.229", "0.0.0.0" );
  tlsVerifyMode=allowInsecureLocalhost;
  WOPort = 0.0.0.0:20000;
  SOGoPageTitle = SOGo;
  SOGoVacationEnabled = YES;
  SOGoForwardEnabled = YES;
  SOGoSieveScriptsEnabled = YES;
  SOGoMailAuxiliaryUserAccountsEnabled = YES;
  SOGoTrustProxyAuthentication = YES;
  SOGoXSRFValidationEnabled = YES;
  SOGoSuperUsernames = (admin); // This is an array - keep the parens!
}
 
But when I go to  SOGo URL  http://192.168.5.229/SOGo/
 
I get an incomprehensible white page with forms to fill out and text like this:
 
*
Username person 
 Password email 
language Choose ... العربية Euskara Português brasileiro Català 简体中文 正體中文 Hrvatski Česky Dansk (Danmark) Nederlands English Suomi Français Deutsch עברית Magyar Íslenska bahasa Indonesia Italiano 日本語 Latviešu Lietuvių Македонски Norsk bokmål Norsk nynorsk Polski Português Română Русский Српски Slovensky Slovenščina Español (Argentina) Español (España) Svenska Türkçe (Türkiye) Українська Cymraeg
Remember username
info arrow_forward
Authenticating
Verification Code lock 
Enter the 6-digit verification code from your Google Authenticator application.
arrow_backward arrow_forward
done
Welcome {{app.cn}}
error
{{app.errorMessage}}
Retry
 
Here's my SOGo logs:
 
Apr 26 05:05:16 sogod [3735]: version 5.0.1 -- starting
Apr 26 05:05:16 sogod [3735]: vmem size check enabled: shutting down app when vmem > 384 MB. Currently at 84 MB
Apr 26 05:05:16 sogod [3735]: <0x0x55ca205ef060[SOGoProductLoader]> SOGo products loaded from '/usr/lib/GNUstep/SOGo':
Apr 26 05:05:16 sogod [3735]: <0x0x55ca205ef060[SOGoProductLoader]>   AdministrationUI.SOGo, Appointments.SOGo, CommonUI.SOGo, Contacts.SOGo, ContactsUI.SOGo, MailPartViewers.SOGo, Mailer.SOGo, MailerUI.SOGo, MainUI.SOGo, PreferencesUI.SOGo, SchedulerUI.SOGo
Apr 26 05:05:16 sogod [3735]: All products loaded - current memory usage at 92 MB
Apr 26 05:05:16 sogod [3735]: [WARN] <0x0x55ca20620b00[WOWatchDog]> 'WOHttpAllowHost' is ignored in watchdog mode, use a real firewall instead
Apr 26 05:05:16 sogod [3735]: <0x0x55ca20620b00[WOWatchDog]> listening on 0.0.0.0:20000
Apr 26 05:05:16 sogod [3735]: <0x0x55ca20620b00[WOWatchDog]> watchdog process pid: 3735
Apr 26 05:05:16 sogod [3735]: <0x0x7f9d3bc9a360[WOWatchDogChild]> watchdog request timeout set to 10 minutes
Apr 26 05:05:16 sogod [3735]: <0x0x55ca20620b00[WOWatchDog]> preparing 3 children
Apr 26 05:05:16 sogod [3735]: <0x0x55ca20620b00[WOWatchDog]> child spawned with pid 3736
Apr 26 05:05:16 sogod [3735]: <0x0x55ca20620b00[WOWatchDog]> child spawned with pid 3737
Apr 26 05:05:16 sogod [3735]: <0x0x55ca20620b00[WOWatchDog]> child spawned with pid 3738
Apr 26 05:05:16 sogod [3738]: <0x0x55ca20709ca0[WOHttpAdaptor]> notified the watchdog that we are ready
 
What I have to configure / reconfigure in order to make start page load?

Reply via email to