d8759c596e
Z-Push is an open-source implementation of the Microsoft ActiveSync protocol. It can be used to synchronize emails (including push notifications), personal contacts and calendar items between a central HTTP server and a mobile device. It supports a wide range of IMAP, CalDAV and CardDAV servers. It provides a way to push mails to a mobile phone through ActiveSync including iOS devices. XXX This requires a specific PHP module from project Zarafa (PHP-MAPI) at run time. This will be provided in another package.
15 lines
396 B
Text
15 lines
396 B
Text
# Respect the URL as specified in the Alias to make ActiveSync working
|
|
# properly with your devices.
|
|
|
|
Alias /Microsoft-Server-ActiveSync "@ZPUSHDIR@/index.php"
|
|
<Directory "@ZPUSHDIR@">
|
|
Options -Indexes
|
|
AllowOverride None
|
|
Order allow,deny
|
|
allow from all
|
|
|
|
php_flag magic_quotes_gpc off
|
|
php_flag register_globals off
|
|
php_flag magic_quotes_runtime off
|
|
php_flag short_open_tag on
|
|
</Directory>
|