This is how I do it, although there may be better ways.
I create a scheduled task to run a batch file called spam.cmd that runs
from within the spam folder. This copies the spam caught that day into
a dated folder. That way I can delete old spam, and keep the folder
organized. This seems to work well, with imail, but if there are
probably better ways out there.
Here is my batch file
REM This portion gets the date
FOR /F "TOKENS=2-4 DELIMS=/ " %%F IN ('DATE /T') DO (
SET MM=%%F
SET DD=%%G
SET YYYY=%%H
)
REM This portion creates a folder with todays date MM-DD-YYYY
mkdir %MM%-%DD%-%YYYY%
REM moves the current files into the dated folder.
move *.smd .\%MM%-%DD%-%YYYY%\
move *.GSE .\%MM%-%DD%-%YYYY%\
Hope thats of help.
Roger
Phillip Cohen wrote:
I am looking at purchasing Sniffer to run on our old VOPMAIL server. I
have had the demo running and it seems to do an ok job. My question is
how all of you out there handle the SPAM box.
In the demo all of the spam goes to a general spam directory. This is
pretty messy and almost impossible to go through to find out if
something got caught that shouldn't have. Is it possible to have a
separate bat file for each domain that keeps the spam in a domain by
domain spam box? Next is it possible to do it on a mailbox by mailbox
basis so they can look through the spam they get? If I can have separate
batch files will this work in persistent mode?
What do you folks do with the spam that is removed? Does the user have
any access to it and how?
Thanks,
Phil
#############################################################
This message is sent to you because you are subscribed to
the mailing list <[email protected]>.
To unsubscribe, E-mail to: <[EMAIL PROTECTED]>
To switch to the DIGEST mode, E-mail to <[EMAIL PROTECTED]>
To switch to the INDEX mode, E-mail to <[EMAIL PROTECTED]>
Send administrative queries to <[EMAIL PROTECTED]>
---
[This E-mail scanned for viruses by Declude Virus]
---
[This E-mail scanned for viruses by Declude Virus]
#############################################################
This message is sent to you because you are subscribed to
the mailing list <[email protected]>.
To unsubscribe, E-mail to: <[EMAIL PROTECTED]>
To switch to the DIGEST mode, E-mail to <[EMAIL PROTECTED]>
To switch to the INDEX mode, E-mail to <[EMAIL PROTECTED]>
Send administrative queries to <[EMAIL PROTECTED]>