[SOGo] BTS activities for Thursday, February 13 2014

2014-02-13 Thread SOGo reporter
Title: BTS activities for Thursday, February 13 2014





  
BTS Activities

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

  
  
idlast updatestatus (resolution)categorysummary
	
	
	  
	
2489
	2014-02-13 00:04:35
	updated (open)
	Apple iCal.app
	Apple iCal - OS X 10.9 - Delegated Calendars Show Error
	
	  
	
2511
	2014-02-13 01:04:33
	updated (open)
	Apple iPhone OS
	r letter appended to every item: names, numbers, etc
	
	  
	
2564
	2014-02-13 04:56:53
	updated (open)
	Web General
	All SOGo popups go into background with firefox
	
	  
	
  
  




Re: [SOGo] nginx

2014-02-13 Thread Rob Kemp
Thanks, it turned out that while following some instructions of the 
internet (silly, I know!) I had put in place some configuration file 
that was redirecting all SSL connections somewhere different. So I have 
sorted it out now. I'll have a look at your configurations though - many 
thanks.


Rob

On 02/13/2014 08:36 PM, mayak wrote:

On 02/13/2014 08:09 PM, Andy Tuinman wrote:

Can you post your config file instead of the default? You have to make
a few adjustments in the file. So if you post your file i can look at it.




here's mine:

url is: ghttps://sogo.domain.com

server {
 listen 443;
 server_name sogo.domain.com;
 rewrite ^/$ https://sogo.domain.com/SOGo;
 access_log  /var/log/nginx/sogo-access.log;
 error_log /var/log/nginx/sogo-error.log;


 location ^~ /SOGo {
   proxy_passhttp://127.0.0.1:2/SOGo;
   proxy_redirecthttp://127.0.0.1:2/SOGo/;

   proxy_set_headerX-Real-IP$remote_addr;
   proxy_set_headerX-Forwarded-For
$proxy_add_x_forwarded_for;
   proxy_set_headerHostsogo.domain.com;
   proxy_set_headerx-webobjects-server-protocolHTTP/1.0;
   proxy_set_headerx-webobjects-remote-hostsogo.domain.com;
   proxy_set_headerx-webobjects-server-namesogo.domain.com;
   proxy_set_headerx-webobjects-server-url
https://sogo.domain.com;
   proxy_connect_timeout90;
   proxy_send_timeout90;
   proxy_read_timeout90;
   proxy_buffer_size4k;
   proxy_buffers16 64k;
   proxy_busy_buffers_size64k;
   proxy_temp_file_write_size64k;

   client_max_body_size50m;
   client_body_buffer_size128k;
   break;
 }

 location ^~ /Microsoft-Server-ActiveSync {
 proxy_pass http://127.0.0.1:2/SOGo/Microsoft-Server-ActiveSync;
 proxy_redirect
http://127.0.0.1:2/Microsoft-Server-ActiveSync /;
 }

 location ^~ /SOGo/Microsoft-Server-ActiveSync {
 proxy_pass http://127.0.0.1:2/SOGo/Microsoft-Server-ActiveSync;
 proxy_redirect
http://127.0.0.1:2/SOGo/Microsoft-Server-ActiveSync /;
 }

 location /.woa/WebServerResources/ {
   alias /usr/lib64/GNUstep/SOGo/WebServerResources/;
 }

 location /SOGo.woa/WebServerResources/ {
   alias/usr/lib64/GNUstep/SOGo/WebServerResources/;
 }

 location /SOGo/WebServerResources/ {
   alias/usr/lib64/GNUstep/SOGo/WebServerResources/;
 }

 location ^/SOGo/so/ControlPanel/Products/([^/]*)/Resources/(.*)$ {
   alias/usr/lib64/GNUstep/SOGo/$1.SOGo/Resources/$2;
 }
}



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


Re: [SOGo] nginx

2014-02-13 Thread Rob Kemp
Thanks Andy. All I did, I think, was to change the hostname and the 
location of the SSL certificates. (I've replaced the server name with 
X's below, but that was accurately entered without typos in the file I 
was trying to use).


-

