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