Author Topic: Error 454 4.7.1 relay denied  (Read 16998 times)

Offline jptferreira

  • Newbie
  • *
  • Posts: 3
Error 454 4.7.1 relay denied
« on: December 09, 2013, 11:20:29 AM »
Converted from Squirrelmail to Roundcube and really like it. Can receive emails but cannot send, get the Error 454 4.7.1 relay denied. Email applications like outlook and thunderbird... and iphones all working fine with the email server. Tried to check everything but couldn't find a reason for this problem.
Any possible help?

Thanks!

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,876
    • SKaero - Custom Roundcube development
Re: Error 454 4.7.1 relay denied
« Reply #1 on: December 09, 2013, 12:36:36 PM »
Do you have SMTP setup up in the main.inc.php? If so how?

Offline jptferreira

  • Newbie
  • *
  • Posts: 3
Re: Error 454 4.7.1 relay denied
« Reply #2 on: December 09, 2013, 02:38:47 PM »
Thanks!

Here it goes:

$rcmail_config['smtp_server'] = 'mail.domain.com';

$rcmail_config['smtp_port'] = 25;

$rcmail_config['smtp_user'] = '';

$rcmail_config['smtp_pass'] = '';


$rcmail_config['smtp_auth_type'] = '';
$rcmail_config['smtp_auth_cid'] = null;

$rcmail_config['smtp_auth_pw'] = null;

$rcmail_config['smtp_helo_host'] = '';

$rcmail_config['smtp_timeout'] = 0;

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,876
    • SKaero - Custom Roundcube development
Re: Error 454 4.7.1 relay denied
« Reply #3 on: December 09, 2013, 02:55:08 PM »
You need to add a value for smtp_user & smtp_pass, you can use %u for the current username and %p for the current password.

Offline jptferreira

  • Newbie
  • *
  • Posts: 3
Re: Error 454 4.7.1 relay denied
« Reply #4 on: December 09, 2013, 03:01:30 PM »
That was it! Thanks a lot! Amazing support!

JP