Re: [SOGo] Sogo still freeze and 100%CPU

2014-10-16 Thread Christian Mack
Hello Szládovics Péter

Am 2014-10-15 um 16:07 schrieb Szládovics Péter:
 2014-10-15 14:52 keltezéssel, Christian Mack írta:
 Am 2014-10-15 um 11:24 schrieb Sogo Thailand:
 Another cue is:
   3285 ?S  0:00 /usr/bin/tcpsvd -v -i ./peers -c 400 -C
 12:421 per host concurrency limit reached\r\n -l 0 0 imaps sslio -vv
 -/ ../imap/ssl -C imapd.pem -u stunnel /usr/bin/imapfront-auth
 /usr/libexec/dovecot/imap
   Does this show the problem? How Can I change the value to extend
 the limit?
 Yes, that is your problem.

 You have to set option PREFORK in either /etc/sysconfig/sogo or
 /etc/default/sogo to the number of workers you want to use.
 The value of WOWorkersCount in sogo.conf or GNUstepDefaults is
 overwritten by the start script /etc/init.d/sogod.
 
 This helped me too :)
 Christian, did you know what is the best practice for calculating
 WOWorkersCount/PREFORK values?
 
 An example:
 There is 15 user with Thunderbird/ActiveSync access (more user connected
 through two device simultaneously at the same time).
 The server has 4cores, 2,5GB memory. 15 WOWorkers are too much, or
 enough, or too less?
 How can I calculate it?

You can not calculate it precisely.
But you can get a rough estimate.

1) Every ActiveSync Users will consume one worker.
2) People using the web interface and DAV clients will only consume
workers on an access basis. So the workers needed depends on the sum of
concurrent access to SOGo.

The part of 2) is dependant on the refresh rates of your DAV clients and
the web use cases of your users.
E.g. if they only check their emails once per day via web, then the
workers needed are low.
If they keep being connected to SOGo the whole day while using SOGo,
there must be more workers.

So in your example above:
If every user has one ActiveSync device, then you have to provide 15
workers only for that.
In order for them to be able to use their 2nd device you have to add
additional workers.

In my experience 3 workers should be more than enough for 15 users to
satisfy their DAV and web accesses needs.

After initial setup, you have to monitor your performance.
So CPU usage, memory consumption, hard drive IO and number of concurrent
SOGo sessions should be observed.

You can always use the session table, in order to see, how many
sessions/clients were connected e.g. in the last 10 minutes.
E.g. in Postgres:
psql sogo sogo -c 'select now(), count(*) from sogo_sessions_folder
where c_lastseen  (extract(epoch from now())-(600));'


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] imap login map with outlook

2014-10-16 Thread Christian Mack
Hello Sinan Alyuruk

Am 2014-10-15 um 15:58 schrieb Sinan Alyuruk:
 
 On 10/15/2014 04:02 PM, Christian Mack wrote:
 I assume you use the native Outlook MAPI connectivity via openchange.
 right

 So you either have to allow anonymous access from your SOGo server, or
 you have to store all passwords in clear text for each Outlook user on
 your SOGo server,
 In order to test with some test accounts, is there a how-to for storing
 passwords for users on SOGo server?

From the Inverse documentation SOGo Native Microsoft Outlook
Configuration Section Adding Users:
If you don’t have a trust between your IMAP server and SOGo, you must
at this point set the clear text password of the newly created user in
/var/lib/samba4/private/mapistore/user-name/password
(or /var/lib/samba/private/mapistore/user-name/password on
Debian-based distributions).
This per-user file contains the clear text password of the user as a
UTF-8 string, on a single line. This password will be used to
authenticate SOGo/OpenChange storage provider to your IMAP server.


 or you have to enable kerberos authentication in your
 imap server.
 This hopefully be our final configuration in the end.

Good luck!


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] Sogo still freeze and 100%CPU

2014-10-16 Thread Sogo Thailand

