I see in the main.inc.php you can enter multiple hosts and then users are given a drop down list of domains to select from, what is the syntax to define the multiple hosts?
This was posted in the list yesterday I think...here's a copy of what was said
*Quote* On Wed, 2005-10-12 at 14:26 +1000, justin randell wrote: try this:
$rcmail_config['default_host'] = array('sitea.com', 'siteb.com', 'sitec.com');
or:
$rcmail_config['default_host'][] = 'sitea.com'; $rcmail_config['default_host'][] = 'siteb.com'; $rcmail_config['default_host'][] = 'sitec.com';Ben
----- Original Message ----- From: "Chris Wallace" roundcube@internetranch.net To: dev@lists.roundcube.net Sent: Thursday, October 13, 2005 9:38 PM Subject: Multiple host drop down on login page
I see in the main.inc.php you can enter multiple hosts and then users are given a drop down list of domains to select from, what is the syntax to define the multiple hosts?