X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=docs%2Fcontrib%2Freplyfilter;h=cbb8fff12ff2817bce10573466abdbff3d5124d6;hb=a47dfadde7d7df81cd47856379957866ae88986b;hp=36facd5fb52f017f08cf467c80ee1523e67dfede;hpb=a384d6be75eb9ef0f43774f883993fa7d8ee1632;p=mmh diff --git a/docs/contrib/replyfilter b/docs/contrib/replyfilter index 36facd5..cbb8fff 100755 --- a/docs/contrib/replyfilter +++ b/docs/contrib/replyfilter @@ -37,12 +37,23 @@ use MIME::Base64; use Encode; # -# The program we use to format "long" text +# The program we use to format "long" text. Should be capable of reading +# from standard input and sending the formatted text to standard output. # $filterprogram = 'par'; # +# If the above filter program has problems with some input, use the following +# regular expression to remove any problematic input. In this example we +# filter out the UTF-8 non-breaking space (U+00A0) because that makes par +# mangle the output. Uncomment this if this ends up being a problem for +# you, or feel free to add others. +# + +#%filterreplace = ( "\N{U+a0}" => " " ); + +# # Our output character set. This script assumes a UTF-8 locale, but if you # want to run under a different locale the change it here. # @@ -152,7 +163,7 @@ sub process_text (*$$;$) my ($input, $encoding, $charset, $boundary) = @_; my $text, $filterpid, $prefixpid, $finread, $finwrite; my $foutread, $foutwrite, $decoder, $ret, $filterflag; - my @text = ( '' ), $maxline = 0; + my $text, $maxline = 0; # # In the simple case, just spit out the text prefixed by the @@ -182,7 +193,7 @@ sub process_text (*$$;$) binmode($input, ':encoding(us-ascii)'); - $decoder = find_decoder($encoding); + $decoder = find_decoder(lc($encoding)); if (! defined $decoder) { return 'EOF'; } @@ -190,7 +201,7 @@ sub process_text (*$$;$) # # Okay, assume that the encoding will make it so that we MIGHT need - # to filter it. Read it in; if it's too long, filter it. + # to filter it. Read it in; if the lines are too long, filter it # my $chardecode = find_encoding($charset); @@ -200,24 +211,20 @@ sub process_text (*$$;$) last if ($ret = match_boundary($_, $boundary)); - @lines = split(/^/, $chardecode->decode(&$decoder($_))); - - if (substr($text[$#text], -1, 1) eq "\n") { - push @text, shift @lines; - } else { - $text[$#text] .= shift @lines; - } - if (($len = length($text[$#text])) > $maxline) { - $maxline = $len; - } + $text .= $_; - if ($#lines > -1) { - push @text, @lines; - } } binmode($input, ':encoding(us-ascii)'); + $text = $chardecode->decode(&$decoder($text)); + + grep { + my $len; + if (($len = length) > $maxline) { + $maxline = $len; + }} split(/^/, $text); + if (! defined $ret) { $ret = 'EOF'; } @@ -226,7 +233,7 @@ sub process_text (*$$;$) # # These are short enough; just output it now as-is # - foreach my $line (@text) { + foreach my $line (split(/^/, $text)) { print STDOUT $quoteprefix, $line; } return $ret; @@ -314,7 +321,13 @@ sub process_text (*$$;$) # Send our input to the filter program # - print $finwrite @text; + if (%filterreplace) { + foreach my $match (keys %filterreplace) { + $text =~ s/$match/$filterreplace{$match}/g; + } + } + + print $finwrite $text; close($finwrite); waitpid $filterpid, 0; @@ -335,7 +348,7 @@ sub process_html (*$$;$) my $filterpid, $prefixpid, $finread, $finwrite; my $foutread, $foutwrite, $decoder, $ret; - if (! defined($decoder = find_decoder($encoding))) { + if (! defined($decoder = find_decoder(lc($encoding)))) { return 'EOF'; } @@ -522,7 +535,7 @@ sub process_multipart ($$$) $charset = 'us-ascii'; } - $encoding = defined $cte ? $cte->param('_') : '7bit'; + $encoding = defined $cte ? lc($cte->param('_')) : '7bit'; $name = defined $cdispo ? $cdispo->param('filename') : undef; # @@ -648,15 +661,15 @@ sub null_decoder ($) sub match_boundary($$) { - my ($_, $boundary) = @_; + my ($line, $boundary) = @_; return if ! defined $boundary; - if (substr($_, 0, 2) eq '--') { - s/[ \t\r\n]+\Z//; - if ($_ eq "--$boundary") { + if (substr($line, 0, 2) eq '--') { + $line =~ s/[ \t\r\n]+\Z//; + if ($line eq "--$boundary") { return 'EOP'; - } elsif ($_ eq "--$boundary--") { + } elsif ($line eq "--$boundary--") { return 'EOM'; } }