# Spamarmor Data File # (c) 2000-2001 OSDN # This file is part of the Slash software suite. # http://www.slashcode.com # # $Id: spamarmors,v 1.1.2.2 2001/07/23 21:16:46 cliff Exp $ # __name__ Example #1 __code__ s/^(.+?)\@(.+)$/{$1} {at} {$2}/ # # __name__ Example #2 - (Reverse of #1) __code__ s/^(.+?)\@(.+)$/\}$1\{ \}at\{ \}$2\{/; @a = split //; $_ = "reversethis-" . scalar reverse @a; # # __name__ Example #3 __code__ s/^(.+?)\@(.+)$/${1}NO\@SPAM$2/ # #