NoThanks
 _   _     _____ _                 _        
| \ | |   |_   _| |               | |       
|  \| | ___ | | | |__   __ _ _ __ | | _____ 
| . ` |/ _ \| | | '_ \ / _` | '_ \| |/ / __|
| |\  | (_) | | | | | | (_| | | | |   <\__ \
\_| \_/\___/\_/ |_| |_|\__,_|_| |_|_|\_\___/

Put control in the hands of the user.  NoThanks is configured using a
killfile which is typically located in the Muffin preferences
directory.  This killfile is supports a small control language with
the following commands:

* strip tag [endtag]

  Remove tag and possibly everything up-to and including its end tag.
  Examples:

  Remove the bgsound tag:

      strip bgsound

  Remove the marquee tag and all its contents:

      strip marquee /marquee

  Remove the blink start tag but not its contents:

      strip blink

  Remove the end blink tag.

      strip /blink

* kill regular-expression

  Remove tags end their contents that refer to URLs that match
  the regular expression.  All kill entries are merged into
  one expression.  Requests that match killed URLs are denied.
  Examples:

  Don't access anything from doubleclick.net or linkexchange.net:

      kill doubleclick.net
      kill linkexchange.net

  Don't access URLs that contains these:

      kill AdID=
      kill SpaceID=
      kill sponsor
      kill D=yahoo
      kill /advertise

  Kill /ad/, /adv/, and /ads/ in any case:

      kill /[Aa][Dd]/
      kill /[Aa][Dd][Vv]/
      kill /[Aa][Dd][Ss]/

* redirect regular-expression URL

  Any requested URL that matches regular expression is instead
  sent to the specified URL.
  Example:

  Send any playboy requests to the whitehouse:

      redirect playboy http://www.whitehouse.gov/

* content regular-expression

  Any requested content-type that matches the regular expression
  is rejected.


Complete example:

strip bgsound
strip marquee /marquee
strip blink
strip /blink
kill doubleclick.net
kill linkexchange.com
kill AdID=
kill SpaceID=
kill sponsor
kill D=yahoo
kill gtplacer
kill /[Aa][Dd]/
kill /[Aa][Dd][Vv]/
kill /[Aa][Dd][Ss]/
kill /advertise
kill try-it
redirect playboy http://www.whitehouse.gov/
redirect microsoft http://www.yahoo.com/

Preferences:

* NoThanks.killfile

  Location of NoThanks killfile.


See the README.regex file for information on the supported
regular expression syntax.
