[Tickets #13825] Re: Remi PHP update to 5.5.21-1 results in constant resyncing
noreply at bugs.horde.org
noreply at bugs.horde.org
Sat Jan 24 22:01:03 UTC 2015
DO NOT REPLY TO THIS MESSAGE. THIS EMAIL ADDRESS IS NOT MONITORED.
Ticket URL: https://bugs.horde.org/ticket/13825
------------------------------------------------------------------------------
Ticket | 13825
Updated By | arjen+horde at de-korte.org
Summary | Remi PHP update to 5.5.21-1 results in constant
| resyncing
Queue | Synchronization
Version | FRAMEWORK_5_2
Type | Bug
State | Feedback
Priority | 1. Low
Milestone |
Patch |
Owners |
------------------------------------------------------------------------------
arjen+horde at de-korte.org (2015-01-24 22:01) wrote:
> This would be the proper configuriation, right?
>
> $servers['imap'] = array(
> 'disabled' => false,
> 'debug' => '/var/log/horde_imp_debug.log',
No. You're either modifying 'imp/config/backends.php' (which you
should never do, since changes will be lost on updates) or are
redefining $server['imap'] in 'imp/config/backends.local.php' (which
you shouldn't do either, since this will also remove additional
parameters on updates).
The correct method would be to put the following in
'imp/config/backends.local.php':
<?php
$servers['imap']['disabled'] = true;
$servers['imap']['debug'] = '/var/log/horde_imp_debug.log';
More information about the bugs
mailing list