IMAP integration with multiple IMAP Servsers

Hi,
I’m using NC 15 and I’ve got IMAP authentification set up like this:

 'user_backends' => 
  array (
    0 => 
   array (
      'class' => 'OC_User_IMAP',
      'arguments' => 
     array (
    0 => 'MYSERVER.org:993/imap/ssl}',
  ),
),
),

It works fine but we have a few other IMAP servers as our assosiation is working in several countries like MYSERVER.pl etc. Is it possible to integrate theese Servers as well?

Thanks a lot!

Havent test yet, but as array is used, i will suppose adding those line couldnt harm your system

'user_backends' => 
  array (
  1 => 
   array (
      'class' => 'OC_User_IMAP',
      'arguments' => 
     array (
    1 => 'MYSERVER.org:993/imap/ssl}',
  ),
),
),

I tryed but it didn’t work… Other ideas?

Found a solution:
‘user_backends’ =>
array (
0 =>
array (
‘class’ => ‘OC_User_IMAP’,
‘arguments’ =>
array (
0 => ‘{myserver1:993/imap/ssl}’,
),
),
1 =>
array (
‘class’ => ‘OC_User_IMAP’,
‘arguments’ =>
array (
0 => ‘{myserver2:993/imap/ssl}’,
),
),
),