i just install round cube, after having some problems with the erro 1f4 jajaja i read many have bump in to it, but now wend i try to send and emal it just wont send, can anybody help me please i have no clue what to no next
Hi,
On Sun, 15 Oct 2006 17:24:31 -0700, jrivera@igraficaestudio.com wrote:
i just install round cube, after having some problems with the erro 1f4 jajaja i read many have bump in to it, but now wend i try to send and emal it just wont send, can anybody help me please i have no clue what to no next
Take a look at the ./logs/ directory into your roundcube install dir, especially the files "sendmail" and "errors". Which MTA are you using on your server ? is PHP configured correctly ? Check also the webserver logs, and try to check if the PHP mail() function (http://php.net/mail for more info) is working correctly, by using a little script like :
<? if (mail("dest@example.org", "Test", "blablabla.")) echo "It works"; else echo "Error : misconfiguration ?"; ?>
Hope that'll help
hi,
and try to check if the PHP mail() function (http://php.net/mail for more info) is working correctly, by using a little script like :
[...]
In fact this test is useless, since Roundcube seems to use PEAR classes with sockets in order to communicate with SMTP servers, and not the php mail() function. Sorry for replying a bit too fast.
I believe that's a config option dependent upon whether you specify an SMTP server.
If you don't it uses mail()
Pierre Mauduit wrote:
hi,
and try to check if the PHP mail() function (http://php.net/mail for more info) is working correctly, by using a little script like :
[...]
In fact this test is useless, since Roundcube seems to use PEAR classes with sockets in order to communicate with SMTP servers, and not the php mail() function. Sorry for replying a bit too fast.
On 10/16/06, Matt Kaatman roundcube-dev@matt.kaatman.com wrote:
I believe that's a config option dependent upon whether you specify an SMTP server.
If you don't it uses mail()
I can confirm that as it's how I use it.
Regards, Patrick.