[imp] "welcome to..." banner
Austin Smith
austin at netaustin.net
Wed Oct 29 15:25:41 PST 2003
If you want multiple server names to point to the same place, you should
just add extra $server array members (giving each member a new name each
time). You'd have to have a list within an array for your idea to work,
and I don't believe IMP supports that in this case. If you know PHP, a
hack to make that work would only take three or four lines... but here's
what I'd do in any event:
//first preferred server
$servers['serverOne'] = array(
'name' => 'serverone.com',
'server' => 'serverone.com',
'protocol' => 'imap/notls',
'port' => 143,
'folders' => '',
'namespace' => '',
'maildomain' => 'serverone.com',
'realm' => 'serverone.com',
'preferred' => 'webmail.serverone.com'
);
//second preferred server
$server['serverTwo'] = $servers['serverOne'];
$server['serverTwo']['preferred'] = 'webmail.servertwo.com';
//third preferred server
$server['serverThree'] = $servers['serverOne'];
$server['serverThree']['preferred'] = 'webmail.serverthree.com';
And so on and so forth. Hope this helped.
Austin
-----Original Message-----
From: imp-bounces at lists.horde.org [mailto:imp-bounces at lists.horde.org]
On Behalf Of Liam Hoekenga
Sent: Wednesday, October 29, 2003 5:11 PM
To: Horde IMP List
Subject: [imp] preferred server mechanism?
Can the preferred server mechanism be made to work with a multiple
entries in
the "preferred" field? Or is it a one SERVER_NAME to one "preferred"
entry per
server definition?
Liam
--
IMP mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: imp-unsubscribe at lists.horde.org
-----Original Message-----
From: imp-bounces at lists.horde.org [mailto:imp-bounces at lists.horde.org]
On Behalf Of Liam Hoekenga
Sent: Wednesday, October 29, 2003 5:24 PM
To: Horde IMP List
Subject: [imp] "welcome to..." banner
I know this has come up before... but looking at the code, in
template/login/login.inc, it looks like it should be picking up from the
registry that the service name you're logging into is "Mail", yet it
still says
"Welcome to Horde". Why?
Liam
--
IMP mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: imp-unsubscribe at lists.horde.org
More information about the imp
mailing list