Horde not send mails in postfix
I found that horde will use 'popen' function to open /var/qmail/bin/sendmail.
And will use 'escapeshellcmd' function to send an e-mail.
After removed those two functions from 'disable_functions' parameter (/etc/php.ini), horde and mail system will be OK.
escapeshellarg - removed this function in disable_functions. [which means enabled in php.ini]
It's just a setting change:
edit /usr/share/psa-horde/config/conf.php.
Change the line that says:
$conf['mailer']['type'] = 'sendmail';
to
$conf['mailer']['type'] = 'smtp';
http://forum.parallels.com/showthread.php?75426-Failed-to-open-sendmail-Horde-not-sending-emails
Comments
Post a Comment