Re: [SOGo] Fail to connect after migration

2016-03-02 Thread Christian Mack
Am 01.03.2016 um 21:40 schrieb Dominique:
> On 01/03/2016 15:56, Christian Mack wrote:
>> Am 01.03.2016 um 14:06 schrieb Dominique:
>>> Hi,
>>>
>>> I have a running SOGo under Ubuntu 12.04 that I want to move to another
>>> server running Ubuntu 14.04.
>>> I installed SOGo into the new server and copied the entire MySQL
>>> database from one server to another - export sql from one side, import
>>> sql on the other server.
>>> The SOGo user is created and allows connection from the cli and can see
>>> all the tables in the SOGo DB
>>> However, from the SOGo interface... nothing. Not able to connect. In the
>>> log, it shows as follow:
>>>
>>> 2016-03-01 13:33:50.176 sogod[9628] ERROR: could not open MySQL4
>>> connection to database 'sogo': Access denied for user 'sogo'@'localhost'
>>> (using password: YES)
>>> Mar 01 13:33:50 sogod [9628]: [ERROR]
>>> <0x0x7f352f514b58[GCSChannelManager]> could not open channel
>>>  for
>>> mysql://localhost/sogo/sogo_user_profile
>>> Mar 01 13:33:50 sogod [9628]: [WARN]
>>> <0x0x7f352f514b58[GCSChannelManager]>   will prevent opening of this
>>> channel 5 seconds after 2016-03-01 13:33:50 +0100
>>>
>>> My config file is as follow - The same config file is working properly
>>> in Ubuntu 12.04:
>>>
>>> {
>>>  SOGoProfileURL =
>>> "mysql://sogo:sogo@localhost:3306/sogo/sogo_user_profile";
>>>  OCSFolderInfoURL =
>>> "mysql://sogo:sogo@localhost:3306/sogo/sogo_folder_info";
>>>  OCSSessionsFolderURL =
>>> "mysql://sogo:sogo@localhost:3306/sogo/sogo_sessions_folder";
>>>
>>>  SOGoDraftsFolderName = Drafts;
>>>  SOGoSentFolderName = Sent;
>>>  SOGoTrashFolderName = Trash;
>>>
>>>  SOGoIMAPServer = "imap://mail.domain.tld";
>>>  SOGoSieveServer = "sieve://mail.domain.tld:4190";
>>>
>>>  SOGoMailDomain = "domain.tld";
>>>  SOGoMailingMechanism = smtp;
>>>
>>>  SOGoForceIMAPLoginWithEmail = YES;
>>>
>>>  SOGoUserSources = (
>>>  {
>>>  canAuthenticate = YES;
>>>  displayName = "Shared Addresses";
>>>  id = accounts;
>>>  isAddressBook = NO;
>>>  type = sql;
>>>  userPasswordAlgorithm = none;
>>>  viewURL = "http://sogo:sogo@localhost:3306/sogo/sogo_view";;
>>>  }
>>>  );
>>>
>>>  SOGoVacationEnabled = YES;
>>>  SOGoForwardEnabled = YES;
>>>  SOGoSieveScriptsEnabled = YES;
>>>  SOGoMailAuxiliaryUserAccountsEnabled = YES;
>>>
>>>
>>>  SOGoTimeZone = "Europe/Madrid";
>>>  SOGoLanguage = SpanishSpain;
>>>
>>>  SOGoCalendarDefaultRoles = (
>>>  PublicViewer,
>>>  ConfidentialDAndTViewer
>>>  );
>>>
>>>  WOLogFile = /var/log/sogo/sogo.log;
>>>  WOWorkersCount = 10;
>>>
>>>  SOGoSpecialFoldersInRoot = YES; /* Deprecated ?*/
>>>  SOGoAuthenticationMethod = sql; /* Deprecated ?*/
>>>  NGImap4DisableIMAP4Pooling = YES; /* Deprecated ?*/
>>>  NGUseUTF8AsURLEncoding = YES; /* Deprecated ?*/
>>>
>>>/* Email Reminders */
>>>
>>>  SOGoEnableEMailAlarms = YES;
>>>  SOGoFoldersSendEMailNotifications = YES;
>>>  SOGoACLsSendEMailNotifications = YES; /* Deprecated ?*/
>>>  SOGoAppointmentSendEMailNotifications = YES;
>>>  OCSEMailAlarmsFolderURL =
>>> "mysql://sogo:sogo@localhost:3306/sogo/sogo_alarms_folder";
>>>
>>> }
>>>
>>> Any ideas ?
>>>
>> Did you export your mysql database in UTF-8?
>> The newer mysql versions create their tables with UTF-8 as default
>> character set.
>>
>>
>> Kind regards,
>> Christian Mack
>>
> The database was exported to UTF8, but most of the tables where in
> latin1. After reloading the original data I converted all tables to
> UTF-8. No change. sogo.log still rejects the connection:
> 
> 2016-03-01 21:08:46.694 sogod[9168] ERROR: could not open MySQL4
> connection to database 'sogo': Access denied for user 'sogo'@'localhost'
> (using password: YES)
> Mar 01 21:08:46 sogod [9168]: [ERROR]
> <0x0x7f67af8d9b58[GCSChannelManager]> could not open channel
>  for
> http://localhost/sogo/sogo_view
> 

