[exim] filter _outgoung_ mail

2006-03-17 Thread Sheshka, Alexey
Hello! I'm writting _outgoing_ filter for exim, that adds special note at the end of message. There is no problem with it, just python script talking stdin/stdout. Big problem is re-injecting message back to exim, since there is not variable like $remote_recipient I tried this transport:

Re: [exim] Enabling Filters

2006-03-17 Thread Michael Haardt
On Fri, Mar 17, 2006 at 03:01:40PM +1100, DOODS wrote: I just created a script for filtering emails for one domain. However, I don't know how to enable it and where to save that file. I'm running Exim with MySQL DB. I have been reading the manual and I can't see (at least just yet) the answers

Re: [exim] Delivering mail for one user on two hosts

2006-03-17 Thread Jakob Hirsch
Jan-Piet Mens wrote: driver = redirect data = ${quote_local_part:[EMAIL PROTECTED],\ ${quote_local_part:[EMAIL PROTECTED] If the original message were addressed to two recipients that would probably result in two distinct messages being routed to b.example.com right? routed yes,

RE: [exim] missing email problem

2006-03-17 Thread Ian Eiloart
--On 16 March 2006 12:08:19 +0100 Steffen Heil [EMAIL PROTECTED] wrote: Hi Well, as someone said, With that filter, he won't even have seen a copy of his own post, let alone your reply. ;^) - because they contain the taboo words that are in the filter! I've munged the quote to get it

Re: [exim] srs_alt.h

2006-03-17 Thread Phil Pennock
On 2006-03-16 at 15:23 -0800, Doug Jolley wrote: I'm trying to compile Exim 4.60 on an FC2 system. I am upgrading an old 4.43 system and part of the motivation is to take advantage of the integrated Exiscan capabilities. However, I think that is causing me a bit of a problem at the moment.

Re: [exim] Delivering mail for one user on two hosts

2006-03-17 Thread Jan-Piet Mens
On Fri Mar 17 2006 at 12:02:30 CET, Jakob Hirsch wrote: But you should test it if you want to rely on it. Shall do. So a.example.com is the same host as example.com and you want to get a copy on this host? You should have said that from the beginning. Then it's better to use a simple

Re: [exim] Enabling Filters

2006-03-17 Thread DOODS
Thanks for your reply Michael. I guess since we use SQL, the only option I have now is to create a new table and just edit my query strings to accomodate the conditions in the Exim config file. Is there anything I have to add to the config file aside from editing the query strings? Sorry if it's

Re: [exim] .forward invalid-to-line problem

2006-03-17 Thread Martin Hierling
Hi, no ideas? Any help? regards Martin -- SYSTEM ERROR: press F13 to continue... -- ## List details at http://www.exim.org/mailman/listinfo/exim-users ## Exim

Re: [exim] Newby: Local web server, local relay server, remote mailbox

2006-03-17 Thread Marco Mescoli
Joseph Okech wrote: Marco, Have the following settings on your exim.conf and make sure your system's command 'uname -ra' does not return mydomain.com anywhere but www.mydomain.com ## MAIN primary_hostname = www.mydomain.com domainlist local_domains = @ : localhost ##

[exim] Malware acl condition: sophie reported error

2006-03-17 Thread Ken Tucker
I wonder if you esteemed gentlemen can shed a light on this little problem for me. I have just built some new mail servers using Exim 4.60 and Sophie 3.05 (previous versions were old :-) ) I am periodically getting malware acl condition: malware acl condition: sophie reported error reports in

Re: [exim] .forward invalid-to-line problem

2006-03-17 Thread Steven Wayne
On Fri, Mar 17, 2006 at 02:37:55PM +0100, Martin Hierling wrote: Date: Fri, 17 Mar 2006 14:37:55 +0100 From: Martin Hierling [EMAIL PROTECTED] To: exim-users@exim.org Subject: Re: [exim] .forward invalid-to-line problem Mail-Followup-To: exim-users@exim.org Hi, no ideas? Any help?

[exim] DSN Support for exim

2006-03-17 Thread Andrew Johnson
For anybody who requires DSN support for Exim :- Latest patch is available at :- http://sourceforge.net/projects/eximdsn It now supports Exim 4.60 Changes (Exim-4.60 back tracked to Exim-4.52) :- Now produces DSN's for any email delivered locally or via pipe/redirect router rather than

Re: [exim] .forward invalid-to-line problem

2006-03-17 Thread Martin Hierling
Hi, I don't get it. What post were you replying to? Steven. this one: http://www.exim.org/mail-archives/exim-users/Week-of-Mon-20060313/msg00071.html regards Martin -- Dinner not ready: (A)bort (R)etry (P)izza

[exim] Sender callouts not checking MX?

2006-03-17 Thread Gregg Berkholtz
After making the jump from Exim 3.35 to 4.60, my callouts are behaving differently than expected. As they no longer appear to be checking the domains MX, and instead perform callouts either back to the connecting host, or hostname in the email address. The relevant part of my acl_check_rcpt: ACL

Re: [exim] Sender callouts not checking MX?

2006-03-17 Thread Tony Marques
perhaps [EMAIL PROTECTED] is a bad example?... it has no MX so the domains MX cannot be checked and instead has to perform a callout to the A record (where mail is sent when there is no MX). On 3/17/06, Gregg Berkholtz [EMAIL PROTECTED] wrote: After making the jump from Exim 3.35 to 4.60, my

Re: [exim] srs_alt.h

2006-03-17 Thread Doug Jolley
Thanks, Phil. That got me over that hurdle. Sorry to have missed that. I still haven't got it to compile to completion. I'm having some package dependency issues. I'm thinking that this may be kind of tough to get working on RH and its derivitives because of its everything-is-a-package

[exim] block host name

2006-03-17 Thread Exim_User
Hi, Is there any way that i can block particular hostname from sending the mail as my server is getting hit from a common host name but thousands of Ip's Rahul -- ## List details at http://www.exim.org/mailman/listinfo/exim-users ## Exim details at http://www.exim.org/ ## Please use the Wiki

Re: [exim] block host name

2006-03-17 Thread Alexey Danilevsky
Of course, you can block hostnames if they can be resolved via DNS. You can use acls like this: acl_check_coonect: deny message = This hostname is blocked condition = ${if eq{$sender_host_name}{some.hostname.com} {yes} {no}} If you have several host names to block, you can use

Re: [exim] block host name

2006-03-17 Thread Peter Bowyer
On 18/03/06, Exim_User [EMAIL PROTECTED] wrote: Hi, Is there any way that i can block particular hostname from sending the mail as my server is getting hit from a common host name but thousands of Ip's For what definition of 'hostname' ? If you mean the HELO name, you can test this in an

Re: [exim] block host name

2006-03-17 Thread Exim_User
Hi, See the main problem is that I m getting hit by thousands of mails and the common thing in there is the host/machine name. given below is one of the log file entry So here I wanted to block this machine name... Is it possible anyhow..? 2006-03-18 01:58:43 1FKLYw-0006KS-Ks = [EMAIL