Re: [SOGo] Redirect to sogo.

2015-05-30 Thread Sven Marth
Am 30.05.2015 um 04:13 schrieb John McMonagle:
 On Friday, May 29, 2015 10:06:00 PM Kai-Uwe Rommel wrote:
 users-requ...@sogo.nu wrote on 29.05.2015 21:09:42:
 I'm setting up sogo from the debian jessie repository.

 As this is the only web service I'd like to redirect
 https://nmail.advocap.org to
 https://nmail.advocap.org/GOGo

 Redirect /webmail https://nmail.advocap.org/SOGo
 Works but

 Redirect / https://nmail.advocap.org/SOGo
 Does not.

 Any Suggestions?

 Yes. Instead put a index.html with this content into the root HTML
 document directory:

 META HTTP-EQUIV=Refresh Content=0;
 URL=https://nmail.advocap.org/SOGo/;;


 Kai-Uwe Rommel

 kai-uwe.rom...@ars.de
 Telefon+Mobil +49 89 32468-120



 ARS Computer und Consulting GmbH, http://www.ars.de
 Ridlerstrasse 55, 80339 Muenchen, Deutschland

 Application Development Services, Business Transformation Services, IT
 Infrastruktur Services
 Beratung und Vertrieb zu IBM Software, System x, POWER Systems, Storage
 License Management Services, IBM Passport Advantage Lizenzierung

 Handelsregister Muenchen, HRB 101829, USt-ID: DE 155 068 909
 Geschaeftsfuehrer: Michael Arbesmeier, Kai-Uwe Rommel, Roland Schock,
 Joachim Gucker
 
 
 Thanks every one for the suggestions.
 I'll try them out Monday.
 
 John
 
Hi John,

My redirect goes to a different host:

VirtualHost *:443
   ServerName mail.marth.com
   RedirectPermanent / https://www.marth.com/SOGo
/VirtualHost

I think you cannot redirect the root of a host to a sub-dir of the same
host. This will end in a loop. What you need is a rewrite directive.
Have a look at:

http://httpd.apache.org/docs/2.4/rewrite/remapping.html

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


Re: [SOGo] AD/LDAP filter to exclude disabled accounts

2015-04-06 Thread Sven Marth
Am 04.04.2015 um 17:49 schrieb Christian Vielhauer:
 Hi,
 
 I try to show only active users addresses in my public address book.
 So I add the following as my filter in SOGoUserSources
 filter attribute: filter =
 ((mail=*)(!(UserAccountControl:1.2.840.113556.1.4.803:=2)))“;
 
 How looks the correct way? I am using Samba 4.1.17 as AD with latest
 nightly SOGo build.
 Because there is no status field I have to use UserAccountControl to
 filter expired and disabled accounts
 …. 
 http://blogs.technet.com/b/heyscriptingguy/archive/2005/05/12/how-can-i-get-a-list-of-all-the-disabled-user-accounts-in-active-directory.aspx
 
 With my filter Sogo starts, but shows a lot of empty address book
 entries and also shows disabled entries, because my filter in not
 correct of SOGo usage.
 
 
 2015-04-04 17:41:23.790 sogod[2528] WARNING(+[EOQualifier(Parsing)
 qualifierWithQualifierFormat:]): unexpected chars at the end of the
 string(class=GSMutableString,len=73) '(cn='*') AND
 ((mail=*)(!(UserAccountControl:1.2.840.113556.1.4.803:=2)))'
 
 
 
 Please help me to find the correct filter.
 
 
 Thanks in advance
 Chris

Hi Chris and happy easter again,

the correct syntax of your ldap filter inside sogo is:

((cn=*) AND (mail=*) AND (NOT
userAccountControl:1.2.840.113556.1.4.803:=2))

Take care of the quotation marks at cn and mail.

for sogo I use:
((samAccountType=805306368) AND (mail=*) AND (NOT
userAccountControl:1.2.840.113556.1.4.803:=2) AND (NOT
isCriticalSystemObject=TRUE))

