Re: [exim] Fearure that Exim should have

2007-12-10 Thread Eli Sand
IMO the ACL section of exim has sort of evolved into a type of programming language. With that said, what you have stated reminds me of some programming techniques that are quite bad. That is passing data to routines using global variables. You stated this way of programming (Or

Re: [exim] 500 error code

2007-12-10 Thread Peter Bowyer
On 10/12/2007, zbigniew szalbot [EMAIL PROTECTED] wrote: Dear all, Below is the log of one particular delivery which failed. The admin of o2.pl mail server claims my exim has an error in its configuration. I wonder what you think: 2007-12-05 02:33:25 1Izj8f-000Dds-1h = [EMAIL PROTECTED]

Re: [exim] Strange problem with domainkeys

2007-12-10 Thread Peter Bowyer
On 10/12/2007, Luca Bertoncello [EMAIL PROTECTED] wrote: Hi, list! I have a very strange problem with domainkey... A friend of mine, tries to send an E-Mail from yahoo to an address that forward this E-Mail to my addresse. And my Exim refuses the E-Mail saying that the signature is

Re: [exim] 500 error code

2007-12-10 Thread zbigniew szalbot
Hello, Peter Bowyer pisze: On 10/12/2007, zbigniew szalbot [EMAIL PROTECTED] wrote: Dear all, Below is the log of one particular delivery which failed. The admin of o2.pl mail server claims my exim has an error in its configuration. I wonder what you think: 2007-12-05 02:33:25

Re: [exim] Strange problem with domainkeys

2007-12-10 Thread Luca Bertoncello
Peter Bowyer [EMAIL PROTECTED] schrieb: Not really an Exim question, but... DomainKeys can survive forwarding if the forwarding process doesn't alter any of the headers used in the signing process. Sure, but it signs always the Received, too... And this IS altered, of course, by every MTA...

Re: [exim] Strange problem with domainkeys

2007-12-10 Thread Peter Bowyer
On 10/12/2007, Luca Bertoncello [EMAIL PROTECTED] wrote: Peter Bowyer [EMAIL PROTECTED] schrieb: Not really an Exim question, but... DomainKeys can survive forwarding if the forwarding process doesn't alter any of the headers used in the signing process. Sure, but it signs always the

Re: [exim] Strange problem with domainkeys

2007-12-10 Thread Graeme Fowler
On Mon, 2007-12-10 at 11:42 +0100, Luca Bertoncello wrote: Sure, but it signs always the Received, too... And this IS altered, of course, by every MTA... So that's a daft header to use for signing, then! Has someone a solution for this problem? Otherwise it has the same problem of SPF, but

Re: [exim] Fearure that Exim should have

2007-12-10 Thread Graeme Fowler
On Sun, 2007-12-09 at 19:33 -0800, Marc Perkel wrote: How about it Graeme? You're pretty good that this. I could make the same request of you, Marc. Why not? Graeme -- ## List details at http://lists.exim.org/mailman/listinfo/exim-users ## Exim details at http://www.exim.org/ ## Please use

Re: [exim] Fearure that Exim should have

2007-12-10 Thread Marc Perkel
Graeme Fowler wrote: On Sun, 2007-12-09 at 19:33 -0800, Marc Perkel wrote: How about it Graeme? You're pretty good that this. I could make the same request of you, Marc. Why not? Graeme Seems to me like it would be easy to add. You just have to pick some internal variable

Re: [exim] Fearure that Exim should have

2007-12-10 Thread Ted Cooper
Or perhaps I've smoked something I shouldn't have and I'm confusing simple matters (wouldn't be a first)? This is more a response to the whole thread rather than just you Eli :) If something so simple as ACLs need to have enough parameters passed to them that people start thinking it's too

[exim] Other Fearures that Exim should have

2007-12-10 Thread Mark J Elkins
Jumping on the wagon... Some time ago - I tried to have Exim do (My)SQL updates. It would be nice to have more generic access to Databases - etc.. rather than fudging it.. ie in transports - I have mysql_delivery: driver = appendfile directory = /var/spool/mail/$domain/$local_part/

Re: [exim] Fearure that Exim should have

2007-12-10 Thread Stephen Gran
On Mon, Dec 10, 2007 at 06:38:38AM -0800, Marc Perkel said: Seems to me like it would be easy to add. You're under the impression that introducing and enforcing scopes and namespaces is easy? It's certainly not the end of the world, but I don't think it quite qualifies as easy. --

Re: [exim] Strange problem with domainkeys

2007-12-10 Thread Ian Eiloart
--On 10 December 2007 11:42:27 +0100 Luca Bertoncello [EMAIL PROTECTED] wrote: Not really an Exim question, but... DomainKeys can survive forwarding if the forwarding process doesn't alter any of the headers used in the signing process. Sure, but it signs always the Received, too... And

[exim] Running a script on delivery error

2007-12-10 Thread Maykel Moya
I'd like to get some script run whenever a deliver fails by recipient being overquota. Is this possible? Regards, maykel -- ## 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 -

[exim] Regex or sg how

2007-12-10 Thread Craig Jackson
Hi, Often a ehlo is of the the form server23.mx23.domain.com. I would like to record only domain.com from the ehlo into a database. This is what I have, warn condition = ${lookup mysql{CAPTURE_EHLO}{yes}{no}} where CAPTURE_EHLO is CAPTURE_EHLO = UPDATE whitelist SET \ ehlo='${quote_mysql:${sg

Re: [exim] Fearure that Exim should have

2007-12-10 Thread Wakko Warner
Eli Sand wrote: warnacl=some_acl($var1, $var2) or keeping with the exim sense: acl=some_acl{$var1}{$var2} I figured that would be what a lot of people would think it'd end up looking like, however where did you get $var1 and $var2 from to pass to the acl?

Re: [exim] Fearure that Exim should have

2007-12-10 Thread Wakko Warner
Ted Cooper wrote: If something so simple as ACLs need to have enough parameters passed to them that people start thinking it's too confusing to understand, and they they are polluting the global namespace, then I think those people need to change their thinking just a little bit and examine

Re: [exim] Regex or sg how

2007-12-10 Thread Phil Pennock
On 2007-12-10 at 16:44 -0600, Craig Jackson wrote: Often a ehlo is of the the form server23.mx23.domain.com. I would like to record only domain.com from the ehlo into a database. This is what I have, And then you need to deal with UK (example.co.uk, etc, so an extra level) or US

Re: [exim] Regex or sg how

2007-12-10 Thread Ted Cooper
Craig Jackson wrote: Often a ehlo is of the the form server23.mx23.domain.com. I would like to record only domain.com from the ehlo into a database. This is what I have, warn condition = ${lookup mysql{CAPTURE_EHLO}{yes}{no}} where CAPTURE_EHLO is CAPTURE_EHLO = UPDATE whitelist SET \

Re: [exim] Regex or sg how

2007-12-10 Thread Craig Jackson
-Original Message- From: Phil Pennock [mailto:[EMAIL PROTECTED] Sent: Monday, December 10, 2007 5:25 PM To: Craig Jackson Cc: exim-users@exim.org Subject: Re: [exim] Regex or sg how On 2007-12-10 at 16:44 -0600, Craig Jackson wrote: Often a ehlo is of the the form