char *ignore[] =
{
/* HTML that isn't A, IMG, or FONT */
/* Must have a space somewhere to avoid catching <email@address> */
"<[ \n\r]*("
"[^aif]|"
"a[^> \t\r\n]|"
"i[^mM \t\r\n]|"
"im[^gG \t\r\n]|"
"img[^> \t\r\n]|"
"f[^oO \t\r\n]|"
"fo[^Nn \t\r\n]|"
"fon[^tT \t\r\n]|"
"font[^> \r\t\n]"
")[^>]*[ \t\n\r][^>]*>",
"<[ \n\r]*("
"i|im|f|fo|fon"
")[ \t\r\n][^>]*>",
/* ignore html comments */
"<!--([^\\-]|-[^\\-]|--[^>]|\n)*-->",
/* random mail strings */
"^message-id:.*\n([ ].*\n)*",
"^in-reply-to:.*\n([ ].*\n)*",
"^references:.*\n([ ].*\n)*",
"^date:.*\n([ ].*\n)*",
"^delivery-date:.*\n([ ].*\n)*",
"e?smtp id .*",
"^ id.*",
"boundary=.*",
"name=\"",
"filename=\"",
"news:<[^>]+>",
"^--[^ ]*$",