Re: [exim] line length detection

2007-06-29 Thread Philip Hazel
On Thu, 28 Jun 2007, John Jetmore wrote: As implemented this seems(*) to record the largest number of bytes in a header line. I think there needs to be logic related to max_received_linelength in receive.c:read_message_data_smtp(). Oops. Mea culpa. It *does* do body lines, but not for

Re: [exim] marking the snapshot binaries as such

2007-06-29 Thread Philip Hazel
On Thu, 28 Jun 2007, John Jetmore wrote: Phil, what do you think of marking binarie of the snapshot releases as being a snapshot? They are created automatically by a cron job that just checks out from the CVS and wraps it all up. Perhaps I[*] should set the version to something like

Re: [exim] line length detection

2007-06-29 Thread Philip Hazel
On Fri, 29 Jun 2007, Philip Hazel wrote: Oops. Mea culpa. It *does* do body lines, but not for SMTP messages. I completely overlooked that case. I'm clearly getting old... :-) Thanks for testing - I'll fix this and post when I've committed. I've committed the fix. (You are right; the logic

[exim] Sender Reputation

2007-06-29 Thread Jason_Meers
Hi all, Whilst doing some testing and research on Exchange2007 for a paper I came across a feature in Exch2007 called Sender Reputation. By default each Microsoft Exchange 2007 Edge Transport will (on receiving mail from an unauthenticated connection): Perform an open proxy test when

[exim] FW: Mail delivery failed: returning message to sender

2007-06-29 Thread Don O'Neil
I've been getting these messages fairly regularly lately. We're running SA 3.1.8 and Exim 4.6.6 on FreeBSD 6.1. I've changed the exim-SA config to go through a pipe rather than the traditional way, set it to only scan messages 100K, turned off Bayes AutoLearn because it was creating token files in

[exim] Regex Help?

2007-06-29 Thread Marc Perkel
Need some regex help. What I want to do is grab the domain part of a sender host name where it is a one level domain. xxx.ftp.perkel.com - perkel.com And a separate one that works with two level domains: xxx.ftp.perkel.co.uk - perkel.co.uk Here's a crude poice of code I've been using. Need

[exim] Detecting the Registrar Barrier

2007-06-29 Thread Marc Perkel
OK - I think I'm making some progress on this. I created a DNS server that you can pass a $sender_host_name to and get a code indicating if it's a one level or 2 level domain. I still have more work to do to make it practical. But - try this out and tell me if I'm on the right track. from

Re: [exim] Detecting the Registrar Barrier

2007-06-29 Thread Chris Meadors
On Fri, 2007-06-29 at 10:36 -0700, Marc Perkel wrote: OK - I think I'm making some progress on this. I created a DNS server that you can pass a $sender_host_name to and get a code indicating if it's a one level or 2 level domain. I still have more work to do to make it practical. But -

Re: [exim] Detecting the Registrar Barrier

2007-06-29 Thread Marc Sherman
Chris Meadors wrote: It seems to work for the pathological case of the Japan's TLD which until a couple years ago would have always been a two, but now optionally can be a one. Both mazda.jp and mazda.co.jp return the expected results. It fails for www.orgforms.gov.on.ca -- it should

Re: [exim] Detecting the Registrar Barrier

2007-06-29 Thread Marc Perkel
Marc Sherman wrote: Chris Meadors wrote: It seems to work for the pathological case of the Japan's TLD which until a couple years ago would have always been a two, but now optionally can be a one. Both mazda.jp and mazda.co.jp return the expected results. It fails for

[exim] Extracting the registrar part of the hostname

2007-06-29 Thread Marc Perkel
Making some progress extracting the registrar part (there should be a term for this) from a host name. I created a DNS list the servers about 1400 TLDs using MyDNS (yes - I know they aren't really top level.) Why do this? Working on tracking web sites mostly for white listing by the main part

Re: [exim] Detecting the Registrar Barrier

2007-06-29 Thread Steven Wayne
On Fri, Jun 29, 2007 at 10:36:46AM -0700, Marc Perkel wrote: Date: Fri, 29 Jun 2007 10:36:46 -0700 From: Marc Perkel [EMAIL PROTECTED] Subject: [exim] Detecting the Registrar Barrier To: Exim users mailing list exim-users@exim.org OK - I think I'm making some progress on this. I created a

Re: [exim] Detecting the Registrar Barrier

2007-06-29 Thread Marc Perkel
Steven Wayne wrote: On Fri, Jun 29, 2007 at 10:36:46AM -0700, Marc Perkel wrote: Date: Fri, 29 Jun 2007 10:36:46 -0700 From: Marc Perkel [EMAIL PROTECTED] Subject: [exim] Detecting the Registrar Barrier To: Exim users mailing list exim-users@exim.org OK - I think I'm making some

Re: [exim] Detecting the Registrar Barrier

2007-06-29 Thread Ted Cooper
Marc Perkel wrote: OK - I think I'm making some progress on this. I created a DNS server that you can pass a $sender_host_name to and get a code indicating if it's a one level or 2 level domain. I still have more work to do to make it practical. But - try this out and tell me if I'm on