Did you also migrate the "mysql" database and restarted mysql afterwards?


Kind regards,
Christian Mack

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



smime.p7s
Description: S/MIME Cryptographic Signature


Re: [SOGo] Problems with SOGo 3 Calendar

2016-03-02 Thread Franklin May
UPDATE
To anyone who can help me to solve this issue, this is my server's sogo.log
file, i hope this make easier to find where is the bug. P.D. i changed the
domain name in the file.

https://drive.google.com/open?id=0B9kB4ZKxbLwpWE1aQ3VzQnJISms
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] Fail to connect after migration

2016-03-02 Thread Alessandro Briosi
Il 01/03/2016 21:40, Dominique ha scritto:
> The database was exported to UTF8, but most of the tables where in
> latin1. After reloading the original data I converted all tables to
> UTF-8. No change. sogo.log still rejects the connection:
>
> 2016-03-01 21:08:46.694 sogod[9168] ERROR: could not open MySQL4
> connection to database 'sogo': Access denied for user
> 'sogo'@'localhost' (using password: YES)
> Mar 01 21:08:46 sogod [9168]: [ERROR]
> <0x0x7f67af8d9b58[GCSChannelManager]> could not open channel
>  for
> http://localhost/sogo/sogo_view
>

The log is pretty explanatory. It says that the user sogo@localhost
cannot access mysql using the specified password.
You need to check the configuration and permissions.

Are you really sure that doing:

mysql -u user -h localhost --password=password database
(replaing user with the database user, password with the user password
and database with the sogo database)
i.e.
mysql -u sogo -h localhost --password=MySecretPassword123 sogo

as specified in your connection string that should be
mysql -u sogo -h localhost --password=sogo sogo

works?
if so check the credentials you have specified in the connection string
corresponds.


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


Re: [SOGo] Problem with color of categories

2016-03-02 Thread Sam

Hello all,

For me the same things are produce in http://demo.sogo.nu/SOGo/  ...
I don't see any category's color in the calendar.
Additionnally, if I add or remove a category of an event and save, the 
event move one day before...


I am on firefox ESR 38.6.1

Sam

Le 02/03/2016 04:04, Roy Riedl a écrit :

Hi Francis,

Thanks for quick reply.
The light blue that appears in my screenshot is not the color of my "Travel" 
category. That's right.


Sorry for short description. Here are some more details.

I use SOGo Version 3.0.1 on CentOS 2.6.32-042stab112.15 and I plan to use the 
system with tablet and the web UI.
The issue also appears on Online Demo V3 - http://demo.sogo.nu/SOGo/


Steps to reproduce:
1. User webclient to login SOGo with your credentials.
2. Navigate to Preferences -> Calandar -> Categories.
3. Add a new category and set a new color.
4. Navigate to Calandar.
5. Add an event with all neccesary data and the newly created category.


The event doesn't display the colored category on events tab (3px on the left 
side).



The same issue on Task tab. Add a new task with an colored category.


The event in calendar doesn't display colored categories on the right side 
(3px).

This issue reproduces on all browsers (Chrome, FF, IE).


Thanks,
Roy




Hello Roy


