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