Re: can I filter messages where I am a cc: recipient

2002-08-12 Thread Januk Aggarwal

Hi Allie,

Monday, August 12, 2002 at 05:32 GMT -0500, was when inspiration
required Allie Martin to write:

> I don't see why

> (?ims)^CC:.*[EMAIL PROTECTED]

> shouldn't work.

Just be slightly careful. Yours will match if Dwight's address appears
*anywhere* in the headers after the CC line. That includes the To: or
From: or any other header (however rare that might be.)

A more restricted regexp would look something like:

(?im-s)^CC:.*?(\n\s.*)*([EMAIL PROTECTED])

-- 
Thanks for writing,
 Januk Aggarwal

Despite these words, this page is blank.


__
Archives   : http://tbtech.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]




Re: Quoter - Combine Quote Extraction & ReWrap

2002-08-12 Thread Januk Aggarwal

Hello John,

On Monday, August 12, 2002 at 7:55 AM, John Thomas [JT] pressed random
keys until the following was produced:

JT> Is it possible to combine the features of the Quote Extraction
JT> (removes PGP, Yahooo, etc) QT and the ReWrap (wraps multiple
JT> paragraphs) QT?

Yes.  Just use something like the following.

=[Begin QT]=
%COMMENT="%QINCLUDE='Quote Extraction QT'"%-
%QINCLUDE="wrap2"%-
%COMMENT=""%-

=[ End  QT]=

-- 
Thanks for writing,
 Januk Aggarwal

I should probably engage that largish, grey organ lurking inside of
my skull a bit more often. I think it's called a brain.
-- Simon


__
Archives   : http://tbtech.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]




Re: can I filter messages where I am a cc: recipient

2002-08-12 Thread Urban Ek

Monday, August 12, 2002, Jonathan Angliss wrote:
> I'm not sure how the wildcards work in TB!s regexp, but IIRC in procmail *
> matches all, while . matches all but new line (or something like that).

In regular expressions it's not wildcards, it's metacharacters.
. matches any one character
* matches zero or more (any number of) occurences

.* means "match any number of any character"

TB!s regexps are explained in the help file, searching for "What are
Regular expressions?" is a good place to start.

-- 
Urban Ek, happily swinging to "Lorna - when we stayed awake all night"  


__
Archives   : http://tbtech.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]




Re: can I filter messages where I am a cc: recipient

2002-08-12 Thread Urban Ek

Monday, August 12, 2002, Dwight A Corrin wrote:
> I get lots of spam where I am one of many cc:
> recipients. It is these messages that I most want to catch with a cc:
> recipient filter.

I haven't tried it, but this one might do the trick
^cc: *(?(?=(.*@.*{2})+$).*dcorrin@southwind\.net.*|(\. @))$

If cc-field contains at least one occurence of 2 '@' it looks for your
address, else it tries (and fails) to match the string '. @'

Don't forget enabling Regular Expressions in the Sorting Office options.

-- 
Urban Ek


__
Archives   : http://tbtech.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]




Quoter - Combine Quote Extraction & ReWrap

2002-08-12 Thread John Thomas

Is it possible to combine the features of the Quote Extraction
(removes PGP, Yahooo, etc) QT and the ReWrap (wraps multiple
paragraphs) QT?

-- 
Best regards,
John Thomas




__
Archives   : http://tbtech.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]




Re: can I filter messages where I am a cc: recipient

2002-08-12 Thread Dwight A Corrin

On Monday, August 12, 2002, 5:32:31 AM, Allie C Martin wrote:

> I don't see why

> (?ims)^CC:.*[EMAIL PROTECTED]

> shouldn't work. 

I am happy to report that it does work. Unlike the similar one which
was the last of the suggestions a week or so ago when I tried to find
this answer on TBUDL. That one locked up the whole works every time it
hit what I was trying to filter.

Thanks.

-- 
Dwight A. Corrin
P O Box 47828
Wichita KS 67201-7828
316.263.9706  fax 316.263.6385
mailto:[EMAIL PROTECTED]
Using The Bat! 1.60i on Windows XP version 5,1



__
Archives   : http://tbtech.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]




Re: can I filter messages where I am a cc: recipient

2002-08-12 Thread Allie C Martin

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

In <[EMAIL PROTECTED]">mid:[EMAIL PROTECTED]>,
Jonathan Angliss [JA] wrote:'

JA> I guess so. I guess I'm just used to the procmail way of doing
JA> things ;) I'm still learning ;)

The same here. When I joined the TB! list, I didn't even know what a
wild card was. ;)

TB! and these lists are what stimulated me to learn regular
expressions. Before this, I didn't even see why learning them would be
useful. :)

- --
Allie C Martin \  TB! v1.62/Beta1 & Windows XP Pro
 List Moderator/   PGP Key - http://pub-key.ac-martin.com
'
-BEGIN PGP SIGNATURE-

iD8DBQE9V6T/V8nrYCsHF+IRApGkAJwM5z8wtaJwTX+0XVjduttYj3ACbwCdEySJ
CMV9xSYsXzI8gU0LTLdXWUQ=
=5OpY
-END PGP SIGNATURE-


__
Archives   : http://tbtech.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]