for dovecot (iterate_filter):
((samAccountType=805306368)(mail=*)(!(userAccountControl:1.2.840.113556.1.4.803:=2))(!(isCriticalSystemObject=TRUE)))

... same filter, different syntax.

My filter shoud do:
- show all users, like ((objectCategory=person)(objectClass=user)),but
also more effective
AND
- mail address is set
AND NOT
- user account is disabled
AND NOT
- isCriticalSystemObject flag set, like account Administrator

Ressources:
http://support.microsoft.com/en-us/kb/269181
http://www.selfadsi.org/ldap-filter.htm

Greetings
Sven

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


Re: [SOGo] Compiling SOGO / Openchange Connector against Samba 4.1.17 and Openchange 2.3 GIT

2015-03-19 Thread Sven Marth
Am 19.03.2015 um 15:38 schrieb Ozy de Jong:
 Hello,
 
 I've been working on getting SOGO and Openchange to work on RHEL / CentOS 7.
 What i have successfully compiled yet and should work:
 
 - Samba 4 DC with Heimdal Kerberos
 - Openchange server 2.3 current GIT
 - SOPE 4.9.2 current GIT
 - Sogo 2.2.16 current GIT
 
 The samba domain runs, the openchange schema has been provisionned, users can 
 be added and mapi profiles work.
 There's only the Openchange client included with sogo which i can't get to 
 compile.
 I guess it's because the code is supposed to work with Samba 4.1.11 and not 
 4.1.17, can anyone confirm this considering the following compile errors ?
 
 This is gnustep-make 2.6.6. Type 'make print-gnustep-make-help' for help.
  Python executable: /usr/bin/python
 Making all for bundle SOGoBackend...
  Compiling file MAPIStoreContext.m ...
 MAPIStoreContext.m: In function â+[MAPIStoreContext 
 listAllContextsForUser:withIndexing:inMemCtx:]â:
 MAPIStoreContext.m:127:42: erreur: expected expression before âvoidâ
  DLIST_CONCATENATE(list, current, void);
   ^
 MAPIStoreContext.m: In function â-[MAPIStoreContext getNewChangeNumber]â:
 MAPIStoreContext.m:552:3: erreur: too few arguments to function 
 âopenchangedb_get_new_changeNumberâ
if (openchangedb_get_new_changeNumber (connInfo-oc_ctx, newVersionNumber)
^
 In file included from MAPIStoreContext.m:57:0:
 /usr/local/samba/include/libmapiproxy.h:202:17: note: declared here
  enum MAPISTATUS openchangedb_get_new_changeNumber(struct 
 openchangedb_context *, const char *, uint64_t *);
  ^
 MAPIStoreContext.m: In function â-[MAPIStoreContext getNewChangeNumbers:]â:
 MAPIStoreContext.m:571:43: erreur: too few arguments to function 
 âopenchangedb_get_new_changeNumbersâ
memCtx, max, numbers)
^
 In file included from MAPIStoreContext.m:57:0:
 /usr/local/samba/include/libmapiproxy.h:203:17: note: declared here
  enum MAPISTATUS openchangedb_get_new_changeNumbers(struct 
 openchangedb_context *, TALLOC_CTX *, const char *, uint64_t, struct 
 UI8Array_r **);
  ^
 make[3]: *** [obj/SOGoBackend.obj/MAPIStoreContext.m.o] Erreur 1
 make[2]: *** [internal-bundle-run-compile-submake] Erreur 2
 make[1]: *** [SOGoBackend.all.bundle.variables] Erreur 2
 make: *** [internal-all] Erreur 2
 
 
 According to the openchange wiki, the current 2.3 HEAD can be compiled 
 against any Samba 4.1.x release.
 So if the sogo openchange connector won't compile because of my Samba version 
 4.1.17, then i'd try to recompile too with 4.1.11.
 My goal is to make some samba and openchange server rpms for x64 that would 
 be compatible with future SOGO EL7 releases.
 
 Any look into this compile error would be appreciated.
 
 Regards,
 Ozy.
 
Hallo Ozy,

try this patch. It helps me to compile the OpenChange part of SOGo.

