Re: [SOGo] SOGo with apple CardDAV

2010-10-22 Thread baril.jp
I also have the [warn] worker http://127.0.0.1:2/SOGo/dav/ already used by
another worker warning. Still, I have been able to make everything work in
Thunderbird and iCal. But I cannot connect with Mac AddressBook.app. I added
the virtual host part as said, but I cannot make it work. What do I need to
enter in AddressBook.app in settings ?
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] SOGo with apple CardDAV

2010-10-22 Thread Stephen Ingram

baril...@gmail.com wrote:

I also have the [warn] worker http://127.0.0.1:2/SOGo/dav/ already used by
another worker warning. Still, I have been able to make everything work in
Thunderbird and iCal. But I cannot connect with Mac AddressBook.app. I added
the virtual host part as said, but I cannot make it work. What do I need to
enter in AddressBook.app in settings ?


Don't worry about that warning. If you have the httpd setup correct, you 
 only need to enter the username, password, and server name in to setup 
the Address Book. If you have a @ in your username, make sure and 
replace it with %40. In my case, that was the key to getting it to work.


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


Re: [SOGo] SOGo with apple CardDAV

2010-10-22 Thread Jean-Philippe Baril
Yeah I know about the warning. As I said it will still works. I was just saying 
this to reassure you about your question.
But as you speak, you look to have make it working with AddressBook.app ? Right 
?
I don't have @ in my username.
What have you written in server address in AddressBook?
Also, I see two thread in mailing list two different config of Apache, one that 
use port 8800 and another port 8843. Which one should I use?
In case of 8800, the difference seems to be only this line 'RequestHeader set 
x-webobjects-server-url http://MYHOSTNAME:8800;' .
Whereas in case of port 8843, the line looks like 'RequestHeader set 
x-webobjects-server-url https://your.server.com;;'
I would appreciate some clarifications.
Thank you

Le 2010-10-22 à 19:31, Stephen Ingram a écrit :

 baril...@gmail.com wrote:
 I also have the [warn] worker http://127.0.0.1:2/SOGo/dav/ already used 
 by
 another worker warning. Still, I have been able to make everything work in
 Thunderbird and iCal. But I cannot connect with Mac AddressBook.app. I added
 the virtual host part as said, but I cannot make it work. What do I need to
 enter in AddressBook.app in settings ?
 
 Don't worry about that warning. If you have the httpd setup correct, you  
 only need to enter the username, password, and server name in to setup the 
 Address Book. If you have a @ in your username, make sure and replace it 
 with %40. In my case, that was the key to getting it to work.
 
 Steve
 -- 
 users@sogo.nu
 https://inverse.ca/sogo/lists

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

Re: [SOGo] SOGo with apple CardDAV

2010-10-22 Thread Stephen Ingram

Jean-Philippe Baril wrote:
Yeah I know about the warning. As I said it will still works. I was just 
saying this to reassure you about your question.
But as you speak, you look to have make it working with AddressBook.app 
? Right ?


I'm testing this with the Addressbook in OSX at the moment, but iOS is 
supposed to work the same way.



I don't have @ in my username.
What have you written in server address in AddressBook?


Just the server name itself, no http:// or port number or any 
directories. The app seems to figure that out itself.


Also, I see two thread in mailing list two different config of Apache, 
one that use port 8800 and another port 8843. Which one should I use?
In case of 8800, the difference seems to be only this line 
'RequestHeader set x-webobjects-server-url http://MYHOSTNAME:8800; 
http://MYHOSTNAME:8800%22' .
Whereas in case of port 8843, the line looks like 'RequestHeader set 
x-webobjects-server-url https://your.server.com; 
https://your.server.com%22;'

I would appreciate some clarifications.


You should use 8800 if you don't want SSL, and 8843 if you do. However, 
for the RequestHeader lines make sure and include the port number on 
each line. For example,


RequestHeader set x-webobjects-server-port 8843
RequestHeader set x-webobjects-server-name www.hostname.com:8843
RequestHeader set x-webobjects-server-url https://www.hostname.com:8843;

Also, make sure you have these ProxyPass lines:

ProxyPass /principals http://127.0.0.1:2/SOGo/dav/ interpolate
ProxyPass /SOGo http://127.0.0.1:2/SOGo interpolate
ProxyPass / http://127.0.0.1:2/SOGo/dav/ interpolate

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


Re: [SOGo] SOGo with apple CardDAV

