[imp] More than one POP3 server in servers.php, login dropdown only shows 1 of them.
Research & Development
r_and_d at amersol.edu.pe
Thu Aug 25 07:33:58 PDT 2005
Hi,
The problem is that each entry should have a different name, I'm sure
that what you are doing is the following (if not, let us know):
$servers['pop'] = array(
'name' => 'POP Server 1',
'server' => 'pop1.domain.tdl',
other config here...
);
$servers['pop'] = array(
'name' => 'POP Server 2',
'server' => 'pop2.domain.tdl',
other config here...
);
since the name of the array entry is the same the last one will
prevail/overwrite the first one.
Solution: name them differently
$servers['pop1'] = array(
'name' => 'POP Server 1',
'server' => 'pop1.domain.tdl',
other config here...
);
$servers['pop2'] = array(
'name' => 'POP Server 2',
'server' => 'pop2.domain.tdl',
other config here...
);
Hope this solves your problem.
--
Eduardo Del Valle Flores-Guerra
FDR WebSite & DataBase Assistant
Member of the TNT
Phone: (511)-435-0890 EXT. 4129
MNSi Customer Service - Nicolas MacPherson wrote:
> Hello (again),
>
> Up until now I've only had 2 servers in my servers.php file, a IMAP
> server and a POP3 server. They both show up with no problem in my IMP3
> login screen dropdown menu. But when I add in 2 additional POP3
> servers, only the last one in the list appears in the menu. Just
> wondering if that is a limitation of IMP to only have 1 server of each
> type, or if I'm messing up when I'm adding the servers. Any assistance
> would be appreciated.
>
> Nicolas MacPherson
More information about the imp
mailing list