Author Topic: non-SMTP  (Read 12179 times)

Offline gappelgren

  • Newbie
  • *
  • Posts: 4
non-SMTP
« on: July 02, 2006, 01:27:58 PM »
Hello all:

I sent a message and in my log appeared:

warning: localhost.localdomain[127.0.0.1] sent non-SMTP command: MIME-Version: 1.0

Some idea?

thank you
Gloria

Offline flosoft

  • Sr. Member
  • ****
  • Posts: 349
    • http://flosoft.biz
Re: non-SMTP
« Reply #1 on: July 02, 2006, 01:31:46 PM »
Well, was the message sent?
What RC Version do you use?
Could you paste the config file in here?

Offline gappelgren

  • Newbie
  • *
  • Posts: 4
Re: non-SMTP
« Reply #2 on: July 02, 2006, 01:54:42 PM »
I'm sorry. I sent emails to other accounts.

Version RC is 0.1beta

my main.inc.php:
Code: [Select]
$rcmail_config = array();
$rcmail_config['debug_level'] = 1;
$rcmail_config['enable_caching'] = FALSE; //TRUE;
$rcmail_config['message_cache_lifetime'] = '10d';
$rcmail_config['auto_create_user'] = TRUE;
$rcmail_config['default_host'] = 'localhost'; //'';
$rcmail_config['default_port'] = 143;
$rcmail_config['mail_domain'] = '';
$rcmail_config['virtuser_file'] = '';
$rcmail_config['virtuser_query'] = '';
$rcmail_config['smtp_server'] = 'localhost';
$rcmail_config['smtp_port'] = 25;
$rcmail_config['smtp_user'] = '%u';
$rcmail_config['smtp_pass'] = '%p';
$rcmail_config['smtp_auth_type'] = '';
$rcmail_config['smtp_log'] = TRUE;
$rcmail_config['list_cols'] = array('subject', 'from', 'date', 'size');
$rcmail_config['skin_path'] = 'skins/default/';
$rcmail_config['temp_dir'] = 'temp/';
$rcmail_config['log_dir'] = 'logs/';
$rcmail_config['session_lifetime'] = 10;
$rcmail_config['ip_check'] = TRUE;
$rcmail_config['locale_string'] = 'es';
$rcmail_config['date_short'] = 'D H:i';
$rcmail_config['date_long'] = 'd.m.Y H:i';
$rcmail_config['useragent'] = 'RoundCube Webmail/0.1b';
$rcmail_config['product_name'] = 'RoundCube Webmail';
$rcmail_config['imap_root'] = '';
$rcmail_config['sent_mbox'] = 'Sent';
$rcmail_config['trash_mbox'] = 'Trash';
$rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash');
$rcmail_config['message_sort_col'] = 'date';
$rcmail_config['message_sort_order'] = 'DESC';
$rcmail_config['skip_deleted'] = FALSE;
$rcmail_config['generic_message_footer'] = '';
$rcmail_config['mail_header_delimiter'] = "\r\n";
$rcmail_config['pagesize'] = 40;
$rcmail_config['timezone'] = -4;
$rcmail_config['prefer_html'] = TRUE;
$rcmail_config['prettydate'] = TRUE;
// end of config file
?>

Edit: Added code tags

Offline flosoft

  • Sr. Member
  • ****
  • Posts: 349
    • http://flosoft.biz
Re: non-SMTP
« Reply #3 on: July 02, 2006, 01:58:06 PM »
Well ... do the eMails get sent which you write with RC?

PS: Moved to appropriate category.

Offline gappelgren

  • Newbie
  • *
  • Posts: 4
Re: non-SMTP
« Reply #4 on: July 02, 2006, 03:03:41 PM »
Hi, again:

I do not understand well what you mean to me.

My problem is:

emails sent does not arrive at their destiny. Since, I receive all emails that they send to me

not what parameter I must modify to solve the problem

atte
Gloria


Offline flosoft

  • Sr. Member
  • ****
  • Posts: 349
    • http://flosoft.biz
Re: non-SMTP
« Reply #5 on: July 02, 2006, 03:32:44 PM »
Maybe try to change
$rcmail_config['smtp_server'] = 'localhost';
to your domain, instead of localhost.
Is the port correct?
$rcmail_config['smtp_port'] = 25;
Is the login correct?
$rcmail_config['smtp_user'] = '%u';
$rcmail_config['smtp_pass'] = '%p';