-88888---

diff -uNr a/OpenChange/GNUmakefile b/OpenChange/GNUmakefile
--- a/OpenChange/GNUmakefile--2015-02-12 17:13:15.0 +0100
+++ b/OpenChange/GNUmakefile--2015-02-21 11:03:41.497106361 +0100
@@ -171,7 +171,7 @@
$(LIBMAPISTORE_LIBS)

 ADDITIONAL_INCLUDE_DIRS += \
-   -Werror -Wall \
+   -fobjc-exceptions -Wall \
-DSAMBA_PRIVATE_DIR=@\$(SAMBA_PRIVATE_DIR)\ \
$(LIBMAPI_CFLAGS) \
$(LIBMAPISTORE_CFLAGS) \

-88888---

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


Re: [SOGo] full SAML Webmail support with Inverse liblasso

2014-12-01 Thread Sven Marth
Am 01.12.2014 um 14:33 schrieb Ben Webber:
 Hi Ludovic,
 
 I've been trying to build the latest code using the spec file from the
 srpm in the repo I was using so I could test it for you, but it does not
 seem to work. It comes up with errors about invalid rpaths. I have
 attached the spec file I used if you want to take a look.
 
 I took a look at the spec file for 2.2.10 for el5 and noticed it had:
 
 QA_SKIP_BUILD_ROOT=1
 export QA_SKIP_BUILD_ROOT
 
 in the install section, so I tried adding that to the spec file I was
 using, but it just came up with file not found errors on the same files
 that I was getting the invalid rpath errors on before.
 
 Ben
 
 
 
 On 30/11/14 23:11, Ludovic Marcotte wrote:
 Hi Ben,

 Good time on the SAML testing. Pretty much all outstanding SAML
 issues/limitations were fixed (see
 http://sogo.nu/bugs/changelog_page.php?version_id=149 for details) last
 week and testing is required.

 Are you in a position to try nightly builds? There are none right now
 for CentOS/RHEL 7 but you could probably build your own easily using the
 srpm from the repo you use.

 Thanks,

 On 30/11/2014 02:38, Ben Webber wrote:
 Hi,

 I have just joined this list and am a new user to SOGo. Thanks for a
 great piece of software! I have also just got it set up with saml sso.
 On setting this up I encountered a few issues. One was addressed in this
 post:

 https://www.mail-archive.com/users@sogo.nu/msg19097.html

 I could not reply to this message as I was not a member of the list when
 it was sent, so I am sending this message instead. I am running on
 CentOS 7. I used this repository to get the packages:

 https://copr.fedoraproject.org/coprs/jaile/sogo/

 I, like the others who have appeared to have done this, used this page
 for guidance (it is in French):

 http://wiki.auf.org/wikiteki/Projet/SOGo/TestsSAML

 I needed to make the modifications described to lasso, but the patch
 file that is linked on that page however is for lasso 2.3.6 and I am
 using lasso 2.4.0 (this was provided by the repository linked above). I
 am not a developer, but I have gone through the diff file and applied
 the changes in it by hand to the 2.4.0 codebase for lasso and made a few
 other changes so that it would compile. This was just guesswork so be
 warned, but it seems to work so I have attached the diff to this email
 for anybody else if they want to see it.

 I also needed to make a change to the dovecot code so that there was
 enough room in the input buffer for the saml assertion when it is
 received from crudesaml. This was that I needed change
 LOGIN_MAX_INBUF_SIZE to 4096 in src/login-common/client-common.h

 Hope this helps someone else anyway,

 Ben




 This message has been scanned for malware by SurfControl plc.
 www.surfcontrol.com


It looks like the problem I had:
http://www.sogo.nu/bugs/view.php?id=2996

*g
Sven

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


Re: [SOGo] Possibility to remove the useragent (e.g. SOGoMail 2.2.7) from the mailheader?

2014-08-26 Thread Sven Marth
Am 26.08.2014 11:51, schrieb Gunnar Weissmann:
 Hi,
 
 is it possible to remove/edit the user-agent from the mailheader?
 
 Example:
 User-Agent: SOGoMail 2.2.7
 
 Kind regards,
 
 Gunnar Weissmann
 
Hi Gunnar,

this is a job for your SMTP-Server. I use exim by example. My
Transport-Section in /etc/exim/exim.conf:

remote_smtp:
  driver = smtp
  headers_remove = user-agent : x-stationery
  

This removes user-agent and x-stationery from mailheader of outgoing
mails.

*g
Sven Marth
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] ActiveSync in SOGo-2.2.0

2014-03-03 Thread Sven Marth
Am 28.02.2014 23:02, schrieb Sven Marth:
 Hi,
 
 I tried to setup ActiveSync in SOGo-2.2.0 without success. Contacts,
 Calendar and Mail are empty. With Outlook 2013 I got the complete but
 empty folder-list. The sogo.log has the following entries:
 
 Nexus4:
 
 sogod[23124] -[WEClientCapabilities initWithRequest:]: Unknown WebClient: 
 user-agent='Android/4.3-EAS-1.3'
 
 
 HTC-TouchDiamond:
 
 sogod[14771] -[WEClientCapabilities initWithRequest:]: Unknown WebClient: 
 user-agent='MSFT-PPC/5.2.5086'
 
 
 Outlook 2013:
 
 sogod[2426] -[WEClientCapabilities initWithRequest:]: Unknown WebClient: 
 user-agent='Microsoft.Outlook.15'
 
 ...
 
 EXCEPTION: NSException: 0x7f89e55a7b88 NAME:NSInvalidArgumentException 
 REASON:SoHTTPException(instance) does not recognize component:secure: 
 INFO:(null)
 
 
 My Apache-SOGo-config:
 
 -8-8-
 
 Alias /SOGo.woa/WebServerResources/ 
 /usr/lib64/GNUstep/SOGo/WebServerResources/
 
 Alias /SOGo/WebServerResources/ /usr/lib64/GNUstep/SOGo/WebServerResources/
 
 AliasMatch /SOGo/so/ControlPanel/Products/(.*)/Resources/(.*) 
 /usr/lib64/GNUstep/SOGo/$1.SOGo/Resources/$2
 
 # SOGo-Base
 
 Directory /usr/lib64/GNUstep/SOGo/
 
 AllowOverride None
 
 # Explicitly allow caching of static content to avoid browser specific 
 behavior.
 
 # A resource's URL MUST change in order to have the client load the new 
 version.
 
 IfModule expires_module
 
 ExpiresActive On
 
 ExpiresDefault access plus 1 year
 
 /IfModule
 
 Require all granted
 
 /Directory
 
 LocationMatch 
 ^/SOGo/so/ControlPanel/Products/.*UI/Resources/.*\.(jpg|png|gif|css|js)
 
 SetHandler default-handler
 
 /LocationMatch
 
 ProxyRequests Off
 
 SetEnv proxy-nokeepalive 1
 
 ProxyPreserveHost On
 
 # To avoid worker sharing, sort the worker definitions by URL length, 
 
 # starting with the longest worker URL
 
 ProxyPass /Microsoft-Server-ActiveSync 
 http://127.0.0.1:2/SOGo/Microsoft-Server-ActiveSync retry=60 
 connectiontimeout=5 timeout=360
 
 ProxyPass /principals http://127.0.0.1:2/SOGo/dav/ retry=0
 
 ProxyPass /SOGo http://127.0.0.1:2/SOGo retry=0
 
 Proxy http://127.0.0.1:2/SOGo
 
   RequestHeader set x-webobjects-server-port 443
 
   RequestHeader set x-webobjects-server-name www.example.com
 
   RequestHeader set x-webobjects-server-url https://www.example.com;
 
   RequestHeader set x-webobjects-server-protocol HTTP/1.0
 
   AddDefaultCharset UTF-8
 
   Require all granted
 
 /Proxy
 
 # For Apple autoconfiguration
 
 IfModule rewrite_module
 
   RewriteEngine On
 
   RewriteRule ^/.well-known/caldav/?$ /SOGo/dav [R=301]
 
   RewriteRule ^/.well-known/carddav/?$ /SOGo/dav [R=301]
 
 /IfModule
 
 -8-8-
 
 
 Any ideas?
 Sven
 
