From: <jgr...@us...> - 2003-02-21 18:55:14
|
Update of /cvsroot/popfile/engine/UI In directory sc8-pr-cvs1:/tmp/cvs-serv22571/UI Modified Files: HTML.pm Log Message: Merged and modified a patch that gives us decoding of the ?charset?[BQ]?text? style of From and Subject lines Index: HTML.pm =================================================================== RCS file: /cvsroot/popfile/engine/UI/HTML.pm,v retrieving revision 1.76 retrieving revision 1.77 diff -C2 -d -r1.76 -r1.77 *** HTML.pm 21 Feb 2003 18:36:24 -0000 1.76 --- HTML.pm 21 Feb 2003 18:55:10 -0000 1.77 *************** *** 2608,2611 **** --- 2608,2614 ---- $subject =~ s/\"(.*)\"/$1/g; + $from = $self->{classifier}->{parser}->decode_string( $from ); + $subject = $self->{classifier}->{parser}->decode_string( $subject ); + $short_from = $from; $short_subject = $subject; *************** *** 3149,3153 **** $self->{mail_filename} = "popfile$self->{today}"; } - # --------------------------------------------------------------------------------------------- --- 3152,3155 ---- |