On Wednesday, October 15, 2014 19:52 ICT, Christian Mack 
christian.m...@uni-konstanz.de wrote:

 Hello

 Am 2014-10-15 um 11:24 schrieb Sogo Thailand:
 
  Our server is freezed from time to time. I noticed even if I set 
  WOWorkersCount = 32 as following
 
  sogo-tool -dumpdefaults
  .
  .
  .
  WOMessageUseUTF8 = YES;
  WOParsersUseUTF8 = YES;
  WOPort = 127.0.0.1:2;
  WOUseRelativeURLs = YES;
  WOWorkersCount = 32;
  }
 
  ps -aux still show
  sogo  3681  5.7  0.0  26620  8836 ?S11:39  15:03 
  /usr/sbin/sogod -WOWorkersCount 3 -WOPidFile /var/run/sogo/sogo.pid 
  -WOLogFile /var/log/sogo/sogo.log
 
  Why its parameter is 3?
 
  Another cue is:
   3285 ?S  0:00 /usr/bin/tcpsvd -v -i ./peers -c 400 -C 12:421 
  per host concurrency limit reached\r\n -l 0 0 imaps sslio -vv -/ 
  ../imap/ssl -C imapd.pem -u stunnel /usr/bin/imapfront-auth 
  /usr/libexec/dovecot/imap
 
  Does this show the problem? How Can I change the value to extend the limit?
 

 Yes, that is your problem.

 You have to set option PREFORK in either /etc/sysconfig/sogo or
 /etc/default/sogo to the number of workers you want to use.
 The value of WOWorkersCount in sogo.conf or GNUstepDefaults is
 overwritten by the start script /etc/init.d/sogod.


 Kind regards,
 Christian Mack


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


 Hello  Mack

I managed to change PREFORK value to 32 as you mention.
We have 50 users and they access from web as the same time as smartphones .
Is figure 32 enough?

Somsak
--
Somsak



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

[SOGo] Sending Mail

2014-10-16 Thread Dawit Ayele
Hi All,

I am able to send mail from SOGo to yahoo,google but i am not getting mail
from google..
can you elp me what the problem is?

-- 
Best Regard

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

Re: Re: [SOGo] Cron sogo@HOST /usr/sbin/sogo-ealarms-notify

2014-10-16 Thread caparcona
Hi Francis,

 On the first line of your cronjob, add the following text:

Do you mean?

*   *   *   *   *   /usr/sbin/sogo-ealarms-notify MAILTO=

Doesn't work, unfortunately.

Btw, what is the idea of these messages? The last message line is still
present, if I unset the SOGoMemcachedHost in sogo.conf.
SOGoCacheCleanupInterval is unset (default) from the beginning.

Jan


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


Re: Re: [SOGo] slowly Mail view

2014-10-16 Thread caparcona
Hi Francis,

 Do you have a lot of mailboxes ( 100)? The JavaScript tree widget is
rendering pretty slowly.

Do you mean the depth of folder tree? Yes, but all are child’s from one
collapsed root folder by default. The rendering is still working for the whole
tree?

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

Re: [SOGo] Sogo still freeze and 100%CPU

