Re: Sieve RBL extension?

2002-04-26 Thread Scott Lamb
On Fri, Apr 26, 2002 at 07:32:25AM +0200, Birger Toedtmann wrote: Mmmhhh. Isn't this a very dangerous thing to do to the cyrus system? Not the idea as such but their implcations: I imagine a slow/broken DNS and 100+ incoming mails/min. I imagine a system with thousands of half- hanging

Re: Sieve RBL extension?

2002-04-26 Thread Birger Toedtmann
Scott Lamb schrieb am Fri, Apr 26, 2002 at 01:24:54AM -0500: On Fri, Apr 26, 2002 at 07:32:25AM +0200, Birger Toedtmann wrote: Mmmhhh. Isn't this a very dangerous thing to do to the cyrus system? Not the idea as such but their implcations: I imagine a slow/broken DNS and 100+ incoming

Re: Sieve RBL extension?

2002-04-26 Thread Hein Roehrig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Scott Lamb [EMAIL PROTECTED] writes: - it's not possible to automatically determine what's available for this, for like a wizard to set up UCE stuff. the Sieve extension should make that possible. But that just relegates the task to Sieve. I

Sieve RBL extension?

2002-04-25 Thread Scott Lamb
I'm trying to create a Realtime Blackhole List extension to Sieve, so I can do stuff like this: require [fileinto, x-rbl, x-rbl-reject]; if header :contains [to,cc,bcc] [EMAIL PROTECTED] { fileinto INBOX; } elsif x-rbl :types [127.0.0.2, 127.0.0.4, 127.0.0.5, 127.0.0.6,

Re: Sieve RBL extension?

2002-04-25 Thread Ken Murchison
Scott Lamb wrote: I'm trying to create a Realtime Blackhole List extension to Sieve, so I can do Doesn't functionality like this belong in the MTA? -- Kenneth Murchison Oceana Matrix Ltd. Software Engineer 21 Princeton Place 716-662-8973 x26 Orchard Park, NY 14127 --PGP

Re: Sieve RBL extension?

2002-04-25 Thread Scott Lamb
Ken Murchison wrote: Scott Lamb wrote: I'm trying to create a Realtime Blackhole List extension to Sieve, so I can do Doesn't functionality like this belong in the MTA? The problem with doing it in the MTA is control. End users do not control their MTA, but they may have

Re: Sieve RBL extension?

2002-04-25 Thread Bob Finch
Scott == Scott Lamb [EMAIL PROTECTED] writes: Scott My question: How do I find out the SMTP client's IP Scott address? I hoped to see this in the envelope stuff, but I Scott don't. Nothing else seems to use it. I know Postfix makes Scott this information available in the

Re: Sieve RBL extension?

2002-04-25 Thread GOMBAS Gabor
On Thu, Apr 25, 2002 at 01:39:07PM -0500, Scott Lamb wrote: I started by making a patch to Postfix that would just add the X-RBL-Warning header as some other MTAs do. IMHO think this is the Right Thing(TM). It's more likely to get into graphical Sieve generators this way. I'd never use

Re: Sieve RBL extension?

2002-04-25 Thread Birger Toedtmann
Scott Lamb schrieb am Thu, Apr 25, 2002 at 12:12:52PM -0500: I'm trying to create a Realtime Blackhole List extension to Sieve, so I can do stuff like this: require [fileinto, x-rbl, x-rbl-reject]; if header :contains [to,cc,bcc] [EMAIL PROTECTED] { fileinto INBOX; }