Thanks for your response, Phil. I'll give that a try. Jason
-----Original Message----- From: Phil Pennock [mailto:[EMAIL PROTECTED] Sent: Friday, January 25, 2008 8:40 PM To: Jason Fisher Cc: [email protected] Subject: Re: [exim] exim4 not using spamd or clamd On 2008-01-25 at 11:28 -0600, Jason Fisher wrote: > Exim4 is sending and receiving messages correctly, but, I'm getting no > added headers and no log entries indicating any activity by clamd or > spamd. Any advice would be greatly appreciated. In one terminal run: exim -d+acl -bd -oX 24 In another terminal, connect to that server on TCP port 24 and speak raw SMTP to send a message. After a banner, you respond with the EHLO command. Eg, putting in the bits you type, that might be: telnet localhost 24 EHLO my.host.name MAIL FROM:<[EMAIL PROTECTED]> RCPT TO:<[EMAIL PROTECTED]> DATA From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: test foo . QUIT The dot on a line on its own is important, that ends the mail. You might instead run: exim -d+acl -bd -oX 24 2>&1 | tee exim.trace so that you get a copy of all the debug information in a file named "exim.trace" and you can then look over it with something more sophisticated than your terminal emulator's scrollbars. Exim provides debugging information which is almost always sufficient. So there can be a lot. -Phil -- ## List details at http://lists.exim.org/mailman/listinfo/exim-users ## Exim details at http://www.exim.org/ ## Please use the Wiki with this list - http://wiki.exim.org/