On Mar 1, 2016, at 3:17 AM, Roy Riedl  wrote:

I have a problem with the color of categories. The color of category doesn't 
display at the event in calendar.
I have added some events on the calendar and set a category with color.


At the left border of events should display the color of category in calendar. 
But the left border doesn't display at the right color. It seems the calss 
sg-category doesn't return the background color for category.

What's wrong? Is there a setting to display the color for category?
I hope someone can help me.

The light blue that appears in your screenshot is not the color you assigned to your 
"Travel" category?

Let me know if I understand the issue correctly.

Thanks!

Francis

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


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


[SOGo] spammed when user accept / refuse event calendar

2016-03-02 Thread Maxime RUBINO

Hi SOGo Users,

when a user invites another user to participate in an event , it will 
receive an email to accept or refuse participation , ok .


the first user receive a confirmation of accept / reject the event by 
email every time he checks his emails on his iphone, he is spammed :


"Acceptée : Réunion blablabla" 2016/03/02 02:11"
"Acceptée : Réunion blablabla" 2016/03/02 07:17"
"Acceptée : Réunion blablabla" 2016/03/02 10:32"
"Acceptée : Réunion blablabla" 2016/03/02 10:59"
"Acceptée : Réunion blablabla" 2016/03/02 14:32"
...

Do you have an idea ?

--
Cordialement,
Maxime RUBINO

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


Re: [SOGo] Fail to connect after migration

2016-03-02 Thread Dominique

On 02/03/2016 09:21, Christian Mack wrote:

Am 01.03.2016 um 21:40 schrieb Dominique:

On 01/03/2016 15:56, Christian Mack wrote:

Am 01.03.2016 um 14:06 schrieb Dominique:

Hi,

I have a running SOGo under Ubuntu 12.04 that I want to move to another
server running Ubuntu 14.04.
I installed SOGo into the new server and copied the entire MySQL
database from one server to another - export sql from one side, import
sql on the other server.
The SOGo user is created and allows connection from the cli and can see
all the tables in the SOGo DB
However, from the SOGo interface... nothing. Not able to connect. In the
log, it shows as follow:

2016-03-01 13:33:50.176 sogod[9628] ERROR: could not open MySQL4
connection to database 'sogo': Access denied for user 'sogo'@'localhost'
(using password: YES)
Mar 01 13:33:50 sogod [9628]: [ERROR]
<0x0x7f352f514b58[GCSChannelManager]> could not open channel
 for
mysql://localhost/sogo/sogo_user_profile
Mar 01 13:33:50 sogod [9628]: [WARN]
<0x0x7f352f514b58[GCSChannelManager]>   will prevent opening of this
channel 5 seconds after 2016-03-01 13:33:50 +0100

My config file is as follow - The same config file is working properly
in Ubuntu 12.04:

{
  SOGoProfileURL =
"mysql://sogo:sogo@localhost:3306/sogo/sogo_user_profile";
  OCSFolderInfoURL =
"mysql://sogo:sogo@localhost:3306/sogo/sogo_folder_info";
  OCSSessionsFolderURL =
"mysql://sogo:sogo@localhost:3306/sogo/sogo_sessions_folder";

  SOGoDraftsFolderName = Drafts;
  SOGoSentFolderName = Sent;
  SOGoTrashFolderName = Trash;

  SOGoIMAPServer = "imap://mail.domain.tld";
  SOGoSieveServer = "sieve://mail.domain.tld:4190";

  SOGoMailDomain = "domain.tld";
  SOGoMailingMechanism = smtp;

  SOGoForceIMAPLoginWithEmail = YES;

  SOGoUserSources = (
  {
  canAuthenticate = YES;
  displayName = "Shared Addresses";
  id = accounts;
  isAddressBook = NO;
  type = sql;
  userPasswordAlgorithm = none;
  viewURL = "http://sogo:sogo@localhost:3306/sogo/sogo_view";;
  }
  );

  SOGoVacationEnabled = YES;
  SOGoForwardEnabled = YES;
  SOGoSieveScriptsEnabled = YES;
  SOGoMailAuxiliaryUserAccountsEnabled = YES;


  SOGoTimeZone = "Europe/Madrid";
  SOGoLanguage = SpanishSpain;

  SOGoCalendarDefaultRoles = (
  PublicViewer,
  ConfidentialDAndTViewer
  );

  WOLogFile = /var/log/sogo/sogo.log;
  WOWorkersCount = 10;

  SOGoSpecialFoldersInRoot = YES; /* Deprecated ?*/
  SOGoAuthenticationMethod = sql; /* Deprecated ?*/
  NGImap4DisableIMAP4Pooling = YES; /* Deprecated ?*/
  NGUseUTF8AsURLEncoding = YES; /* Deprecated ?*/

/* Email Reminders */

  SOGoEnableEMailAlarms = YES;
  SOGoFoldersSendEMailNotifications = YES;
  SOGoACLsSendEMailNotifications = YES; /* Deprecated ?*/
  SOGoAppointmentSendEMailNotifications = YES;
  OCSEMailAlarmsFolderURL =
"mysql://sogo:sogo@localhost:3306/sogo/sogo_alarms_folder";

}

