[imp] question about IMP 2.3.7 (multiple domains)

Max Kalika max@the-triumvirate.net
Sun, 11 Mar 2001 15:18:30 -0800


Quoting Ronald Bootsman <Ronald@bootsman.net>:

> $servers['imap'] = array(
> $servers['imap'] = array(
> 
> Am I missing some configuration somewhere ? Or doesn't it work in this
> version ?

You want the array index to be different for each entry. i.e.

  $servers['imap1'] = array(
      ...
  );

  $servers['imap2'] = array(
      ...
  );


--mk23