OK,

with a second, fresh created account everything works fine. I think in
My first test-account are to many mails.

Sven

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


[SOGo] source packet size changes without notice, SOGo-2.2.0

2014-02-28 Thread Sven Marth
Hi,

I made Ebuilds for SOGo/SOPE to use in Gentoo-Linux. My problem is that
meanwhile the 3. version of source packages under the same name are out.
This breaks the Ebuilds.
Had I made any faults?

V1:
5407826 25. Feb 19:15 SOGo-2.2.0.tar.gz
2257914 25. Feb 19:15 SOPE-2.2.0.tar.gz

V2:
5409391 25. Feb 23:54 SOGo-2.2.0.tar.gz
2258156 25. Feb 23:54 SOPE-2.2.0.tar.gz

V3:
5410216 26. Feb 20:23 SOGo-2.2.0.tar.gz
2258110 26. Feb 20:23 SOPE-2.2.0.tar.gz

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


[SOGo] ActiveSync in SOGo-2.2.0

2014-02-28 Thread Sven Marth
Hi,

I tried to setup ActiveSync in SOGo-2.2.0 without success. Contacts,
Calendar and Mail are empty. With Outlook 2013 I got the complete but
empty folder-list. The sogo.log has the following entries:

Nexus4:

sogod[23124] -[WEClientCapabilities initWithRequest:]: Unknown WebClient: 
user-agent='Android/4.3-EAS-1.3'


HTC-TouchDiamond:

sogod[14771] -[WEClientCapabilities initWithRequest:]: Unknown WebClient: 
user-agent='MSFT-PPC/5.2.5086'


Outlook 2013:

sogod[2426] -[WEClientCapabilities initWithRequest:]: Unknown WebClient: 
user-agent='Microsoft.Outlook.15'

...

EXCEPTION: NSException: 0x7f89e55a7b88 NAME:NSInvalidArgumentException 
REASON:SoHTTPException(instance) does not recognize component:secure: 
INFO:(null)


My Apache-SOGo-config:

-8-8-

Alias /SOGo.woa/WebServerResources/ /usr/lib64/GNUstep/SOGo/WebServerResources/

Alias /SOGo/WebServerResources/ /usr/lib64/GNUstep/SOGo/WebServerResources/

AliasMatch /SOGo/so/ControlPanel/Products/(.*)/Resources/(.*) 
/usr/lib64/GNUstep/SOGo/$1.SOGo/Resources/$2

# SOGo-Base

Directory /usr/lib64/GNUstep/SOGo/

AllowOverride None

# Explicitly allow caching of static content to avoid browser specific 
behavior.

# A resource's URL MUST change in order to have the client load the new 
version.

IfModule expires_module

ExpiresActive On

ExpiresDefault access plus 1 year

/IfModule

Require all granted

/Directory

LocationMatch 
^/SOGo/so/ControlPanel/Products/.*UI/Resources/.*\.(jpg|png|gif|css|js)

SetHandler default-handler

/LocationMatch

ProxyRequests Off

SetEnv proxy-nokeepalive 1

ProxyPreserveHost On

# To avoid worker sharing, sort the worker definitions by URL length, 

# starting with the longest worker URL

ProxyPass /Microsoft-Server-ActiveSync 
http://127.0.0.1:2/SOGo/Microsoft-Server-ActiveSync retry=60 
connectiontimeout=5 timeout=360

ProxyPass /principals http://127.0.0.1:2/SOGo/dav/ retry=0

ProxyPass /SOGo http://127.0.0.1:2/SOGo retry=0

Proxy http://127.0.0.1:2/SOGo

  RequestHeader set x-webobjects-server-port 443

  RequestHeader set x-webobjects-server-name www.example.com

  RequestHeader set x-webobjects-server-url https://www.example.com;

  RequestHeader set x-webobjects-server-protocol HTTP/1.0

  AddDefaultCharset UTF-8

  Require all granted