2014-10-16 Thread Christian Mack
Am 2014-10-16 um 06:06 schrieb Sogo Thailand:
 
 On Wednesday, October 15, 2014 19:52 ICT, Christian Mack 
 christian.m...@uni-konstanz.de wrote:
 
 Hello

 Am 2014-10-15 um 11:24 schrieb Sogo Thailand:

 Our server is freezed from time to time. I noticed even if I set 
 WOWorkersCount = 32 as following

 sogo-tool -dumpdefaults
 .
 .
 .
 WOMessageUseUTF8 = YES;
 WOParsersUseUTF8 = YES;
 WOPort = 127.0.0.1:2;
 WOUseRelativeURLs = YES;
 WOWorkersCount = 32;
 }

 ps -aux still show
 sogo  3681  5.7  0.0  26620  8836 ?S11:39  15:03 
 /usr/sbin/sogod -WOWorkersCount 3 -WOPidFile /var/run/sogo/sogo.pid 
 -WOLogFile /var/log/sogo/sogo.log

 Why its parameter is 3?

 Another cue is:
  3285 ?S  0:00 /usr/bin/tcpsvd -v -i ./peers -c 400 -C 12:421 
 per host concurrency limit reached\r\n -l 0 0 imaps sslio -vv -/ 
 ../imap/ssl -C imapd.pem -u stunnel /usr/bin/imapfront-auth 
 /usr/libexec/dovecot/imap

 Does this show the problem? How Can I change the value to extend the limit?


 Yes, that is your problem.

 You have to set option PREFORK in either /etc/sysconfig/sogo or
 /etc/default/sogo to the number of workers you want to use.
 The value of WOWorkersCount in sogo.conf or GNUstepDefaults is
 overwritten by the start script /etc/init.d/sogod.

 
 I managed to change PREFORK value to 32 as you mention.
 We have 50 users and they access from web as the same time as smartphones .


You have probably read my answer to Szládovics Péter.

As long as you only use web and DAV access, 32 workers will be plenty
for 50 users.


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] Updated Wheezy Packages

2014-10-16 Thread Olivier Bitsch
I also discovered the package are dropped in Debian unstable :
https://packages.debian.org/source/unstable/openchange

But openchange-rpcproxy is missing, is there a workarround about this
feature now regarding this feature?

