Jake,
I have finally had time to look into why my round Cube was not working here
is what I changed in the main.inc.php file.
These were both set to localhost. I set them to %u and %p
// SMTP username (if required) if you use %u as the username RoundCube
// will use the current username for login
$rcmail_config['smtp_user'] = '%u';
// SMTP password (if required) if you use %p as the password RoundCube
// will use the current user's password for login
$rcmail_config['smtp_pass'] = '%p';
I set this one to '' to allow the server to decide the auth type
// SMTP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use
// best server supported one)
$rcmail_config['smtp_auth_type'] = '';
I had to put a . after INBOX and that then gave me all of the folders with
all of their data in them.
// only list folders within this path
$rcmail_config['imap_root'] = 'INBOX.';
I again put a . after INBOX
// display these folders separately in the mailbox list.
// these folders will automatically be created if they do not exist
$rcmail_config['default_imap_folders'] = array('INBOX.', 'Drafts', 'Sent',
'Junk', 'Trash');
I set this one to blank to allow it to show up with my helo
// SMTP HELO host
// Hostname to give to the remote server for SMTP 'HELO' or 'EHLO' messages
// Leave this blank and you will get the server variable 'server_name' or
// localhost if that isn't defined.
$rcmail_config['smtp_helo_host'] = '';
I am not sure why I had to specify the servername and not just be able to
use localhost but I put my mail server in there and then it worked great.
// use this host for sending mails.
// to use SSL connection, set ssl://smtp.host.com
// if left blank, the PHP mail() function is used
$rcmail_config['smtp_server'] = 'mail.domain.com';
I hope this helps in future developments.
Thanks
Q
---------------------------------------------------------------------
QmailToaster hosted by: VR Hosted <http://www.vr.org>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]