Any ideas ?


Did you export your mysql database in UTF-8?
The newer mysql versions create their tables with UTF-8 as default
character set.


Kind regards,
Christian Mack


The database was exported to UTF8, but most of the tables where in
latin1. After reloading the original data I converted all tables to
UTF-8. No change. sogo.log still rejects the connection:

2016-03-01 21:08:46.694 sogod[9168] ERROR: could not open MySQL4
connection to database 'sogo': Access denied for user 'sogo'@'localhost'
(using password: YES)
Mar 01 21:08:46 sogod [9168]: [ERROR]
<0x0x7f67af8d9b58[GCSChannelManager]> could not open channel
 for
http://localhost/sogo/sogo_view


Did you also migrate the "mysql" database and restarted mysql afterwards?


Kind regards,
Christian Mack

No. I did not move the 'mysql' database. The receiving server already 
has other programs installed with mysql back-end. I cannot just dump the 
existing one and replace it with the old ones. Any specific table 
entries that needs to be moved ?


Dominique

---
This email has been checked for viruses by Avast antivirus software.
https://www.avast.com/antivirus

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


Re: [SOGo] Fail to connect after migration

2016-03-02 Thread Christian Mack
Am 02.03.2016 um 12:26 schrieb Dominique:
> On 02/03/2016 09:21, Christian Mack wrote:
>> Am 01.03.2016 um 21:40 schrieb Dominique:
>>> On 01/03/2016 15:56, Christian Mack wrote:
 Am 01.03.2016 um 14:06 schrieb Dominique:
> Hi,
>
> I have a running SOGo under Ubuntu 12.04 that I want to move to
> another
> server running Ubuntu 14.04.
> I installed SOGo into the new server and copied the entire MySQL
> database from one server to another - export sql from one side, import
> sql on the other server.
> The SOGo user is created and allows connection from the cli and can
> see
> all the tables in the SOGo DB
> However, from the SOGo interface... nothing. Not able to connect.
> In the
> log, it shows as follow:
>
> 2016-03-01 13:33:50.176 sogod[9628] ERROR: could not open MySQL4
> connection to database 'sogo': Access denied for user
> 'sogo'@'localhost'
> (using password: YES)
> Mar 01 13:33:50 sogod [9628]: [ERROR]
> <0x0x7f352f514b58[GCSChannelManager]> could not open channel
>  for
> mysql://localhost/sogo/sogo_user_profile
> Mar 01 13:33:50 sogod [9628]: [WARN]
> <0x0x7f352f514b58[GCSChannelManager]>   will prevent opening of this
> channel 5 seconds after 2016-03-01 13:33:50 +0100
>
> My config file is as follow - The same config file is working properly
> in Ubuntu 12.04:
>
> {
>   SOGoProfileURL =
> "mysql://sogo:sogo@localhost:3306/sogo/sogo_user_profile";
>   OCSFolderInfoURL =
> "mysql://sogo:sogo@localhost:3306/sogo/sogo_folder_info";
>   OCSSessionsFolderURL =
> "mysql://sogo:sogo@localhost:3306/sogo/sogo_sessions_folder";
>
>   SOGoDraftsFolderName = Drafts;
>   SOGoSentFolderName = Sent;
>   SOGoTrashFolderName = Trash;
>
>   SOGoIMAPServer = "imap://mail.domain.tld";
>   SOGoSieveServer = "sieve://mail.domain.tld:4190";
>
>   SOGoMailDomain = "domain.tld";
>   SOGoMailingMechanism = smtp;
>
>   SOGoForceIMAPLoginWithEmail = YES;
>
>   SOGoUserSources = (
>   {
>   canAuthenticate = YES;
>   displayName = "Shared Addresses";
>   id = accounts;
>   isAddressBook = NO;
>   type = sql;
>   userPasswordAlgorithm = none;
>   viewURL = "http://sogo:sogo@localhost:3306/sogo/sogo_view";;
>   }
>   );
>
>   SOGoVacationEnabled = YES;
>   SOGoForwardEnabled = YES;
>   SOGoSieveScriptsEnabled = YES;
>   SOGoMailAuxiliaryUserAccountsEnabled = YES;
>
>
>   SOGoTimeZone = "Europe/Madrid";
>   SOGoLanguage = SpanishSpain;
>
>   SOGoCalendarDefaultRoles = (
>   PublicViewer,
>   ConfidentialDAndTViewer
>   );
>
>   WOLogFile = /var/log/sogo/sogo.log;
>   WOWorkersCount = 10;
>
>   SOGoSpecialFoldersInRoot = YES; /* Deprecated ?*/
>   SOGoAuthenticationMethod = sql; /* Deprecated ?*/
>   NGImap4DisableIMAP4Pooling = YES; /* Deprecated ?*/
>   NGUseUTF8AsURLEncoding = YES; /* Deprecated ?*/
>
> /* Email Reminders */
>
>   SOGoEnableEMailAlarms = YES;
>   SOGoFoldersSendEMailNotifications = YES;
>   SOGoACLsSendEMailNotifications = YES; /* Deprecated ?*/
>   SOGoAppointmentSendEMailNotifications = YES;
>   OCSEMailAlarmsFolderURL =
> "mysql://sogo:sogo@localhost:3306/sogo/sogo_alarms_folder";
>
> }
>
> Any ideas ?
>
 Did you export your mysql database in UTF-8?
 The newer mysql versions create their tables with UTF-8 as default
 character set.


 Kind regards,
 Christian Mack

>>> The database was exported to UTF8, but most of the tables where in
>>> latin1. After reloading the original data I converted all tables to
>>> UTF-8. No change. sogo.log still rejects the connection:
>>>
>>> 2016-03-01 21:08:46.694 sogod[9168] ERROR: could not open MySQL4
>>> connection to database 'sogo': Access denied for user 'sogo'@'localhost'
>>> (using password: YES)
>>> Mar 01 21:08:46 sogod [9168]: [ERROR]
>>> <0x0x7f67af8d9b58[GCSChannelManager]> could not open channel
>>>  for
>>> http://localhost/sogo/sogo_view
>>>
>> Did you also migrate the "mysql" database and restarted mysql afterwards?
>>
>>
>> Kind regards,
>> Christian Mack
>>
> No. I did not move the 'mysql' database. The receiving server already
> has other programs installed with mysql back-end. I cannot just dump the
> existing one and replace it with the old ones. Any specific table
> entries that needs to be moved ?
> 

Then you need to add the user "sogo"@"localhost" with the password from
your sogo.conf and all privileges on the database "sogo".


Kind regards,
Christian Mack

-- 
Christian Mack
Universität Konstanz
Kommunikations-, Informations-,

Re: [SOGo] Fail to connect after migration

2016-03-02 Thread Dominique

On 02/03/2016 09:27, Alessandro Briosi wrote:

Il 01/03/2016 21:40, Dominique ha scritto:

The database was exported to UTF8, but most of the tables where in
latin1. After reloading the original data I converted all tables to
UTF-8. No change. sogo.log still rejects the connection:

2016-03-01 21:08:46.694 sogod[9168] ERROR: could not open MySQL4
connection to database 'sogo': Access denied for user
'sogo'@'localhost' (using password: YES)
Mar 01 21:08:46 sogod [9168]: [ERROR]
<0x0x7f67af8d9b58[GCSChannelManager]> could not open channel
 for
http://localhost/sogo/sogo_view


