Jim,
  I believe the reference is to adding AV to your hardware firewall like:
Symantecs Firewall, SonicWall and WatchGuard...
These are services that update themselves just like your software AV, except it
adds another line of defense against the Virus producing community...

----- Original Message ----- 
From: "Jim Limburg" <[EMAIL PROTECTED]>
To: "RBG7-L Mailing List" <[EMAIL PROTECTED]>
Sent: Thursday, July 08, 2004 1:25 PM
Subject: [RBG7-L] - Re: Tracking Intermediate errors - plain text


> Victor
>
> I would like to know a bit more about this. We run Symantec Corp
> Edition, but viruses still get passed,
> just never executed..
>
> Jim
>
> Victor Timmons wrote:
>
> >We just install a antivirus firewall that scans all in-coming and out-
> >going HTTP,FTP,POP,SMTP traffic before it get to the user (Very Cool) and
> >still run our internal virus scanner. It stop 7 emails the very first day.
> >If anyone has any interest in more information on the device please feel
> >free to send me a private email
> >
> >On 8 Jul 2004 at 9:45, MikeB wrote:
> >
> >
> >
> >>I dropped my Comcast.net email because of the spam that was still getting
> >>through and added an anti-spam/anti-virus (even though we still run AV
> >>internally.. Can't be too careful) service to my web server that seems
> >>
> >>
> >to do a
> >
> >
> >>pretty good job.
> >>
> >>----- Original Message ----- 
> >>From: "Bernard Lis" <[EMAIL PROTECTED]>
> >>To: "RBG7-L Mailing List" <[EMAIL PROTECTED]>
> >>Sent: Wednesday, July 07, 2004 7:23 PM
> >>Subject: [RBG7-L] - Re: Tracking Intermediate errors - plain text
> >>
> >>
> >>Jim,
> >>If you are using Outlook Express, in your contacts list,
> >>right click on rbg7 > Properties > Name
> >>on the bottom of that page you can click "Send Plain Text"
> >>
> >>I'm also using comcast and not having any problems
> >>
> >>Bernie Lis
> >>
> >>  ----- Original Message ----- 
> >>  From: [EMAIL PROTECTED]
> >>  To: RBG7-L Mailing List
> >>  Sent: Wednesday, July 07, 2004 7:39 PM
> >>  Subject: [RBG7-L] - Re: Tracking Intermediate errors
> >>
> >>
> >>  David.. Well, this is the another time when the code gets chopped
> >>
> >>  off. I'm going to fuss big time with Comcast over this. They
> >>
> >>  don't even give any options to send messages in plain text..
> >>
> >>  They have been bragging about all the new features they added,
> >>
> >>  and it's about time to put a little dose of reality back into their
> >>
> >>  vision.
> >>
> >>  I will resend this from another account.
> >>
> >>  Jim
> >>
> >>
> >>    -------------- Original message -------------- 
> >>
> >>    I've been think a bit here lately of polishing it a bit with a
> >>
> >>    way to be able to return to the line after the code. Here's
> >>
> >>    what I have so far.. Rough Draft..
> >>
> >>    ET VAR vy_labelcount INTEGER = 0
> >>    SET ERROR VARIABLE errvar
> >>    SET VAR vy_errnum INTEGER = NULL
> >>    SET VAR vy_log INTEGER = 0
> >>    SET VAR vy_errsection TEXT = NULL
> >>    SET VAR vy_errcritical INTEGER = 0
> >>
> >>    --other code
> >>
> >>    --likely problem section or one I want to log
> >>    --Defined Section information goes here
> >>    SET VAR vy_errsection = 'So and So View inop'
> >>    --CODE GOES HERE
> >>    CREATE VIEW junkieview SELECT ALL FROM junkietable
> >>    SET VAR vy_errnum = .errvar
> >>    IF vy_errnum <> 0 THEN
> >>    SET VAR vy_errmsg = 'Error Creating view'
> >>    SET VAR vy_errnum = .errvar
> >>    SET VAR vy_errcritical = 0 --Non Critical Error
> >>    SET VAR vy_labelcount
> >>
> >>    Jim
> >>
> >>
> >>      -------------- Original message -------------- 
> >>
> >>      > That is slick code, jim!!
> >>      >
> >>      > David
> >>      >
> >>      > David Blocker
> >>      > [EMAIL PROTECTED]
> >>      > 781-784-1919
> >>      > Fax: 781-784-1860
> >>      > Cell: 339-206-0261
> >>      > ----- Original Message ----- 
> >>      > From: "Jim Limburg"
> >>      > To: "RBG7-L Mailing List"
> >>      > Sent: Friday, July 02, 2004 3:38 PM
> >>      > Subject: [RBG7-L] - Re: Tracking Intermediate errors
> >>      >
> >>      >
> >>      > > What about writing the to a log
> >>      > >
> >>      > >
> >>      > > SET ERROR VARIABLE errvar
> >>      > > SET VAR vy_errnum INTEGER = NULL
> >>      > > SET VAR vy_log INTEGER = 0
> >>      > > SET VAR vy_errsection TEXT = NULL
> >>      > >
> >>      > > --other code
> >>      > >
> >>      > > --likely problem section or one I want to log
> >>      > > --Defined Section information goes here
> >>      > > SET VAR vy_errsection = 'So and So View inop'
> >>      > > --CODE GOES HERE
> >>      > > IF errvar <> 0 THEN
> >>      > > SET VAR vy_errmsg = 'Error Creating view'
> >>      > > SET VAR vy_errnum = .errvar
> >>      > > RUN errhndler IN invsum.x2r
> >>      > > GOTO getout1
> >>      > > ENDIF
> >>      > >
> >>      > >
> >>      > > RETURN
> >>      > > $COMMAND
> >>      > > errhndler
> >>      > > OUTPUT SCREEN
> >>      > > SET VAR vy_errmess TEXT = ('ERROR: # ' + (CTXT(.vy_errnum)) +
> >>
> >>
> >+
> >
> >
> >>      > > ' Msg = ' + .vy_errmsg)
> >>      > > PAUSE 1 USING .vy_errmess AT CENTER CENTER
> >>      > > IF vy_log = 1 THEN
> >>      > > OUTPUT mylogfile.log APPEND
> >>      > > WRITE '**************************************'
> >>      > > WRITE .vy_errsection
> >>      > > WRITE .vy_errmess
> >>      > > WRITE '**************************************'
> >>      > > OUTPUT SCREEN
> >>      > > ENDIF
> >>      > > OUTPUT SCREEN
> >>      > > SET VAR vy_errsection TEXT = NULL
> >>      > > SET VAR vy_log = 0
> >>      > > CLEAR VAR vy_errnum, vy_errmess
> >>      > > RETURN
> >>      > >
> >>      > > Jim
> >>      > >
> >>      > > Charles Parks wrote:
> >>      > >
> >>      > > >What are some good strategies for tracking and fixing errors
> >>
> >>
> >that do
> >
> >
> >>not
> >>      > consistently repeat?
> >>      > > >
> >>      > > >
> >>      > > >
> >>      > > >
> >>      > >
> >>      > >
> >>      >
> >>
> >>
> >>
> >>
> >
> >
> >
> >Victor Timmons
> >Tiz's Door Sales, Inc
> >425-258-2391
> >
> >
> >
> >
>

Reply via email to