/Proxy

# For Apple autoconfiguration

IfModule rewrite_module

  RewriteEngine On

  RewriteRule ^/.well-known/caldav/?$ /SOGo/dav [R=301]

  RewriteRule ^/.well-known/carddav/?$ /SOGo/dav [R=301]

/IfModule

-8-8-


Any ideas?
Sven
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


[SOGo] SOGo-2.2.0, Proxy Error, Web-Interface, Preferences UI

2014-02-27 Thread Sven Marth
Hi,

with SOGo-2.2.0 I get an Proxy-Error when I try to open the preferences
pane in the Web-UI. I think it has something to do with the
(re)implemented set the default reminder-time-list. SOGo puts the
following line in sogo.log:

EXCEPTION: NSException: 0x7f4e26546268 NAME:NSRangeException
REASON:Index -1 is out of range 14 (in 'objectAtIndex:') INFO:{Array =
(5_MINUTES_BEFORE, 10_MINUTES_BEFORE, 15_MINUTES_BEFORE,
30_MINUTES_BEFORE, 45_MINUTES_BEFORE, -, 1_HOUR_BEFORE,
2_HOURS_BEFORE, 5_HOURS_BEFORE,15_HOURS_BEFORE, -,
1_DAY_BEFORE, 2_DAYS_BEFORE, 1_WEEK_BEFORE); Count = 14; Index =
4294967295; }

When I disable this option in the preferences template, then preferences
pane works like before.

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


Re: [SOGo] SOGo-2.2.0, Proxy Error, Web-Interface, Preferences UI

2014-02-27 Thread Sven Marth
Am 27.02.2014 12:58, schrieb Christian Mack:
 Am 2014-02-27 11:15, schrieb Sven Marth:
 Hi,

 with SOGo-2.2.0 I get an Proxy-Error when I try to open the preferences
 pane in the Web-UI. I think it has something to do with the
 (re)implemented set the default reminder-time-list. SOGo puts the
 following line in sogo.log:

 EXCEPTION: NSException: 0x7f4e26546268 NAME:NSRangeException
 REASON:Index -1 is out of range 14 (in 'objectAtIndex:') INFO:{Array =
 (5_MINUTES_BEFORE, 10_MINUTES_BEFORE, 15_MINUTES_BEFORE,
 30_MINUTES_BEFORE, 45_MINUTES_BEFORE, -, 1_HOUR_BEFORE,
 2_HOURS_BEFORE, 5_HOURS_BEFORE,15_HOURS_BEFORE, -,
 1_DAY_BEFORE, 2_DAYS_BEFORE, 1_WEEK_BEFORE); Count = 14; Index =
 4294967295; }

 When I disable this option in the preferences template, then preferences
 pane works like before.

 
 Have you set SOGoCalendarDefaultReminder in your sogo.conf?
 
 
 Kind regards,
 Christian Mack
 
Big Thanks Christian,

that was my fault! I didn't know that this option is mandatory and has
to be set in sogo.conf.

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


Re: [SOGo] Select different sender on new mail

2011-12-21 Thread Sven Marth

Am 21.12.2011 10:06, schrieb Peter Ting:

Am 13.12.2011 11:25, schrieb Peter Ting:

Hello,

still have the problem.
Is there a solution for it.
Christians hint won't work for me.

Best regards

Peter


Hallo Peter,

if you like to have multiple mail addresses (aliases) @ the same server, 
add these adresses to your LDAP account. It should work.


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


Re: [SOGo] Address Book New/Subscribe/Delete Buttons Missing on Upgrade to 3.108

2011-12-17 Thread Sven Marth
I had to downgrade the extensions to 3.106. Since 3.107 there is
something wrong. No buttons in address book.

Between connector release 3.106 and 3.107 are massive changes in
/chrome/content/inverse-library/sogoWebDAV.js. I assume there sleeps the
bug.

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


Re: [SOGo] Ading calendar entry from thunderbird fails