server {

listen 80 default;
server_name XXX.XXX.com;
## redirect http to https ##
rewrite ^ https://$server_name$request_uri? permanent;
}
server {

listen 443;
server_name XXX.XXX.com;
root /usr/lib/GNUstep/SOGo/WebServerResources/;
ssl on;
ssl_certificate /etc/nginx/certs/XXX.XXX.com.crt;
ssl_certificate_key /etc/nginx/certs/XXX.XXX.com.key;
location = /
{
rewrite ^ https://$server_name/SOGo;
allow all;
}
# For IOS 7
location = /principals/
{
rewrite ^ https://$server_name/SOGo/dav;
allow all;
}
location ^~/SOGo {
proxy_pass http://127.0.0.1:2;
proxy_redirect http://127.0.0.1:2 default;
# forward user's IP address
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_set_header x-webobjects-server-protocol HTTP/1.0;
proxy_set_header x-webobjects-remote-host 127.0.0.1;
proxy_set_header x-webobjects-server-name $server_name;
proxy_set_header x-webobjects-server-url $scheme://$host;
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 90;
proxy_buffer_size 4k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;
client_max_body_size 50m;
client_body_buffer_size 128k;
break;

}
location /SOGo.woa/WebServerResources/ {
alias /usr/lib/GNUstep/SOGo/WebServerResources/;
allow all;
}
location /SOGo/WebServerResources/ {
alias /usr/lib/GNUstep/SOGo/WebServerResources/;
allow all;
}
location ^/SOGo/so/ControlPanel/Products/([^/]*)/Resources/(.*)$ {
alias /usr/lib/GNUstep/SOGo/$1.SOGo/Resources/$2;
}
location 
^/SOGo/so/ControlPanel/Products/[^/]*UI/Resources/.*\.(jpg|png|gif|css|js)$

{
alias /usr/lib/GNUstep/SOGo/$1.SOGo/Resources/$2;
}
}

-

On 02/13/2014 07:09 PM, Andy Tuinman wrote:


Can you post your config file instead of the default? You have to make 
a few adjustments in the file. So if you post your file i can look at it.


Op 13 feb. 2014 19:45 schreef >:


Hi. I'm trying to get SOGo working with my nginx installation, but
I'm a bit
of a novice with both nginx and SOGo.

I'm using the nginx config file that's posted here:

http://wiki.sogo.nu/nginxSettings

However, I'm getting a 404 Not Found error from nginx when I try
to access /
SOGo.

If anyone knows of an obvious explanation, I'd be grateful to hear it.

(The server is running Debian 7 with MySQL.)

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



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

Re: [SOGo] nginx

2014-02-13 Thread mayak
On 02/13/2014 08:09 PM, Andy Tuinman wrote:
>
> Can you post your config file instead of the default? You have to make
> a few adjustments in the file. So if you post your file i can look at it.
>


here's mine:

url is: ghttps://sogo.domain.com

server {
listen 443;
server_name sogo.domain.com;
rewrite ^/$ https://sogo.domain.com/SOGo;
access_log  /var/log/nginx/sogo-access.log;
error_log /var/log/nginx/sogo-error.log;


location ^~ /SOGo {
  proxy_passhttp://127.0.0.1:2/SOGo;
  proxy_redirecthttp://127.0.0.1:2/SOGo/;

  proxy_set_headerX-Real-IP$remote_addr;
  proxy_set_headerX-Forwarded-For   
$proxy_add_x_forwarded_for;
  proxy_set_headerHostsogo.domain.com;
  proxy_set_headerx-webobjects-server-protocolHTTP/1.0;
  proxy_set_headerx-webobjects-remote-hostsogo.domain.com;
  proxy_set_headerx-webobjects-server-namesogo.domain.com;
  proxy_set_headerx-webobjects-server-url   
https://sogo.domain.com;
  proxy_connect_timeout90;
  proxy_send_timeout90;
  proxy_read_timeout90;
  proxy_buffer_size4k;
  proxy_buffers16 64k;
  proxy_busy_buffers_size64k;
  proxy_temp_file_write_size64k;

  client_max_body_size50m;
  client_body_buffer_size128k;
  break;
}

location ^~ /Microsoft-Server-ActiveSync {
proxy_pass http://127.0.0.1:2/SOGo/Microsoft-Server-ActiveSync;
proxy_redirect 
http://127.0.0.1:2/Microsoft-Server-ActiveSync /;
}

location ^~ /SOGo/Microsoft-Server-ActiveSync {
proxy_pass http://127.0.0.1:2/SOGo/Microsoft-Server-ActiveSync;
proxy_redirect 
http://127.0.0.1:2/SOGo/Microsoft-Server-ActiveSync /;
}

location /.woa/WebServerResources/ {
  alias /usr/lib64/GNUstep/SOGo/WebServerResources/;
}

location /SOGo.woa/WebServerResources/ {
  alias/usr/lib64/GNUstep/SOGo/WebServerResources/;
}

location /SOGo/WebServerResources/ {
  alias/usr/lib64/GNUstep/SOGo/WebServerResources/;
}

location ^/SOGo/so/ControlPanel/Products/([^/]*)/Resources/(.*)$ {
  alias/usr/lib64/GNUstep/SOGo/$1.SOGo/Resources/$2;
}
}

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


Re: [SOGo] nginx

2014-02-13 Thread J.
This works for me:

## this one is for the SOGo web client
server {
    listen 192.168.0.35:443;
    server_name mail.example.com;
    root /home/www/mail.example.com;
    ssl on;
    ssl_certificate /etc/ssl/postfix/server.crt;
    ssl_certificate_key /etc/ssl/postfix/server.key;
    location = /
    {
    rewrite ^ https://$server_name/SOGo;
    allow all;
    }

    location ~ \.php$ {
    #    # With php5-fpm:
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }

    location ^~/SOGo {
    proxy_pass http://127.0.0.1:2;
    proxy_redirect http://127.0.0.1:2 default;
    # forward user's IP address
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $host;
    proxy_set_header x-webobjects-server-protocol HTTP/1.0;
    proxy_set_header x-webobjects-server-name $server_name;
    proxy_set_header x-webobjects-server-url $scheme://$host;
    proxy_connect_timeout 90;
    proxy_send_timeout 90;
    proxy_read_timeout 90;
    proxy_buffer_size 4k;
    proxy_buffers 4 32k;
    proxy_busy_buffers_size 64k;
    proxy_temp_file_write_size 64k;
    client_max_body_size 50m;
    client_body_buffer_size 128k;
    break;

    }
    location /SOGo.woa/WebServerResources/ {
    alias /usr/lib/GNUstep/SOGo/WebServerResources/;
    allow all;
    }

    location /SOGo/WebServerResources/ {
    alias /usr/lib/GNUstep/SOGo/WebServerResources/;
    allow all;
    }

    location /SOGo/so/ControlPanel/Products/([/]*)/Resources/(.*)$ {
    alias /usr/lib/GNUstep/SOGo/$1.SOGo/Resources/$2;
    }

    location 
/SOGo/so/ControlPanel/Products/[/]*UI/Resources/.*\.(jpg|png|gif|css|js)$
    {
    alias /usr/lib/GNUstep/SOGo/$1.SOGo/Resources/$2;
    }

    location /plugins
    {
  autoindex on;
    }

}




On Thursday, February 13, 2014 11:11 AM, Andy Tuinman  
wrote:
 
Can you post your config file instead of the default? You have to make a few 
adjustments in the file. So if you post your file i can look at it.
Op 13 feb. 2014 19:45 schreef  :

Hi. I'm trying to get SOGo working with my nginx installation, but I'm a bit
>of a novice with both nginx and SOGo.
>
>I'm using the nginx config file that's posted here:
>
>http://wiki.sogo.nu/nginxSettings
>
>However, I'm getting a 404 Not Found error from nginx when I try to access /
>SOGo.
>
>If anyone knows of an obvious explanation, I'd be grateful to hear it.
>
>(The server is running Debian 7 with MySQL.)
>
>Rob
>--
>users@sogo.nu
>https://inverse.ca/sogo/lists
>-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] nginx

2014-02-13 Thread Andy Tuinman
Can you post your config file instead of the default? You have to make a
few adjustments in the file. So if you post your file i can look at it.
Op 13 feb. 2014 19:45 schreef :

> Hi. I'm trying to get SOGo working with my nginx installation, but I'm a
> bit
> of a novice with both nginx and SOGo.
>
> I'm using the nginx config file that's posted here:
>
> http://wiki.sogo.nu/nginxSettings
>
> However, I'm getting a 404 Not Found error from nginx when I try to access
> /
> SOGo.
>
> If anyone knows of an obvious explanation, I'd be grateful to hear it.
>
> (The server is running Debian 7 with MySQL.)
>
> Rob
> --
> users@sogo.nu
> https://inverse.ca/sogo/lists
>
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

[SOGo] nginx

2014-02-13 Thread rpkemp
Hi. I'm trying to get SOGo working with my nginx installation, but I'm a bit
of a novice with both nginx and SOGo.

I'm using the nginx config file that's posted here:

http://wiki.sogo.nu/nginxSettings

However, I'm getting a 404 Not Found error from nginx when I try to access /
SOGo.

If anyone knows of an obvious explanation, I'd be grateful to hear it.

(The server is running Debian 7 with MySQL.)

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


[SOGo] No Addressbook Sync

2014-02-13 Thread Bob Wooldridge

  
  
I'm using Sogo v2.1.1 on Debian Wheezy.
Clients are: Tbird v2.4.3, Lightning v2.6.4, Connector 24.02,
Integrator 24.03.

Address books are not syncing with Thunderbird.  Calendars sync
fine.

Any ideas on how to get this working?

-- 
  


  Bob
Wooldridge 
 Director of Data/Comm
Services 


  EDM Incorporated
  220 Mansion House Center  St. Louis, MO
63102
  
   
  Office 314.231.5485   ·  
  Direct: 314.335.6911   ·  
  www.edm-inc.com
  
  CELEBRATING 40 YEARS OF
  ENGINEERING SOLUTIONS 

  

  



[SOGo] SOGo + Openchange + MS Outlook shared folders

2014-02-13 Thread Bruno Andrade
Hey,

I'm currently testing ZEG 2.1.1b as a MS Exchange Server replacement. 
I'm testing its capabilities with MS Outlook 2003/07/10/13 and my major 
problem is syncing shared folders(calendars/contacts/emails). 

Basically, I have two VMs running win7 pro sp1, each one with an 
instance of MS Outlook and when I start playing with sharing stuff, MAPI 
constantly trigger some fails in server and make it impossible to work 
with.

My main question is: Is SOGo+Openchange already prepared to support 
sharing options in MS Outlook or it should be used only for individual 
accounts without sharing capabilities?

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