2010-10-22 Thread Jean-Philippe Baril

Le 2010-10-22 à 19:57, Stephen Ingram a écrit :

 Jean-Philippe Baril wrote:
 Yeah I know about the warning. As I said it will still works. I was just 
 saying this to reassure you about your question.
 But as you speak, you look to have make it working with AddressBook.app ? 
 Right ?
 
 I'm testing this with the Addressbook in OSX at the moment, but iOS is 
 supposed to work the same way.

I'm also on OSX.

 
 I don't have @ in my username.
 What have you written in server address in AddressBook?
 
 Just the server name itself, no http:// or port number or any directories. 
 The app seems to figure that out itself.

Even not theSOGo sub-folder ? You say there is nothing but domain address 
even if you go see in Preferences / account / server settings ?

 
 Also, I see two thread in mailing list two different config of Apache, one 
 that use port 8800 and another port 8843. Which one should I use?
 In case of 8800, the difference seems to be only this line 'RequestHeader 
 set x-webobjects-server-url http://MYHOSTNAME:8800; 
 http://MYHOSTNAME:8800%22' .
 Whereas in case of port 8843, the line looks like 'RequestHeader set 
 x-webobjects-server-url https://your.server.com; 
 https://your.server.com%22;'
 I would appreciate some clarifications.
 
 You should use 8800 if you don't want SSL, and 8843 if you do. However, for 
 the RequestHeader lines make sure and include the port number on each line. 
 For example,
 
 RequestHeader set x-webobjects-server-port 8843
 RequestHeader set x-webobjects-server-name www.hostname.com:8843
 RequestHeader set x-webobjects-server-url https://www.hostname.com:8843;
 
 Also, make sure you have these ProxyPass lines:
 
 ProxyPass /principals http://127.0.0.1:2/SOGo/dav/ interpolate
 ProxyPass /SOGo http://127.0.0.1:2/SOGo interpolate
 ProxyPass / http://127.0.0.1:2/SOGo/dav/ interpolate

I have all that, but set on 8800.

Also, to try find the problem, do I need to open specific ports on my server 
firewall ?
I  added the Listen 8800 line and also the virtualhost code part directly in 
/etc/httpd/conf.d/SOGo.conf with all the rest of SOGo apache config, does it 
matter?

I'm very clueless...


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

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

Re: Re: [SOGo] SOGo with apple CardDAV

2010-10-22 Thread baril.jp
That was it, I had to open port 8800 on my server firewall.
As you said, all I had to do was entering my username, my password, and
domain.com 
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


[SOGo] SOGo with apple CardDAV

2010-10-20 Thread Imo Graf
Hello, 
 
I use the newest version of SOGo 1.3.3. All works but my Apple CardDAV 
don't work. I use CentOS 5.5.
 
I added this entry in my /etc/httpd/conf/httpd.conf for the prot 8800:
 
VirtualHost *:8800

RewriteEngine Off
ProxyRequests Off
SetEnv proxy-nokeepalive 1
ProxyPreserveHost On
ProxyPassInterpolateEnv On
ProxyPass /principals http://127.0.0.1:2/SOGo/dav/ interpolate
ProxyPass /SOGo http://127.0.0.1:2/SOGo interpolate
ProxyPass / http://127.0.0.1:2/SOGo/dav/ interpolate
Location /
Order allow,deny
Allow from all
/Location
Proxy http://127.0.0.1:2
RequestHeader set x-webobjects-server-port 8800
RequestHeader set x-webobjects-server-name MYHOSTNAME:8800
RequestHeader set x-webobjects-server-url http://MYHOSTNAME:8800;
RequestHeader set x-webobjects-server-protocol HTTP/1.0
RequestHeader set x-webobjects-remote-host 127.0.0.1
AddDefaultCharset UTF-8
/Proxy
ErrorLog /var/log/httpd/ab-error.log
CustomLog /var/log/httpd/ab-access.log combined
/VirtualHost
 
 
and then I get this error when I restart the httpd:
Starting httpd: [Wed Oct 20 11:42:21 2010] [warn] worker http://127.0.0.1:2/SOGo/dav/ already used by another worker  
 
In my /etc/httpd/conf.d/SOGo.conf I changed this entries like this:
 
  RequestHeader set x-webobjects-server-port 80

  RequestHeader set x-webobjects-server-name MYHOSTNAME
  RequestHeader set x-webobjects-server-url http://MYHOSTNAME;
 
