• We value your experience with Plesk during 2025
    Plesk strives to perform even better in 2026. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2025.
    Please take this short survey:

    https://survey.webpros.com/

Horde SMTP instead of Sendmail

M

majidA

Guest
I want to set horde to use smtp instead of sendmail.
I change this parameters in /usr/share/psa-horde/config/conf.php

/*$conf['mailer']['params']['sendmail_path'] = '/usr/sbin/sendmail';*/
/*$conf['mailer']['params']['sendmail_args'] = '-oi';*/
$conf['mailer']['type'] = 'smtp';
$config['mailer']['params']['host'] = 'localhost';
$conf['mailer']['params']['auth'] = '0';


but this error appears when i send mail to destination@domain.com via horde:

There was an error sending your message: Failed to add recipient: # destination@domain.com [SMTP: Invalid response code received from server (code: 553, response: sorry, that domain isn't in my list of allowed rcpthosts (#5.7.1))]
 
anybody can help me to use smtp for horde?

anybody can help me to use smtp for horde?
 
resolved

resolved my problem by this setting:

$conf['mailer']['params']['sendmail_path'] = '/var/qmail/bin/sendmail';
$conf['mailer']['params']['sendmail_args'] = '-oi';
$conf['mailer']['type'] = 'smtp';
$conf['mailer']['params']['port'] = 587;
$conf['mailer']['params']['auth'] = true;
 
I can't see configuration of email(SMTP)

I can't see configuration of email and webmail page show"SmarterMail has a licensing conflict. Contact the system administrator." when login ??
 
please help me i'm getting below msg when try to send mail through Webmail (Horde).

There was an error sending your message: unable to add recipient [abc@xyz.com]: Invalid response code received from server
 
Back
Top