On Sat, Dec 06, 2014 at 10:36:23PM +0300, Роман Донченко wrote: > The RFC says that they are to be concatenated after decoding (i.e. the > intervening whitespace is ignored). Thanks. Both patches look good to me, and I'd be happy to have them applied as-is. I wrote a few comments below, but in all cases I think I convinced myself that what you wrote is best. > + my $sep = qr/[ \t]+/; > + s{$re_encoded_word(?:$sep$re_encoded_word)*}{ > + my @words = split $sep, $&; > + foreach (@words) { > + m/$re_encoded_word/; > + $charset = $1; > + my $encoding = $2; > + my $text = $3; It feels a little weird to have to split and rematch $re_encoded_word in the loop, but I don't think there is a way around it. ($1, $2, $3) will have our first word, and ($4, $5, $6) will have the final (if any), but I don't think we can get access to what is in between. So I think what you have here is the best we can do. > + if ($encoding eq 'q' || $encoding eq 'Q') { > + $_ = $text; > + s/_/ /g; > + s/=([0-9A-F]{2})/chr(hex($1))/egi; It took me a minute to figure out why this works. $_ is a reference to the iterator for @words, so it is re-assigning that element of the array first to the encoded text, and then modifying it in place. I wonder if it would be more obvious like this: join '', map { m/$re_encoded_word/; $charset = $1; my $encoding = $2; my $text = $3; if ($encoding eq 'q' || $encoding eq 'Q') { $text =~ s/_/ /g; $text =~ s=([0-9A-F]{2}/chr(hex($1))/egi; } else { # other encoding not supported yet } } split($sep, $&); I dunno. I kind of like your version better now that I understand it, but it did take me a minute. One final note on this bit of code: if there are multiple encoded words, we grab the $charset from the final encoded word, and never report the earlier charsets. Technically they do not all have to be the same (rfc2047 even has an example where they are not). I think we can dismiss this, though, as: 1. It was like this before your patches (we might have seen multiple non-adjacent encoded words; you're just handling adjacent ones), and nobody has complained. 2. Using two separate encodings in the same header is sufficiently ridiculous that I can live with us not handling it properly. > +# This name is long enough to force format-patch to split it into multiple > +# encoded-words, assuming it uses UTF-8 with the "Q" encoding. > +test_expect_success $PREREQ 'long non-ascii self name is suppressed' " > + test_suppress_self_quoted 'Ƒüñníęř €. Nâṁé' 'odd_?=mail@xxxxxxxxxxx' \ > + 'long_non_ascii_self_suppressed' > +" Cute. :) -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html