Re: can I filter messages where I am a cc: recipient

2002-08-12 Thread Jonathan Angliss

Hi Allie,
On Mon, 12 Aug 2002 05:32:31 -0500, you wrote:

> JA> ^CC:.*[EMAIL PROTECTED]*
> 
> I think you meant to put '.*' at the end, right? :)
> 
> That wouldn't help anyway.
> 
> JA> I'm not sure how the wildcards work in TB!s regexp, but IIRC in
> JA> procmail * matches all, while . matches all but new line (or
> JA> something like that).
> 
> WildCards are different from regex.

I guess so.  I guess I'm just used to the procmail way of doing things ;) I'm
still learning ;)

-- 
Jonathan Angliss
([EMAIL PROTECTED])

__
Archives   : http://tbtech.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]




Re: Macro's site?

2002-08-12 Thread Marck D Pearlstone

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Januk,

@12-Aug-2002, 01:56 -0700 (09:56 UK time)Januk Aggarwal [JA] in
[EMAIL PROTECTED]">mid:[EMAIL PROTECTED] said to Marck D
Pearlstone:

B>>> also maybe there should be some example of input/output of those
B>>> QTs...

I've just realised what this question means...

MP>> It's pretty simple - just fill in the form. 

... and how silly this answer is!

JA> ... I would think that the lists and the archives are better
JA> suited for filling in *all* the gory details.

For certain!

JA> Though I suppose a reference to the appropriate archive message(s)
JA> might not be a bad idea. As you say though, that should be done in
JA> the body of the form.

Now that I'm up to speed, I suppose a MID could be published in the
form although it wouldn't be interactive. I suppose I could add a
paragraph at the top of the library (or a help page) to describe how
to implement a) Quick Templates and b) Filters (not that we have any
yet - I'll have to upload my SpamCop set).

- --
Cheers -- .\\arck D Pearlstone -- List moderator
TB! v1.62/Beta1 on Windows 2000 5.0.2195 Service Pack 2
'
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.1.90-nr1 (Windows 2000)

iD8DBQE9V30bOeQkq5KdzaARAjxVAKDkPgnfGukfYPuErO25B7TJjraCvgCgwn7x
3zECeuVogjMRZRZllPEKGo0=
=XB2G
-END PGP SIGNATURE-



__
Archives   : http://tbtech.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]




Re: Macro's site?

2002-08-12 Thread Graham Foster

Hello Marck

B>> also maybe there should be some example of input/output of those
B>> QTs...
.. well its nice to see it implemented, and that "featuritis" is alive
and well elsewhere (I thought it was just our organisation :-)

Thanks,
 Graham Foster 
-- 
Husband: I don't know why you wear a bra, you've go nothing to put in it. 
Wife: You wear briefs, don't you?


--
Notice: This e-mail message, together with any attachments, contains information of 
Merck & Co., Inc. (Whitehouse Station, New Jersey, USA) that may be confidential, 
proprietary copyrighted and/or legally privileged, and is intended solely for the use 
of the individual or entity named on this message.  If you are not the intended 
recipient, and have received this message in error, please immediately return this by 
e-mail and then delete it.

==


__
Archives   : http://tbtech.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]




Re: Macro's site?

2002-08-12 Thread Januk Aggarwal

Hi Marck,

It was foretold that on Monday, August 12, 2002 at 09:40 GMT +0100,
Marck Pearlstone [MP] would type:

MP> For now I'm leaving edit and removal as an administrative
MP> function.

That's probably smart.

B>> also maybe there should be some example of input/output of those
B>> QTs...

MP> It's pretty simple - just fill in the form. 

>From my point of view, it would be nice to keep the macro library
dedicated to listing the macros.  I would think that the lists and the
archives are better suited for filling in *all* the gory details.

Though I suppose a reference to the appropriate archive message(s) might
not be a bad idea.  As you say though, that should be done in the body
of the form.

-- 
Thanks for writing,
 Januk Aggarwal

With these words, this page is no longer blank but is complete.


__
Archives   : http://tbtech.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]




Re: Macro's site?

2002-08-12 Thread Marck D Pearlstone

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Brano,

@12-Aug-2002, 08:14 +0200 (07:14 UK time)Brano [B] in
[EMAIL PROTECTED]">mid:[EMAIL PROTECTED] said to Marck D Pearlstone:

B> what about update/change macros ? Maybe there should be some
B> login/pass to edit macros...

There probably should, but it's too complex for what the site is. I
was thinking about it over the weekend but maybe all I'll do for now
is change "Remove" to "Edit request". For now I'm leaving edit and
removal as an administrative function.

B> also maybe there should be some example of input/output of those
B> QTs...

It's pretty simple - just fill in the form. 

- --
Cheers -- .\\arck D Pearlstone -- List moderator
TB! v1.62/Beta1 on Windows 2000 5.0.2195 Service Pack 2
'
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.1.90-nr1 (Windows 2000)

iD8DBQE9V3SEOeQkq5KdzaARAvrWAJ9UzODpYYdXtmnnRaOzATbt4MRxSwCg5ogx
3IrRXH8+C/vtCN1M/G1cAao=
=YVcr
-END PGP SIGNATURE-



__
Archives   : http://tbtech.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]