2011-12-05 Thread Sven Marth
Am 05.12.2011 21:08, schrieb Martin (Lists):
 Am Montag, 5. Dezember 2011, 14:02:01 schrieb Clay Wright:
 On 12/05/2011 01:54 PM, Martin (Lists) wrote:
 Hallo again

 I nailed it down to the category (most likely). If none is used, the
 events can be stored and altered. If one is used it is ignored
 (Web-GUI) or crashed the sogo child by SIGABRT (thunderbird). Currently
 I can not use categories, neither for recurring events nor for normal
 ones with SOGo 1.3.10.

 Any one else seeing this?

 Hi Martin. I'm seeing the same thing too and opened a ticket in the bug
 reporting system - http://www.sogo.nu/bugs/view.php?id=1520.
 
 Ah, I am not the only one. The same is true for sogo-tools btw. I tried a 
 clean install on mysql and failed miserably on importing the backuped sogo 
 data.
 
 Martin

You are not alone!

Same bug in my build of 1.3.10. By reading the SOPE/NGCards/ChangeLog I saw:

* 2011-11-13  Wolfgang Sourdeau  wsourd...@inverse.ca
* iCalEntityObject.m (-setCategories:): now take an array as parameter.

...there must be something wrong.

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


Re: [SOGo] SOGo database

2011-04-26 Thread Sven Marth
Am 26.04.2011 08:05, schrieb Milos Wimmer:
 On Tue, 26 Apr 2011, Pascal Gienger wrote:
 
  Hello Pascal,
 
 What's the size/value of

 shared_buffers = ...
   and
 max_locks_per_transaction = ...

 in your postgresql.conf?
 
 
 shared_buffers = 24MB   [default value]
 max_locks_per_transaction = 256 [default value = 64]
 
 
 thank,
 Milos
 
Hallo Milos,

you should increase the kernels maximum size of shared memory segment.
To do this. edit your /etc/sysctl.conf. For example: kernel.shmmax =
134217728 (sets the value to 128 MB).
You can also find a explanation in
http://www.postgresql.org/docs/8.4/interactive/kernel-resources.html

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


Re: [SOGo] Address Book

2011-04-14 Thread Sven Marth
Am 13.04.2011 23:36, schrieb Carsten Laun-De Lellis:
 Hi all
 
 I created a user source in mysql and want to use this as address book.
 It worked so far, that I can see the users in the global address book,
 but I can't edit any entries. Also i want to change the colums with the
 attributes in the web interface.
 
 Any help ?
 
 --
 
 Mit freundlichem Gruß
 
  
 
 *Carsten Laun-De Lellis*
 
 Dipl.-Ing. Elektrotechnik
 
 Certified Information Systems Auditor (CISA)
 
  
 
  
 
 Hauptstrasse 13
 
 D-67705 Trippstadt
 
  
 
 Phone:   +49 (6306) 992140
 
 Mobile:  +49 (151) 27530865
 
 email:   carsten.delel...@delellis.net
 
Hi Carsten,

so far I now, the global address book is read only by design. If you
like to have a real Global Address Book, setup a shared account and
share that address book to all users.

cu
Sven


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


Re: [SOGo] update to 1.3.6 Proxy Error

