Hi!
What is the correct way to set up access to virtual mailboxes? I'm using the cvs version.
Thanks
Christopher Parr
On Wed, 22 Mar 2006 10:18:08 +0100, "Christopher R. Parr" crparr@gmail.com wrote:
Hi!
What is the correct way to set up access to virtual mailboxes? I'm using the cvs version.
Here is your answer (from config/main.inc.php):
// the mail host chosen to perform the log-in // leave blank to show a textbox at login, give a list of hosts // to display a pulldown menu or set one host as string. // To use SSL connection, enter ssl://hostname:993 $rcmail_config['default_host'] = 'ssl://localhost:993';
Thanks. To be more specific: I have got 4 Mail accounts in 2 domains, but they all run on one mailserver, crparr.net. I have set the default host to crparr.net but I cannot connect...
Thanks in advance
Christopher
2006/3/22, Martin Marques martin@bugs.unl.edu.ar:
On Wed, 22 Mar 2006 10:18:08 +0100, "Christopher R. Parr" crparr@gmail.com wrote:
Hi!
What is the correct way to set up access to virtual mailboxes? I'm using the cvs version.
Here is your answer (from config/main.inc.php):
// the mail host chosen to perform the log-in // leave blank to show a textbox at login, give a list of hosts // to display a pulldown menu or set one host as string. // To use SSL connection, enter ssl://hostname:993 $rcmail_config['default_host'] = 'ssl://localhost:993';
--
Lic. Martín Marqués | SELECT 'mmarques' || Centro de Telemática | '@' || 'unl.edu.ar'; Universidad Nacional | DBA, Programador, del Litoral | Administrador
On Wed, 22 Mar 2006 14:42:48 +0100, "Christopher R. Parr" crparr@gmail.com wrote:
Thanks. To be more specific: I have got 4 Mail accounts in 2 domains, but they all run on one mailserver, crparr.net. I have set the default host to crparr.net but I cannot connect...
2006/3/22, Martin Marques martin@bugs.unl.edu.ar:
// the mail host chosen to perform the log-in // leave blank to show a textbox at login, give a list of hosts // to display a pulldown menu or set one host as string. // To use SSL connection, enter ssl://hostname:993 $rcmail_config['default_host'] = 'ssl://localhost:993';
Which are your domains? Suppose they are dom1.crparr.net and dom2.crparr.net, all you have to do is set this:
$rcmail_config['default_host'] = 'dom1.crparr.net,dom2.crparr.net';
The domains that are being served are crparr.net and oberhollenzer.cc. but both are being served by mail.crparr.net. so the followiung string should be correct: $rcmail_config['default_host'] = 'mail.crparr.net';
Is this correct?
Thanks in advance.
2006/3/22, Martin Marques martin@bugs.unl.edu.ar:
On Wed, 22 Mar 2006 14:42:48 +0100, "Christopher R. Parr" crparr@gmail.com wrote:
Thanks. To be more specific: I have got 4 Mail accounts in 2 domains, but they all run on one mailserver, crparr.net. I have set the default host to crparr.net but I cannot connect...
2006/3/22, Martin Marques martin@bugs.unl.edu.ar:
// the mail host chosen to perform the log-in // leave blank to show a textbox at login, give a list of hosts // to display a pulldown menu or set one host as string. // To use SSL connection, enter ssl://hostname:993 $rcmail_config['default_host'] = 'ssl://localhost:993';
Which are your domains? Suppose they are dom1.crparr.net and dom2.crparr.net, all you have to do is set this:
$rcmail_config['default_host'] = 'dom1.crparr.net,dom2.crparr.net';
--
Lic. Martín Marqués | SELECT 'mmarques' || Centro de Telemática | '@' || 'unl.edu.ar'; Universidad Nacional | DBA, Programador, del Litoral | Administrador
On Wed, 22 Mar 2006 15:09:31 +0100, "Christopher R. Parr" crparr@gmail.com wrote:
The domains that are being served are crparr.net and oberhollenzer.cc. but both are being served by mail.crparr.net. so the followiung string should be correct: $rcmail_config['default_host'] = 'mail.crparr.net';
Is this correct?
No! Read the comment above each configuration parameter. You need to set these three parameters in main.inc.php:
$rcmail_config['default_host'] $rcmail_config['mail_domain'] $rcmail_config['smtp_server']
Read the comments of all three.
For multiple values, you need to declare them in an array,
$rcmail_config['default_host'] = array('dom1.cparr.net,dom2.crparr.net);
Roundcube Forum now open www.roundcubefourm.net
--
Dan Schaper
On 3/22/06, Martin Marques martin@bugs.unl.edu.ar wrote:
On Wed, 22 Mar 2006 14:42:48 +0100, "Christopher R. Parr" < crparr@gmail.com> wrote:
Thanks. To be more specific: I have got 4 Mail accounts in 2 domains, but they all run on one mailserver, crparr.net. I have set the default host to crparr.net but I cannot connect...
2006/3/22, Martin Marques martin@bugs.unl.edu.ar:
// the mail host chosen to perform the log-in // leave blank to show a textbox at login, give a list of hosts // to display a pulldown menu or set one host as string. // To use SSL connection, enter ssl://hostname:993 $rcmail_config['default_host'] = 'ssl://localhost:993';
Which are your domains? Suppose they are dom1.crparr.net and dom2.crparr.net, all you have to do is set this:
$rcmail_config['default_host'] = 'dom1.crparr.net,dom2.crparr.net';
--
Lic. Martín Marqués | SELECT 'mmarques' || Centro de Telemática | '@' || 'unl.edu.ar'; Universidad Nacional | DBA, Programador, del Litoral | Administrador
-- Dan Schaper
On Wed, 22 Mar 2006 12:25:31 -0700, "Dan Schaper" dschaper@gmail.com wrote:
For multiple values, you need to declare them in an array,
$rcmail_config['default_host'] = array('dom1.cparr.net,dom2.crparr.net);
Maybe the comment on this configurable option should change to something like:
// the mail host chosen to perform the log-in // leave blank to show a textbox at login, give an array // with a list of hosts to display a pulldown menu or // set one host as string. // To use SSL connection, enter ssl://hostname:993 $rcmail_config['default_host'] = 'ssl://localhost:993';