Author Topic: Error SMTP 553 sending messages  (Read 5437 times)

Offline alfonsogomez

  • Newbie
  • *
  • Posts: 4
Error SMTP 553 sending messages
« on: December 29, 2010, 02:42:39 PM »
I get this error sendig emails:

error 553 sorry, that domain isn't in my list of allowed rcpthosts (#5.7.1)"

I don't know if it is Rouncube problem or PHP config or similar

Thanks

Offline alfonsogomez

  • Newbie
  • *
  • Posts: 4
Error SMTP 553 sending messages
« Reply #1 on: December 29, 2010, 02:51:22 PM »
In $rcmail_config['smtp_server'] = '';

I had before:

$rcmail_config['smtp_server'] = 'mail.mydomain.com'; and run ok, but someone have changes in my server. I have change it to:

$rcmail_config['smtp_server'] = '';

and seems to run ok again. I ignore why. Any idea?

Offline JohnDoh

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 2,850
Error SMTP 553 sending messages
« Reply #2 on: December 30, 2010, 05:04:22 AM »
thats your SMTP server settings, nothing to do with RC. you probably need to use SMTP auth I would guess
Roundcube Plugins: Contextmenu, SpamAssassin Prefs, and more…

Offline alfonsogomez

  • Newbie
  • *
  • Posts: 4
Error SMTP 553 sending messages
« Reply #3 on: December 30, 2010, 05:48:44 AM »
Then I imagine I mus fill this data:

$rcmail_config['smtp_server'] = '';

// 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'] = '';

// 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'] = '';

// SMTP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use
// best server supported one)
$rcmail_config['smtp_auth_type'] = '';

How must I fill it? Thanks

Offline alfonsogomez

  • Newbie
  • *
  • Posts: 4
Error SMTP 553 sending messages
« Reply #4 on: January 03, 2011, 04:56:15 AM »
Any idea about this?

Offline JohnDoh

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 2,850
Error SMTP 553 sending messages
« Reply #5 on: January 03, 2011, 05:43:58 AM »
the variables all have comments explaining what they are so what is it that you dont understand how to fill in? I mean i cant really say much more than is in the comments in general coz i dont know anything about your setup.
Roundcube Plugins: Contextmenu, SpamAssassin Prefs, and more…