* This is the vopmailbeta mailing list *

With VOPMail:

You can use spamflt0.txt to filter out mail using the from field and the
mailfrom: field.

from: *[EMAIL PROTECTED]*
mailfrom: *[EMAIL PROTECTED]*

However a bounce will be generated...

You _could_ use a mailagent (sneaky) however it's very expensive
resource-wise.  Only do this if you're running a very lightweight server ...

>From the Configuration -> agent tab, you would call a batch file called
"killem.bat"

c:\vopmail\killem.bat %m %r

@echo off
find "[EMAIL PROTECTED]" %1
if %errorlevel% EQU 0 goto found
goto end
:found
del %1
del %2
:end


Now the DOS find command is very expensive resource-wise so if you can write
a little C program that would just

a) open the MSG file specified + look for the desired [EMAIL PROTECTED]
b) read only the first 10 lines for the FROM field
c) return an error level appropriate for the above batch file,

That would be alot more effecient ... <grin>

[or just wrap everything up in one exe and call the exe directly that takes
care of all of the above]


With ModusMail:

if header :contains "from" "[EMAIL PROTECTED]" { discard; stop; }
if envelope :contains "from" "[EMAIL PROTECTED]"  { discard; stop; }


--
Yves Lacombe
SPAM Fighting Team
T4C/BMC Server Support
(514) 845-1666 ext. 300

----- Original Message -----
From: "Warren Sampson" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, October 09, 2002 4:20 PM
Subject: [VOPmail Beta] Dropping e-mail from a specific sender


* This is the vopmailbeta mailing list *


Is there any way to accept and just drop into a blackhole any e-mail
from a certain sender :^)


Warren (Sam) Sampson
MCSE, CCA

KMP Designs Inc.
7145 West Credit Ave
Suite 101, Building 2
Mississauga, ON
L5N 6J7

Phone: (905)812-5635
Fax: (905)812-5636
E-mail: [EMAIL PROTECTED]



**
To leave this list, send an email to [EMAIL PROTECTED]
and put the word "LEAVE" in the BODY of the email.



**
To leave this list, send an email to [EMAIL PROTECTED]
and put the word "LEAVE" in the BODY of the email.

Reply via email to