############################################################################## ## This is a supplemental environmental setup file for Virus Snaggers(tm) ## ver. 2.2x. It will be called from the Virus Snaggers INCLUDERC. Please ## clearly mark any changes you make! (And keep a backup of the original.) ############################################################################## ## PLEASE DO NOT EDIT THIS FILE! _SELF = $_ # set $_SELF to this filepath and name SPACE = " " TAB = " " # that was a literal tab in the quotes WS = "$SPACE$TAB" # whitespace NL = " " # newline (don't delete this line's double-quote) NLWS = "[$WS$NL]*" # optional newlines or whitespace DQ = '"' # double-quotation mark TRUE = "." # normalize Boolean nomenclature FALSE = ^^()^^ # normalize Boolean nomenclature GO = 9876543210 # saturated max overruns 2147483647 STOP = "-$GO" # saturated min overruns -2147483647 SMALL = .000001 # de minimis decimal number for tipping scores VARON = ^^([-1-9yte]|on) # per "man procmailrc," this regex matches "on" VAROFF = ^^(^^|[nfd0]|off) # per "man procmailrc," this regex matches "off" OCTET = "([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])" DOTQUAD = "$OCTET[.]$OCTET[.]$OCTET[.]$OCTET" LOCALHOST = "127[.]0[.]0[.]1" # localhost SLASH8 = "0?10[.]$OCTET" # 10.0 - 10.255 SLASH12 = "172[.](0?1[6-9]|0?2[0-9]|0?3[01])" # 172.16 - 172.31 SLASH16 = "192[.]168" # 192.168 PRIVATE_IP = "($SLASH8|$SLASH12|$SLASH16)[.]$OCTET[.]$OCTET" # RFC 1918 ############################################################################## # This file is copyright and incorporates by reference the notice of copy- # right and license agreement from the Virus Snaggers main and readme files. ##############################################################################