The log is pretty explanatory. It says that the user sogo@localhost
cannot access mysql using the specified password.
You need to check the configuration and permissions.

Are you really sure that doing:

mysql -u user -h localhost --password=password database
(replaing user with the database user, password with the user password
and database with the sogo database)
i.e.
mysql -u sogo -h localhost --password=MySecretPassword123 sogo

as specified in your connection string that should be
mysql -u sogo -h localhost --password=sogo sogo

works?
if so check the credentials you have specified in the connection string
corresponds.


Alessandro
I guess you missed the beginning of the original post... I can connect 
to mysql through the command line, or phpmyadmin with the sogo 
credentials. As far as the credentials in the conf file, it is the 
original conf file, that works in the original server... not even 
possible to get a mistyped entry there.


Dominique


---
This email has been checked for viruses by Avast antivirus software.
https://www.avast.com/antivirus

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


Re: [SOGo] Fail to connect after migration

2016-03-02 Thread Alessandro Briosi
Il 02/03/2016 12:35, Dominique ha scritto:
> I guess you missed the beginning of the original post... I can connect
> to mysql through the command line, or phpmyadmin with the sogo
> credentials. As far as the credentials in the conf file, it is the
> original conf file, that works in the original server... not even
> possible to get a mistyped entry there.

No I didn't miss it, though the error is typical for mysql
authentication problem, and I think you should check there.

You sure you have created the sogo user with the right password?

GRANT ALL PRIVILEGES ON sogo.* TO 'sogo'@'localhost' IDENTIFIED BY 'sogo';

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


[SOGo] Cannot run ocsmanger

2016-03-02 Thread Pyromanci .
Hello,

I've been struggling to get SOGo and Openchange up and running. I
finally got SOGo working properly, but the ocsmanager is not. So I
looked at teh logs and saw a hard crash. with "ImportError: No module
named mapistore"

I did some searching and found thi bug report
http://sogo.nu/bugs/view.php?id=3012

So I downloaded the source rpm and built the missing libary.
http://sogo.nu/files/downloads/SOGo/RHEL6/SRPMS/openchange-2.2.r4816.sogo-1.centos6.src.rpm

After copying the missing .so files over to the python folder. I tired
starting the ocsmanager again. It still wouldn't start. So i looked at
the log and say this:

Traceback (most recent call last):
  File "/usr/bin/paster", line 9, in 
load_entry_point('PasteScript==1.7.5', 'console_scripts', 'paster')()
  File "/usr/lib/python2.6/site-packages/paste/script/command.py",
line 104, in run
invoke(command, command_name, options, args[1:])
  File "/usr/lib/python2.6/site-packages/paste/script/command.py",
line 143, in invoke
exit_code = runner.run(args)
  File "/usr/lib/python2.6/site-packages/paste/script/command.py",
line 238, in run
result = self.command()
  File "/usr/lib/python2.6/site-packages/paste/script/serve.py", line
284, in command
relative_to=base, global_conf=vars)
  File "/usr/lib/python2.6/site-packages/paste/script/serve.py", line
321, in loadapp
**kw)
  File "/usr/lib/python2.6/site-packages/paste/deploy/loadwsgi.py",
line 247, in loadapp
return loadobj(APP, uri, name=name, **kw)
  File "/usr/lib/python2.6/site-packages/paste/deploy/loadwsgi.py",
line 272, in loadobj
return context.create()
  File "/usr/lib/python2.6/site-packages/paste/deploy/loadwsgi.py",
line 710, in create
return self.object_type.invoke(self)
  File "/usr/lib/python2.6/site-packages/paste/deploy/loadwsgi.py",
line 146, in invoke
return fix_call(context.object, context.global_conf, **context.local_conf)
  File "/usr/lib/python2.6/site-packages/paste/deploy/util.py", line
56, in fix_call
val = callable(*args, **kw)
  File "/usr/lib/python2.6/site-packages/ocsmanager/config/middleware.py",
line 43, in make_app
config = load_environment(global_conf, app_conf)
  File "/usr/lib/python2.6/site-packages/ocsmanager/config/environment.py",
line 135, in load_environment
mstore = mapistore.MAPIStore(config['ocsmanager']['main']['mapistore_root'])
SystemError: error in mapistore_init

