Roundcube Community Forum

Release Support => Pending Issues => Topic started by: tonymccallie on November 23, 2006, 12:03:34 PM

Title: SMTP Error No From Address
Post by: tonymccallie on November 23, 2006, 12:03:34 PM
Everything works great except that I can't send emails. I get this in the log:
SMTP Error: SMTP error: No From address has been provided

Here's my config:
$rcmail_config['smtp_server'] = 'localhost';

// 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'] = '%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';
Am I missing something?

Thanks in advance, Tony
Title: Re: SMTP Error No From Address
Post by: daashag on November 23, 2006, 12:09:29 PM
Doulble check you can login into smtp server through telnet

telnet localhost 25

Also check you main.inc.php for where it says Authorization Type might change to LOGIN

Regard daas