Roundcube Community Forum

 

Error SMTP 553 sending messages

Started by alfonsogomez, December 29, 2010, 02:42:39 PM

Previous topic - Next topic

alfonsogomez

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

alfonsogomez

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?

JohnDoh

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

alfonsogomez

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

alfonsogomez


JohnDoh

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