SOGo and Activsync

You are right, it is’t working :cry:

The virtual host for Activsync is not configured, and to be quite frank i’m still figuring out how it al works in the new virtual-host setup an V7-beta2.

I got it running, but it is better if someone else checks this solution.
If it’s good we make it permanent, always remember nethsever most of the configuration file are overwritten at certain events. So you should never manually change them, and that’s exactly what i did. :pensive:

edit /etc/httpd/conf.d/SOGo.conf
un-mark Microsoft ActiveSync support

# Enable to use Microsoft ActiveSync support
# Note that you MUST have many sogod workers to use ActiveSync.
# See the SOGo Installation and Configuration guide for more details.
#
ProxyPass /Microsoft-Server-ActiveSync \
 http://127.0.0.1:20000/SOGo/Microsoft-Server-ActiveSync \
 retry=60 connectiontimeout=5 timeout=360

edit /etc/httpd/conf.d/default-virtualhost.inc
add a redirect, last line (BTW sooner or later this will be overwritten)

RewriteEngine On
RewriteRule ^/sogo(/.*)?\$ https://%{SERVER_NAME}/SOGo$1 [R=301,L]
RewriteRule ^/SOGo(/.*)?\$ https://%{SERVER_NAME}/SOGo$1 [R=301,L]
RewriteRule ^/Microsoft-Server-ActiveSync(/.*)?\$ https://%{SERVER_NAME}/Microsoft-Server-ActiveSync$1 [R=301,L]

at least you can test it this way…

1 Like