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
On Fri, 16 Jun 2006, jan gestre 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?
It is a client, it doesn't have any effect on receiving server
behavior, since it just talks to the imap server, and mail is filtered before the imap server sees it. For sending, it might depend on how you have it set up, whether you are using php's mail() or smtp.
Jon Daley http://jon.limedaley.com/
Research is what I'm doing when I don't know what I'm doing. -- von Braun
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
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
I'd only add that you may have your settings so that anything originating from that DNS or domain is not scanned, which is done on the server level. I've not used dspam, but in spam assassin I can: whitelist_from *@mydomain.com
or
whitelist_from_rcvd *@mydomain.com mydomain.com
The first one would whitelist anything that is sent from 'mydomain.com' regardless of it's DNS would clear without being spam checked. The second one is more harsh (you would not use these together, one or the other), it says 'clear anything from @mydomain.com so long as the reverse DNS matches mydomain.com'
So if you had a setup that did this, you would bypass spam assassin -- probably not something you have, but you never know, it had me stumped one time before:)
On 6/16/06, steve@inhometechsupport.com steve@inhometechsupport.com wrote:
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!
i only added the last two since the first two are already configured , then i refreshed postfix and here is what i got from my maillog:
Jun 17 21:01:11 mail postfix/smtpd[6102]: warning: SASL authentication failure: no user in db Jun 17 21:01:11 mail postfix/smtpd[6102]: warning: SASL authentication failure: no user in db Jun 17 21:01:11 mail postfix/smtpd[6102]: warning: SASL authentication failure: no secret in database Jun 17 21:01:11 mail postfix/smtpd[6102]: warning: localhost.sample.com[ 127.0.0.1]: SASL DIGEST-MD5 authentication failed: authentication failure
it is no longer sending messages. any suggestions?
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
On 6/16/06, Jon Daley roundcube@jon.limedaley.com wrote:
On Fri, 16 Jun 2006, jan gestre 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?
It is a client, it doesn't have any effect on receiving server
behavior, since it just talks to the imap server, and mail is filtered before the imap server sees it. For sending, it might depend on how you have it set up, whether you are using php's mail() or smtp.
postfix settings are the same as my prior mailserver, the only difference
is that its web client is squirrelmail. my old box was blocking spam even without the spamassassin coz i've set this at postfix main.cf:
smtpd_recipient_restrictions = reject_rbl_client sbl-xbl.spamhaus.org
On 6/17/06, jan gestre freebsd.ph@gmail.com wrote:
On 6/16/06, Jon Daley < roundcube@jon.limedaley.com> wrote:
On Fri, 16 Jun 2006, jan gestre 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?
It is a client, it doesn't have any effect on receiving server
behavior, since it just talks to the imap server, and mail is filtered before the imap server sees it. For sending, it might depend on how you
have it set up, whether you are using php's mail() or smtp.
postfix settings are the same as my prior mailserver, the only
difference is that its web client is squirrelmail. my old box was blocking spam even without the spamassassin coz i've set this at postfix main.cf:
smtpd_recipient_restrictions = reject_rbl_client sbl-xbl.spamhaus.org
i've solved the problem, i forgot to add the content_filter=smtp-amavis:[ 127.0.0.1]:10024 to my main.cf :D