I know Outlook generate these bad headers. I have my incomming mails' headers 
parsed through this little script in my .procmailrc file. I substitutes 7bit 
ascii for the exotic ones.

/Anders



#!/usr/bin/perl -p

#
# A small script which replaces funny characters (from mail headers)
#

s/�/A/g;
s/�/A/g;
s/�/O/g;
s/�/a/g;
s/�/a/g;
s/�/o/g;
s/�/e/g;

Reply via email to