And I also get everytime this messege when I restart SOGo.
 
 0x0x90c28b8[SOGoStartupLogger]   Please configure the use of the 
x-webobjects-XXX headers with your webserver (see sample files).
 
Can somebody help me to get it work?
 
Thank you very much.
 
Imo Graf
 
 


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

Re: [SOGo] SOGo with apple CardDAV

2010-10-20 Thread Francis Lachapelle

On Oct 20, 2010, at 3:58 AM, Imo Graf wrote:

 I use the newest version of SOGo 1.3.3. All works but my Apple CardDAV don't 
 work. I use CentOS 5.5.
  
 I added this entry in my /etc/httpd/conf/httpd.conf for the prot 8800:
  
 VirtualHost *:8800
 RewriteEngine Off
 ProxyRequests Off
 SetEnv proxy-nokeepalive 1
 ProxyPreserveHost On
 ProxyPassInterpolateEnv On
 ProxyPass /principals http://127.0.0.1:2/SOGo/dav/ interpolate
 ProxyPass /SOGo http://127.0.0.1:2/SOGo interpolate
 ProxyPass / http://127.0.0.1:2/SOGo/dav/ interpolate
 Location /
 Order allow,deny
 Allow from all
 /Location
 Proxy http://127.0.0.1:2
 RequestHeader set x-webobjects-server-port 8800
 RequestHeader set x-webobjects-server-name MYHOSTNAME:8800
 RequestHeader set x-webobjects-server-url http://MYHOSTNAME:8800;
 RequestHeader set x-webobjects-server-protocol HTTP/1.0
 RequestHeader set x-webobjects-remote-host 127.0.0.1
 AddDefaultCharset UTF-8
 /Proxy
 ErrorLog /var/log/httpd/ab-error.log
 CustomLog /var/log/httpd/ab-access.log combined
 /VirtualHost

Does Apache listen on port 8800? Make sure you have such directive in your 
configuration :

Listen *:8800


Francis

--
flachape...@inverse.ca :: +1.514.755.3640 :: http://www.inverse.ca
Inverse :: Leaders behind SOGo (http://sogo.nu) and PacketFence 
(http://packetfence.org)

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

Re[2]: [SOGo] SOGo with apple CardDAV

2010-10-20 Thread Imo Graf
Hello, 

I add this vhost on the end from the httpd.conf but nothing worked. 
what should I do? And why I get the error messege?
 
I don't know what should I do, please help me!



-- orginal Nachricht --
From: Francis Lachapelle flachape...@inverse.ca
To: SOGo List users@sogo.nu
Sent: 20.10.2010 15:13:47
Subject: Re: [SOGo] SOGo with apple CardDAV

On Oct 20, 2010, at 3:58 AM, Imo Graf wrote:




I use the newest version of SOGo 1.3.3. All works but my Apple CardDAV don't 
work. I use CentOS 5.5.

I added this entry in my /etc/httpd/conf/httpd.conf for the prot 8800:

VirtualHost *:8800
RewriteEngine Off
ProxyRequests Off
SetEnv proxy-nokeepalive 1
ProxyPreserveHost On
ProxyPassInterpolateEnv On
ProxyPass /principals http://127.0.0.1:2/SOGo/dav/ interpolate
ProxyPass /SOGo http://127.0.0.1:2/SOGo interpolate
ProxyPass / http://127.0.0.1:2/SOGo/dav/ interpolate
Location /
Order allow,deny
Allow from all
/Location
Proxy http://127.0.0.1:2
RequestHeader set x-webobjects-server-port 8800
RequestHeader set x-webobjects-server-name MYHOSTNAME:8800
RequestHeader set x-webobjects-server-url http://MYHOSTNAME:8800;
RequestHeader set x-webobjects-server-protocol HTTP/1.0
RequestHeader set x-webobjects-remote-host 127.0.0.1
AddDefaultCharset UTF-8
/Proxy
ErrorLog /var/log/httpd/ab-error.log
CustomLog /var/log/httpd/ab-access.log combined
/VirtualHost




Does Apache listen on port 8800? Make sure you have such directive in your 
configuration :

Listen *:8800


Francis

--
flachape...@inverse.ca :: +1.514.755.3640 :: http://www.inverse.ca
Inverse :: Leaders behind SOGo (http://sogo.nu) and PacketFence 
(http://packetfence.org)

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





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