Most certainly the problem is that you are currently using php's MAIL feature instead of allowing your roundecube to send them through an SMTP Server. Make sure you setup the following items in your config/main.inc.php file:
$rcmail_config['smtp_server'] = 'localhost'; (or other server if not the web server...) $rcmail_config['smtp_port'] = 25; $rcmail_config['smtp_user'] = '%u'; $rcmail_config['smtp_pass'] = '%p';
That should allow it to work again!
Steven Parker In Home Tech Support www.InHomeTechSupport.com
On Fri, 16 Jun 2006 17:16:53 +0800, "jan gestre" freebsd.ph@gmail.com wrote:
i've finally got my roundcube working, sending and receiving mails from the internet, prior to installing roundcube, postfix has tls and sasl authentication and was integrated with dspam and clamav using amavisd-new, however when roundcube was installed as the webmail client, i can no longer see from the maillogs the mails being scanned before being sent and before accepting for delivery. is this normal? or roundcube totally bypass them?
TIA