User_external: Login fails; config error?

Hi,
I recently set up a new NC host with NC 18 alongside a dockerized mail-stack. Now, for ease of maintenance Iā€™d like to allow my mail users to login using their mail credentials - the user_external app seems to be just the appropriate extension.

So, I installed the app and tried to configure it according to the documentation, but so far I canā€™t log in any of my mail users. :frowning:

My setup:

  • Debian Buster
  • NGinx with a few named virtual hosts, facilitating LetsEncrypt-certificates and SNI (all running well)
  • Mailcow, a dockerized mail stack. Ports 25, 110, 143, 993, 995 are reachable via localhost address

the relevant part of my config.php:

ā€˜user_backendsā€™ =>
array (
ā€˜classā€™ => ā€˜OC_User_IMAPā€™,
ā€˜argumentsā€™ =>
array (
0 => ā€˜127.0.0.1ā€™,
1 => 143,
2 => ā€˜tlsā€™,
3 => ā€˜example.comfā€™,
4 => true,
5 => false,
),
),

Changing 127.0.0.1 to the FQDN or to {127.0.0.1} (seen that somewhere) doesnā€™t improve my login success.

Any hints anyone? Iā€™d appreciate :sunglasses: