Author Topic: SMTP Error No From Address  (Read 3137 times)

Offline tonymccallie

  • Newbie
  • *
  • Posts: 1
SMTP Error No From Address
« 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:
Code: [Select]
$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

Offline daashag

  • Full Member
  • ***
  • Posts: 198
Re: SMTP Error No From Address
« Reply #1 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