When I was forced to abandon [EMAIL PROTECTED] I switchted to Outlook Express. 
For
that I have found the following Apple script, which gets rid of HTML nicely.

tell application "Outlook Express"
   set theMessages to the current messages
   set theMsg to item 1 of theMessages
   if has html of theMsg = true then
       set  content of theMsg to my adbReplace(¬
                    content of theMsg, "text/html", "text/plain")
   end if
end tell

on adbReplace(theData, what, withWhat)
   set oldDelims to AppleScript's text item delimiters
   set AppleScript's text item delimiters to what
   copy (every text item of theData) to temp
   set AppleScript's text item delimiters to withWhat
   copy (every item of temp as text) to res
   set AppleScript's text item delimiters to oldDelims
   return res
end adbReplace

Maybe someone can adapt it for use with Claris [EMAIL PROTECTED]

I run this script with a rule on all incoming mail and I'm not molested by
HTML any more...

Udo


___________________________________________________________________________
To unsubscribe send a mail message with a SUBJECT line of "unsubscribe" to
<[EMAIL PROTECTED]>  or  <[EMAIL PROTECTED]>

Reply via email to