Allow EAS push

This commit is contained in:
Daniel Berteaud 2015-02-18 11:23:36 +01:00
parent b32d9f4097
commit 01d9b52f02
2 changed files with 13 additions and 1 deletions

View File

@ -24,7 +24,7 @@ ProxyPass /SOGo/casProxy http://localhost/sogo-cgi-bin/cas-proxy-validate
{
if ($activeSync =~ m/^enabled|on|1|yes$/i){
$OUT .=<<"HERE";
ProxyPass /Microsoft-Server-ActiveSync http://127.0.0.1:$sogod{'TCPPort'}/SOGo/Microsoft-Server-ActiveSync retry=60 connectiontimeout=5 timeout=360
ProxyPass /Microsoft-Server-ActiveSync http://127.0.0.1:$sogod{'TCPPort'}/SOGo/Microsoft-Server-ActiveSync retry=60 connectiontimeout=5 timeout=3600
HERE
}
else {

View File

@ -0,0 +1,12 @@
{
if (($sogod{'ActiveSync'} || 'disabled') eq 'enabled'){
$OUT .=<<'_EOF';
SOGoMaximumPingInterval = 3540;
SOGoMaximumSyncInterval = 3540;
SOGoInternalSyncInterval = 60;
WOWatchDogRequestTimeout = 3600;
_EOF
}
}