2011-04-13 Thread Sven Marth
Am 13.04.2011 10:46, schrieb Imo Graf:
 Hello,
 
 since I updated SOGo to 1.3.6 I get a Proxy Error when I go to
 http://MyServer.LTD/SOGo;. Can someone help me what is new in 1.3.6
 that I get this error? I run SOGo on CentOS 5.5 with MySQL.
 
 Thanks
 
 Imo
 
 This is a little bit from my SOGo log:
 
 0x0xa0be108[WOWatchDog] child spawned with pid 1145
 0x0xb77008c0[GCSSessionsFolder] 'OCSSessionsFolderURL' is not set
 0x0xa12f060[SOGoCache] Cache cleanup interval set every 1800.00
 seconds
 0x0xa12f060[SOGoCache] Using host(s) 'localhost' as server(s)
 2011-04-13 10:42:25.030 sogod[1145] Note(SoObject): SoDebugKeyLookup is
 enabled!
 2011-04-13 10:42:25.030 sogod[1145] Note(SoObject): SoDebugBaseURL is
 enabled!
 2011-04-13 10:42:25.030 sogod[1145] Note(SoObject): relative base URLs
 are enabled.
 0x0x9ff1b18[WOWatchDogChild] child 1145 exited
 0x0x9ff1b18[WOWatchDogChild]  (terminated due to signal 11)
 0x0x9ff1b18[WOWatchDogChild] avoiding to respawn child before
 2011-04-13 10:42:30 +0200
 0x0xa0be108[WOWatchDog] child spawned with pid 1147
 0x0xb77008c0[GCSSessionsFolder] 'OCSSessionsFolderURL' is not set
 0x0xa12f060[SOGoCache] Cache cleanup interval set every 1800.00
 seconds
 0x0xa12f060[SOGoCache] Using host(s) 'localhost' as server(s)
 2011-04-13 10:42:30.030 sogod[1147] Note(SoObject): SoDebugKeyLookup is
 enabled!
 2011-04-13 10:42:30.030 sogod[1147] Note(SoObject): SoDebugBaseURL is
 enabled!
 2011-04-13 10:42:30.030 sogod[1147] Note(SoObject): relative base URLs
 are enabled.
 0x0x9ff1b18[WOWatchDogChild] child 1147 exited
 0x0x9ff1b18[WOWatchDogChild]  (terminated due to signal 11)
 0x0x9ff1b18[WOWatchDogChild] avoiding to respawn child before
 2011-04-13 10:42:35 +0200
 0x0xa0be108[WOWatchDog] child spawned with pid 1149
 0x0xb77008c0[GCSSessionsFolder] 'OCSSessionsFolderURL' is not set
 
 
 
 
Hi Imo,

you have to set the key OCSSessionsFolderURL in .GNUstepDefaults. You
should also update your database with
'sql-update-1.3.3_to_1.3.4-mysql.sh' (source/Scripts).

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


Re: [SOGo] updates.php and lightning

2011-04-12 Thread Sven Marth

Am 12.04.2011 11:16, schrieb J. Echter:

Hi,

my updates.php works with sogo-integrator  sogo-connector, but if i
change version and stuff for lightning it doesn't get updated
automatically.

Thunderbird 3.x
Windows XP Pro

updates.php:

sogo-connec...@inverse.ca
= array( application = thunderbird,
version = 3.105,
filename = sogo-connector-3.105.xpi ),

sogo-integra...@inverse.ca
= array( application = thunderbird,
version = 3.105,
filename = thunderbird-integrator.xpi ),

{e2fda1a4-762b-4020-b5ad-a41df1933103}
= array( application = thunderbird,
version = 1.0b2.105i,
filename = lightning-1.0b2.105i_win32.xpi )

what am i missing here?

greetings

juergen


Hi juergen,

your update.php looks o.k. You forgot to add an entry for lightning in 
the extensions.rdf (sogo-integrator)?


--8--8--8--
...
li
  Description
em:id=sogo-connec...@inverse.ca
em:name=SOGo Connector/
/li
li
  Description
em:id={e2fda1a4-762b-4020-b5ad-a41df1933103}
em:name=Lightning/
/li
  /Seq
/RDF

--8--8--8--

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


[SOGo] SOGo-connector-0.100 and wrong placed phone numbers

2010-05-14 Thread Sven Marth
Hi All,

I have some trouble with the SOGo-connector-0.100. Moving addresses with
only fax or mobile numbers from a local address-book to My SOGo
address-book let's flying phone numbers to other fields.
When I move such a card from local to SOGo in Thunderbird, the numbers
are at the right place. I sync the book with the server. Goto another
machine. Open My account with Thunderbird an the number in the
address-book are moved from mobile to home or fax to work.

I can see some changes in
chrome/content/sogo-connector/general/vcards.utils.js.
They are makes trouble to me?

For the moment I gone back to 0.99.

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