Roundcube Community Forum

 

Installation Issues

Started by King Kovifor, November 16, 2006, 08:48:45 PM

Previous topic - Next topic

King Kovifor

Ok,

I'm trying to install RoundCube on my domain at mw.chaoticscripters.com, but I'm having issues. Yeah it's there but it's not "working"... I have a few issues...

1. The Server field at login is confusing, is it needed, and if not, how can I remove it.

2. How do I make it so that I can have it as [ input field here ]@chaoticscripters.com (so that on login they only need to place the first part of the e-mail address...

3. It won't send e-mails... my SMTP settings in mail.inc.php:

// 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'] = '';

// SMTP port (default is 25; 465 for SSL)
$rcmail_config['smtp_port'] = 25;

// SMTP username (if required) if you use %u as the username RoundCube
// will use the current username for login
$rcmail_config['smtp_user'] = '';

// 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'] = '';

// SMTP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use
// best server supported one)
$rcmail_config['smtp_auth_type'] = '';

// Log sent messages
$rcmail_config['smtp_log'] = TRUE;

Now, I tried putting $rcmail_config['smtp_server'] to mail.domain.com, but that removed all possibility of logging in.

I think that's it for now. Also, I have everything as INBOX. as that's what the wiki said to do, as i'm not sure if i'm that IMAP thing.

I'm trying to use RC as an alternative to :2095

daashag

Quote from: King Kovifor Ok,

I'm trying to install RoundCube on my domain at mw.chaoticscripters.com, but I'm having issues. Yeah it's there but it's not "working"... I have a few issues...

1. The Server field at login is confusing, is it needed, and if not, how can I remove it.
You have to define an imap server.
http://roundcubeforum.net/forum/index.php?topic=891.msg3880#msg3880


Quote2. How do I make it so that I can have it as [ input field here ]@chaoticscripters.com (so that on login they only need to place the first part of the e-mail address...

// Automatically add this domain to user names for login
// Only for IMAP servers that require full e-mail addresses for login
// Specify an array with 'host' => 'domain' values to support multiple hosts
$rcmail_config['username_domain'] = 'your.domain.goes.here';

Quote3. It won't send e-mails... my SMTP settings in mail.inc.php:

// 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'] = '';

// SMTP port (default is 25; 465 for SSL)
$rcmail_config['smtp_port'] = 25;

// SMTP username (if required) if you use %u as the username RoundCube
// will use the current username for login
$rcmail_config['smtp_user'] = '';

// 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'] = '';

// SMTP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use
// best server supported one)
$rcmail_config['smtp_auth_type'] = '';

// Log sent messages
$rcmail_config['smtp_log'] = TRUE;
// 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'] = 'smtp.your.server.goes here';

// 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';


King Kovifor

Thanks, but how can I'm not sure what my IMAP server is...

daashag

You can find that out from your host

King Kovifor

My host doesn't know... I'm not sure my host knows. Any way through PHP or other means?

daashag

How do you currently get your email?
You need an IMAP server to connect to in order for RC to work.
Not much more I can say.