• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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 [email protected] via horde:

There was an error sending your message: Failed to add recipient: # [email protected] [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 [[email protected]]: Invalid response code received from server
 
Back
Top