Re: [SOGo] Change "Links to this Calendar" from http to https ?

2018-04-06 Thread mj
On 04/06/2018 04:09 PM, "albert.solana" (albert.sol...@upcnet.es) wrote: Removing "env=HTTP_HOST" causes a general Sogo website malfunction. ok, strange, because: not for us. But the other fix (setting the env variable) works here too. Didn't know it, learned about it just now. Thanks,

Re: [SOGo] Change "Links to this Calendar" from http to https ?

2018-04-06 Thread Pierre Fumet
Hello, that fixes it : @@ -72,4 +72,5 @@ ## and do not forget to enable the headers module + SetEnvIf Host (.*) HTTP_HOST=$1 RequestHeader set "x-webobjects-server-port" "443" RequestHeader set "x-webobjects-server-name" "%{HTTP_HOST}e" env=HTTP_HOST Found bug report (1) and existing pull

Re: [SOGo] Change "Links to this Calendar" from http to https ?

2018-04-06 Thread "albert.solana"
Hello MJ, Removing "env=HTTP_HOST" causes a general Sogo website malfunction. El 05/04/18 a les 10:19, mj (li...@merit.unu.edu) ha escrit: Hi, On 04/02/2018 06:15 PM, Pierre Fumet (p...@zdn.fr) wrote: RequestHeader set "x-webobjects-server-port" "443" RequestHeader set

Re: [SOGo] Change "Links to this Calendar" from http to https ?

2018-04-05 Thread mj
Hi, On 04/02/2018 06:15 PM, Pierre Fumet (p...@zdn.fr) wrote:  RequestHeader set "x-webobjects-server-port" "443"  RequestHeader set "x-webobjects-server-name" "%{HTTP_HOST}e" env=HTTP_HOST  RequestHeader set "x-webobjects-server-url" "https://%{HTTP_HOST}e; env=HTTP_HOST  RequestHeader

Re: [SOGo] Change "Links to this Calendar" from http to https ?

2018-04-04 Thread Pierre Fumet
Hello, sorry for late answer, here's my apache config, running on Debian 8 / apache 2.4 / SOGo 3.2.10.20180225-1 : # sites-enabled/.conf ServerName DocumentRoot /var/www/empty Redirect / https:///SOGo ServerName SSLEngine on RedirectMatch

Re: [SOGo] Change "Links to this Calendar" from http to https ?

2018-02-23 Thread Ludovic Marcotte
On 2018-02-23 4:25 AM, "albert.solana" (albert.sol...@upcnet.es) wrote: Hello, I have the same issue in my a 3.2.10 Sogo servers, all links appear as http instead https. I'ts annoying for the users. Show your Apache configuration for SOGo. -- Ludovic Marcotte lmarco...@inverse.ca ::

Re: [SOGo] Change "Links to this Calendar" from http to https ?

2018-02-23 Thread "albert.solana"
Hello, I have the same issue in my a 3.2.10 Sogo servers, all links appear as http instead https. I'ts annoying for the users. El 22/02/18 a les 15:19, Pierre Fumet (p...@zdn.fr) ha escrit: Hello, is there a way to generate CalDAV/WebDAV links to calendars/addressbooks in https instead of

Re: [SOGo] Change "Links to this Calendar" from http to https ?

2018-02-22 Thread "Raimondo Giammanco"
Hello,  You can always redirect port 80 to 443 on your server, i.e. for apache something like:   ServerAdmin BLA   ServerName BLABA:80   ErrorLog logs/error_log   CustomLog logs/access_log combined   RewriteEngine On   RewriteCond %{SERVER_PORT} !^443$   RewriteRule ^/(.*)

[SOGo] Change "Links to this Calendar" from http to https ?

2018-02-22 Thread Pierre Fumet
Hello, is there a way to generate CalDAV/WebDAV links to calendars/addressbooks in https instead of http ? I have them in https in SOGo2 instance, but not in SOGo3 instance, even though i can't see any difference in config. Couldn't find any option available nor a bug about that. Thks in