Author Topic: Installation Issues  (Read 3966 times)

Offline King Kovifor

  • Newbie
  • *
  • Posts: 3
Installation Issues
« on: November 16, 2006, 08:48:45 PM »
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:

Code: [Select]
// 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

Offline daashag

  • Full Member
  • ***
  • Posts: 198
Re: Installation Issues
« Reply #1 on: November 16, 2006, 09:18:58 PM »
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


Quote

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...

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

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

Code: [Select]
// 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';


Offline King Kovifor

  • Newbie
  • *
  • Posts: 3
Re: Installation Issues
« Reply #2 on: November 17, 2006, 03:36:25 PM »
Thanks, but how can I'm not sure what my IMAP server is...

Offline daashag

  • Full Member
  • ***
  • Posts: 198
Re: Installation Issues
« Reply #3 on: November 17, 2006, 05:45:33 PM »
You can find that out from your host

Offline King Kovifor

  • Newbie
  • *
  • Posts: 3
Re: Installation Issues
« Reply #4 on: November 18, 2006, 11:46:35 AM »
My host doesn't know... I'm not sure my host knows. Any way through PHP or other means?

Offline daashag

  • Full Member
  • ***
  • Posts: 198
Re: Installation Issues
« Reply #5 on: November 18, 2006, 12:23:32 PM »
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.