Trying to set up z-push to work with imap (says it now supports it). When I get it working I'll write a how-to. I don't want to install zarafa as I'm only interested in getting email going via mobile at this stage.
Have downloaded z-push and installed, but getting stuck trying to get the web alias working.
The manual says you must configure Apache to redirect the URL 'Microsoft-Server-ActiveSync' to the index.php
file in the z-push directory. This can be done by adding the line:
Alias /Microsoft-Server-ActiveSync /var/www/html/z-push/index.php
to your httpd.conf file. Make sure that you are adding the line to the correct part of your Apache
configuration, taking care of virtual hosts and other Apache configurations.
I've created the custom template /etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf and created a file S95z-push with the following
# Z-push
Alias /Microsoft-Server-ActiveSync /var/www/html/z-push/index.php
Created an .htaccess file with
php_flag magic_quotes_gpc off
php_flag register_globals off
php_flag magic_quotes_runtime off
php_flag short_open_tag on
and run expand-template /etc/httpd/conf/httpd.conf then restarted
sv httpd-e-smith restart
Now when I got to
http://server/Microsoft-Server-ActiveSync I get 403 forbidden.
So do I need to set some access permissions somewhere ?