This wasn't very helpful so I started it by hand instead of the service command.

# /usr/bin/paster serve /etc/ocsmanager/ocsmanager.ini --pid-file
/var/run/ocsmanager/ocsmanager.pid --log-file
/var/log/ocsmanager/ocsmanager.log

params.c:pm_process() - Processing configuration file
"/etc/samba/openchange.conf"
ldb_wrap open of secrets.ldb
Initialising global parameters
lpcfg_load: refreshing parameters from /etc/samba/smb.conf
params.c:pm_process() - Processing configuration file "/etc/samba/smb.conf"
params.c:pm_process() - Processing configuration file
"/etc/samba/openchange.conf"
Unable to open /usr/lib64/mapistore_backends/libMAPIStoreSOGo.so:
/usr/lib64/mapistore_backends/libMAPIStoreSOGo.so: undefined symbol:
oc_log
Unable to open /usr/lib64/mapistore_backends/libMAPIStoreSOGo.so.1.0.0:
/usr/lib64/mapistore_backends/libMAPIStoreSOGo.so.1.0.0: undefined
symbol: oc_log
Unable to open /usr/lib64/mapistore_backends/libMAPIStoreSOGo.so.1:
/usr/lib64/mapistore_backends/libMAPIStoreSOGo.so.1: undefined symbol:
oc_log

At the moment i'm a little at a loss as to how to get it up and running now.
The OS is CentOS 6.7 x86_64

The Software versions are:
rpm -qa | egrep "samba|sogo|openchange"
openchange-rpcproxy-2.2.r4816.sogo-1.centos6.x86_64
sogo-3.0.1-1.centos6.x86_64
sogo-ealarms-notify-3.0.1-1.centos6.x86_64
samba-devel-4.1.18-2.centos6.x86_64
samba-dc-4.1.18-2.centos6.x86_64
samba-libs-4.1.18-2.centos6.x86_64
samba-client-4.1.18-2.centos6.x86_64
sogo-openchange-backend-3.0.0b1-1.centos6.x86_64
sogo-devel-3.0.1-1.centos6.x86_64
samba-dc-libs-4.1.18-2.centos6.x86_64
samba-4.1.18-2.centos6.x86_64
openchange-ocsmanager-2.2.r4816.sogo-1.centos6.x86_64
sogo-tool-3.0.1-1.centos6.x86_64
sogo-debuginfo-3.0.1-1.centos6.x86_64
samba-pidl-4.1.18-2.centos6.noarch
samba-common-4.1.18-2.centos6.x86_64
openchange-2.2.r4816.sogo-1.centos6.x86_64
sogo-activesync-3.0.1-1.centos6.x86_64
sogo-slapd-sockd-3.0.1-1.centos6.x86_64
samba-python-4.1.18-2.centos6.x86_64
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


[SOGo] BTS activities for Wednesday, March 02 2016

2016-03-02 Thread SOGo reporter
Title: BTS activities for Wednesday, March 02 2016





  
BTS Activities

  Home page: http://www.sogo.nu/bugs
  Project: SOGo
  For the period covering: Wednesday, March 02 2016

  
  
idlast updatestatus (resolution)categorysummary
	
	
	  
	
3538
	2016-03-02 11:26:22
	updated (open)
	Backend Calendar
	Cannot save new event with iCalendar on Mac OS X 10.11.3
	
	  
	
3481
	2016-03-02 16:15:14
	updated (fixed)
	Web Address Book
	Day Selected in the Addressbook Calendar is off by one form the one shown after selection
	
	  
	
3494
	2016-03-02 16:15:14
	updated (fixed)
	Web Calendar
	Calendar selects date 1 day in the past
	
	  
	
3548
	2016-03-02 11:22:43
	updated (open)
	Web Mail
	can not send mail to all contacts of a category
	
	  
	
3558
	2016-03-02 03:28:00
	updated (open)
	Web Mail
	E-Mail "Hide Modus" disable
	
	  
	
3559
	2016-03-02 10:06:26
	updated (open)
	Web Preferences
	Missing strings from swedish localization causes "NAME:NSRangeException REASON:Index 19 is out of range 19" on preferences
	
	  
	
  
  


-- users@sogo.nuhttps://inverse.ca/sogo/lists