[imp] Advanced option not working
Arjen de Korte
build+horde at de-korte.org
Tue Apr 14 18:56:25 UTC 2020
Citeren "AdamR.Med" <adamr.medallies at gmail.com>:
> I have enabled advanced options in my backends.local.php as follows
>
> $servers['advanced'] = array(
> // Disabled by default
> 'disabled' => false,
> 'name' => 'Advanced IMAP Server',
>
> to get shared mailboxes (ACL) to work and log STMP debug to
> /tmp/imp_imap.log
>
> but enabling that did not took any effect to have both options functional.
>
> Any clue on that?
Read the headers of the backend.php file and you'll find that you
shouldn't be using the array notation (for the reason why, search the
archives):
<?php
$servers['imap']['disabled'] = true;
$servers['advanced']['disabled'] = false;
and so on.
More information about the imp
mailing list