2014-10-14 14:06 GMT+02:00 Fabio Onorini onofa...@gmail.com:

 Any news about packages openchange-ocsmanager and openchange-rpcproxy ?

 The package python-ocsmanager is already existing in wheezy dist (no
 nightly).

 And what about openchange-rpcproxy ?

 2014-10-07 9:19 GMT+02:00 Fabio Onorini onofa...@gmail.com:

 OK.
 The package python-ocsmanager does not contain any init script, like in
 old version that start service openchange-ocsmanager on port 5000.
 Is this correct?

 2014-10-06 18:46 GMT+02:00 Ludovic Marcotte lmarco...@inverse.ca:

 On 2014-10-06 12:04 PM, Fabio Onorini wrote:

 what is my error?

 It's now called python-ocsmanager.

 --
 Ludovic Marcotte
 lmarco...@inverse.ca  ::  +1.514.755.3630  ::  http://inverse.ca
 Inverse inc. :: Leaders behind SOGo (http://sogo.nu) and PacketFence (
 http://packetfence.org)

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




 --

 Fabio Onorini




 --

 Fabio Onorini

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

Re: Re: [SOGo] Cron sogo@HOST /usr/sbin/sogo-ealarms-notify

2014-10-16 Thread Olivier Bitsch
Just replace the crontab line by :

*   *   *   *   *   /usr/sbin/sogo-ealarms-notify  /dev/null

2014-10-16 11:47 GMT+02:00 caparc...@web.de:

 Hi Francis,

  On the first line of your cronjob, add the following text:

 Do you mean?

 *   *   *   *   *   /usr/sbin/sogo-ealarms-notify MAILTO=

 Doesn't work, unfortunately.

 Btw, what is the idea of these messages? The last message line is still
 present, if I unset the SOGoMemcachedHost in sogo.conf.
 SOGoCacheCleanupInterval is unset (default) from the beginning.

 Jan


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

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

[SOGo] Mail notifications not working

2014-10-16 Thread nicolas

Hello,

If I created an event in calendars and add participants, Email 
notifications are not send to them.


I set in sogo.conf :
SOGoEnableEMailAlarms = YES;
SOGoNotifyOnPersonalModifications = YES;
SOGoAppointmentSendEmailNotifications = YES;
SOGoFoldersSendEmailNotifications = YES;
SOGoACLsSendEmailNotifications = YES;

I uncommented the cron task /usr/sbin/sogo-ealarms-notify and 
restarted SOGo after changes.


What miss I ?

Thanks a lot

Nicolas

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


Re: [SOGo] Mail notifications not working

2014-10-16 Thread Ludovic Marcotte

On 2014-10-16 7:55 AM, nico...@franceoxygene.fr wrote:
SOGoAppointmentSendEmailNotifications = YES; 

SOGoAppointmentSendE*M*ailNotifications.

--
Ludovic Marcotte
lmarco...@inverse.ca  ::  +1.514.755.3630  ::  http://inverse.ca
Inverse inc. :: Leaders behind SOGo (http://sogo.nu) and PacketFence 
(http://packetfence.org)

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

Re: [SOGo] Mail notifications not working

2014-10-16 Thread Nicolas Cauchie

Nice try ;)

But it still dosen't work :(

Also, when I run the cron tab, it returns me : 2014-10-16 14:39:25.454 
sogo-ealarms-notify[21440] EMail alarms are disabled in the SOGo 
configuration.


Here's now the conf file :
SOGoEnableEMailAlarms = YES;
SOGoNotifyOnPersonalModifications = YES;
SOGoAppointmentSendEMailNotifications = YES;
SOGoFoldersSendEMailNotifications = YES;
SOGoACLsSendEMailNotifications = YES;

I restarted SOGo service between changes.

Thanks

Nicolas

Le 16/10/2014 14:27, Ludovic Marcotte a écrit :

On 2014-10-16 7:55 AM, nico...@franceoxygene.fr wrote:
SOGoAppointmentSendEmailNotifications = YES; 

SOGoAppointmentSendE*M*ailNotifications.
--
Ludovic Marcotte
lmarco...@inverse.ca   ::  +1.514.755.3630  ::http://inverse.ca
Inverse inc. :: Leaders behind SOGo (http://sogo.nu) and PacketFence 
(http://packetfence.org)


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

Re: Re: [SOGo] Cron sogo@HOST /usr/sbin/sogo-ealarms-notify

2014-10-16 Thread zzeroo
No add it before your cron job like so

MAILTO=
*   *   *   *   *   /usr/sbin/sogo-ealarms-notify
Am 16.10.2014 11:47 schrieb caparc...@web.de:

 Hi Francis,

  On the first line of your cronjob, add the following text:

 Do you mean?

 *   *   *   *   *   /usr/sbin/sogo-ealarms-notify MAILTO=

 Doesn't work, unfortunately.

 Btw, what is the idea of these messages? The last message line is still
 present, if I unset the SOGoMemcachedHost in sogo.conf.
 SOGoCacheCleanupInterval is unset (default) from the beginning.

 Jan


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

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

Re: Re: Re: [SOGo] Cron sogo@HOST /usr/sbin/sogo-ealarms-notify

2014-10-16 Thread caparcona
 Just replace the crontab line by :

 *   *   *   *   *   /usr/sbin/sogo-ealarms-notify  /dev/null

Doesn't work, mail message still present.
Any other ideas?

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


[SOGo] Import ics calendars with sogo-tools

2014-10-16 Thread Cédric Richez

Hi,

I have a question, i have to integrate lots of people calendar to a 
sogo, all the calendar are in ICS, can i with sogo-tools import them  ?


And i can't ask user to import them from sogo's web interface.

thanks for your respons.
--
Cédric Richez
/Informaticien/
/Service Informatique/

*AGRICULTURES  TERRITOIRES*
*Chambres d'agriculture France*

*9, Avenue George V*
*75008 PARIS*
Tél.: 01 53 57 11 25
Fax: 01 53 57 11 29

*www.apca.chambagri.fr*
--
users@sogo.nu
https://inverse.ca/sogo/lists

Re: Re: Re: [SOGo] Cron sogo@HOST /usr/sbin/sogo-ealarms-notify

2014-10-16 Thread caparcona

 MAILTO=
 *   *   *   *   *   /usr/sbin/sogo-ealarms-notify


YEP, that it is. Btw, I'm the first with these behaviour?

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


Re: Re: [SOGo] Mail notifications not working

2014-10-16 Thread caparcona

Mhh, I think you forgotten:

OCSEMailAlarmsFolderURL =
mysql://USER:PASSWORD@localhost:3306/sogo/sogo_alarms_folder;

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


Re: [SOGo] Mail notifications not working

2014-10-16 Thread caparcona
Hi Nicolas,

 I uncommented the cron task /usr/sbin/sogo-ealarms-notify and restarted
SOGo after changes.

Simple uncomment /etc/cron.d/sogo did not work for me in ubuntu 12.04.5

Create a crontab for the user sogo:

crontab -e -u sogo

and paste the content from /etc/cron.d/sogo WITHOUT the user sogo
declaration in the lines.

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


Re: [SOGo] Cron sogo@HOST /usr/sbin/sogo-ealarms-notify

2014-10-16 Thread Jens Erat
Then probably the output is on STDERR, not STDOUT. This will redirect
STDERR to STDOUT, which subsequently is discarded:

 *   *   *   *   *   /usr/sbin/sogo-ealarms-notify 21  /dev/null

Regards,
Jens

Am 16.10.2014 um 14:38 schrieb caparc...@web.de:
 Just replace the crontab line by :

 *   *   *   *   *   /usr/sbin/sogo-ealarms-notify  /dev/null
 
 Doesn't work, mail message still present.
 Any other ideas?
 
 Jan
 
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] Mail notifications not working

2014-10-16 Thread Nicolas Cauchie

Sorry, didn't mentionned it, but it was already set in the conf file.

Thanks

Nicolas

Le 16/10/2014 14:53, caparc...@web.de a écrit :

Mhh, I think you forgotten:

OCSEMailAlarmsFolderURL =
mysql://USER:PASSWORD@localhost:3306/sogo/sogo_alarms_folder;

Jan


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


Re: Re: Re: [SOGo] Cron sogo@HOST /usr/sbin/sogo-ealarms-notify

2014-10-16 Thread Olivier Bitsch
Best practice are normally only redirecting stdout and not stderr, just to
get the error in case something goes wrong, I don't know why the output of
this script go on stderr.

But yes, to redirect all output script to nothing, append /dev/null 21
at the end of the script.

Olivier.

2014-10-16 14:57 GMT+02:00 caparc...@web.de:


  MAILTO=
  *   *   *   *   *   /usr/sbin/sogo-ealarms-notify


 YEP, that it is. Btw, I'm the first with these behaviour?

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

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

[SOGo] Lightning calendar auto refresh closes reminder dialog

2014-10-16 Thread euan.thoms
It seems that Lightning and SOGo calendar refresh mechanism have a bug, or
certainly behave badly. When the calendar refreshes against the server,
subject to preference 'calendar.autorefresh.timeout', the reminder dialog
closes, never to open again. This is a problem because if you go away for a
few minutes and come back to your desk, you may miss the reminder.

It seems that when the preference 'calendar.alarms.showmissed' is set to
'true', the problem is alleviated. It's as if it springs back after the
refresh. But with it set to 'false' the reminder notification dialog
disappears forever, no opertunity to snooze either.

It's hard to beleive this has gone unnoticed or fixed, it's pretty fundemental
to SOGo calendar users. Also, the default for 'calendar.alarms.showmissed' is
'false'. So it should effect most users.

I stumbled upon it when I was forcing my users prefs to 'false' for the said
setting, then the problem showed up very quickly under testing. The reason I
switched to 'false' was because some are experiencing problems with ghost
reminder popups. They keep coming back. Now I will have to test if there
really is an issue with dismiss reminder when 'calendar.alarms.showmissed' is
'true'. It may be a case of which is the lesser evil. I suspect past events
with reminders could be the cause.

SOGo 2.0.4b
Thunderbird 24.0.5
Lightning 2.6.6 (same case with 2.6.5)
Sogo Connector/ Integrator 24.0.7 (same case with 24.0.4)
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] Cron sogo@HOST /usr/sbin/sogo-ealarms-notify

2014-10-16 Thread Fabrice Rossi
Le 16/10/2014 14:57, caparc...@web.de a écrit :
 YEP, that it is. Btw, I'm the first with these behaviour?

I did observed that with version 2.2.8, but since the update to 2.2.9,
it's gone.

Fabrice

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


Re: [SOGo] Problems on large mailbox for activesync on Outlook 2013

2014-10-16 Thread Ludovic Marcotte

On 2014-10-03 10:36 AM, Jacques Morrisseau wrote:
The total size for my own folder is 2.5GB (with more or less 6 
email), the one for my boss is 40GB (unknown number of file at this 
moment).
To handle large folders like that, you would need to increase the word 
limit on your IMAP server much more.


Say you have 60 000 messages and they each have an IMAP UID larger than 
1 - 5 bytes are used, plus each comma separating them, during a 
request. So basically you would need a buffer of around 350 KB.


The parameter to adjust in Dovecot is imap_max_line_length while on 
Cyrus, it's maxword.


I've just tried with 100 000 messages on Cyrus and a 2MB buffer was 
good. Outlook is happily syncing chunks of 1024 messages.


Ultimately, we would need to modify SOPE to split very large requests 
into smaller ones but for now, we don't do it and you can adjust the 
parameters from your IMAP server to better handle this. The 
documentation has just been updated for that.


Ludo

--
Ludovic Marcotte
lmarco...@inverse.ca  ::  +1.514.755.3630  ::  http://inverse.ca
Inverse inc. :: Leaders behind SOGo (http://sogo.nu) and PacketFence 
(http://packetfence.org)

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


Re: Re: [SOGo] Cron sogo@HOST /usr/sbin/sogo-ealarms-notify

2014-10-16 Thread caparcona
 I did observed that with version 2.2.8, but since the update to 2.2.9, it's
gone.

I'm using ver. 2.2.9a

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


Re: Re: Re: Re: [SOGo] Cron sogo@HOST /usr/sbin/sogo-ealarms-notify

2014-10-16 Thread caparcona

 But yes, to redirect all output script to nothing, append /dev/null 21 at
the end of the script.

THX! best solution here...

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


Re: Re: Re: Re: [SOGo] Cron sogo@HOST /usr/sbin/sogo-ealarms-notify

2014-10-16 Thread caparcona
Thanks to all!

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


Re: [SOGo] Updated Wheezy Packages

2014-10-16 Thread Fabio Onorini
Yes,
openchange-rpcproxy is missing
and openchange-ocsmanager is not fully replaced by  python-ocsmanager.

2014-10-16 14:05 GMT+02:00 Olivier Bitsch olivier.bit...@gmail.com:

 I also discovered the package are dropped in Debian unstable :
 https://packages.debian.org/source/unstable/openchange

 But openchange-rpcproxy is missing, is there a workarround about this
 feature now regarding this feature?

 2014-10-14 14:06 GMT+02:00 Fabio Onorini onofa...@gmail.com:

 Any news about packages openchange-ocsmanager and openchange-rpcproxy ?

 The package python-ocsmanager is already existing in wheezy dist (no
 nightly).

 And what about openchange-rpcproxy ?

 2014-10-07 9:19 GMT+02:00 Fabio Onorini onofa...@gmail.com:

 OK.
 The package python-ocsmanager does not contain any init script, like in
 old version that start service openchange-ocsmanager on port 5000.
 Is this correct?

 2014-10-06 18:46 GMT+02:00 Ludovic Marcotte lmarco...@inverse.ca:

 On 2014-10-06 12:04 PM, Fabio Onorini wrote:

 what is my error?

 It's now called python-ocsmanager.

 --
 Ludovic Marcotte
 lmarco...@inverse.ca  ::  +1.514.755.3630  ::  http://inverse.ca
 Inverse inc. :: Leaders behind SOGo (http://sogo.nu) and PacketFence (
 http://packetfence.org)

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




 --

 Fabio Onorini




 --

 Fabio Onorini





-- 

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

Re: [SOGo] Cron sogo@HOST /usr/sbin/sogo-ealarms-notify

2014-10-16 Thread Scott Jordahl

Actually, the best way to do this would be:

*   *   *   *   *   MAILTO=;/usr/sbin/sogo-ealarms-notify

-- Scott

On 10/16/2014 06:37 AM, Louis-Philippe wrote:

Hi,

Caution :
If you put MAILTO= , it will affect *ALL* your cronjob.

For a *specific* cronjob, you must add at the end:

/dev/null 21

Googling : cronjob disable email notification  ;-)

Thanks,


2014-10-16 8:38 GMT-04:00 caparc...@web.de mailto:caparc...@web.de:

 Just replace the crontab line by :

 *   *   *   *   *   /usr/sbin/sogo-ealarms-notify  /dev/null

Doesn't work, mail message still present.
Any other ideas?

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




--
Louis-Philippe Gauthier


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

Aw: [SOGo] Upcoming v2.2.9 release + v3 release

2014-10-16 Thread Infoomatic

v3 looks nice and modern.

Is there any time plan for v3 release?



Best regards,

infoomatic



Gesendet:Donnerstag, 11. September 2014 um 17:32 Uhr
Von:Ludovic Marcotte lmarco...@inverse.ca
An:users@sogo.nu
Betreff:[SOGo] Upcoming v2.2.9 release + v3 release


Hello,

SOGo v2.2.9 should be released in the next 2-3 weeks. Itll have the following enhancements:

	Up-to-date Samba/OpenChange versions and packages
	Support for repetitive alarms and repetitive tasks
	SAML improvements
	iCal/iOS improvements
	Asciidoc-based documentation


As for v3, you can now test it from:

http://demo.sogo.nu/SOGo

or from there, for the mobile version:

http://demo.sogo.nu/SOGo?theme=mobile

You can use the sogo1, sogo2 and sogo3 test users (password is sogo1, sogo2 or sogo3). Note that for now, only the Address Book module has been converted to AngularJS/Foundation/Ionic. We are currently converting other modules (Calendar / Mail / Preferences) as we laid out a nice foundation with the Address Book module.

Your feedback is appreciated on v3!

Best regards,

-- 
Ludovic Marcotte
lmarco...@inverse.ca  ::  +1.514.755.3630  ::  http://inverse.ca
Inverse inc. :: Leaders behind SOGo (http://sogo.nu) and PacketFence (http://packetfence.org)








Re: Re: [SOGo] Cron sogo@HOST /usr/sbin/sogo-ealarms-notify

2014-10-16 Thread caparcona

 *   *   *   *   *   MAILTO=;/usr/sbin/sogo-ealarms-notify

doesn't worked...
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


[SOGo] BTS activities for Thursday, October 16 2014

2014-10-16 Thread SOGo reporter
Title: BTS activities for Thursday, October 16 2014





  
BTS Activities

  Home page: http://www.sogo.nu/bugs
  Project: SOGo
  For the period covering: Thursday, October 16 2014

  
  
idlast updatestatus (resolution)categorysummary
	
	
	  
	
2955
	2014-10-16 05:26:15
	updated (open)
	Backend Address Book
	Error adress book "We have a card without ID..." - Inverse SOGo Connector + Category Manager
	
	  
	
2804
	2014-10-16 13:29:43
	resolved (suspended)
	ActiveSync
	After initial sync can't sync mails anymore
	
	  
	
2956
	2014-10-16 13:03:01
	resolved (duplicate)
	with external server
	Not all downloaded contacts in address book
	
	  
	
2713
	2014-10-16 13:28:58
	closed (fixed)
	ActiveSync
	ActiveSync WP8