• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Resolved Update from 12.5 -> Horde Exchange Actice Sync experience

onki

Regular Pleskian
Hi,

I could update my VPS to Version 17 but I am not sure if my working Horde Webmail with EAS still works after that because some modifications were required to get it up and running.

Is there any user experience with this situtation? Has someone done this already successful?

Best regards
Onki
 
Has anyone done this yet?
Horde with Exchange ActiveSync is the key feature for me.
Is anyone running Plesk Onxy and Horde EAS meanwhile (with LetsEncrypt SSL)?
Installing a new server in parallel would be another option but I will not do this unless I get somehow a positive feedback.

Best regards
Onki
 
Hi,

I just upgraded my VServer from Plesk 12.5 to 12.8.
It all went OK but the horde configuration was replaced with the default configuration.
So I had to go to /etc/psa-webmail/horde/horde in order to change the horde configuration in file conf.php.

First I had to re enter the admin in section:
Code:
$conf['auth']['admins'] = array('[email protected]');

Then the standard Horde configuration must be change to enable ActiveSync:
Code:
$conf['activesync']['enabled'] = true;

Finally all ActiveSync related parameters must be added:
Code:
$conf['activesync']['params']['driverconfig'] = 'horde';
$conf['activesync']['storage'] = 'Sql';
$conf['activesync']['emailsync'] = true;
$conf['activesync']['version'] = '14.1';
$conf['activesync']['auth']['type'] = 'basic';
$conf['activesync']['autodiscovery'] = 'full';
$conf['activesync']['outlookdiscovery'] = false;
$conf['activesync']['logging']['path'] = '/var/log/psa-horde/psa-horde-activesync.log';
$conf['activesync']['logging']['type'] = 'onefile';
$conf['activesync']['ping']['heartbeatmin'] = 60;
$conf['activesync']['ping']['heartbeatmax'] = 2700;
$conf['activesync']['ping']['heartbeatdefault'] = 480;
$conf['activesync']['ping']['deviceping'] = true;
$conf['activesync']['ping']['waitinterval'] = 15;

After that modification I saved the file and Horde with EAS was working again.

Best regards
Onki
 
Back
Top