http://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/public-inbox.git/tree/lib/PublicInbox/MDA.pm?h=p516-leak
= 1 ; my $mid = $mid [ 0 ]; return 0 if ( length ( $mid ) > MAX_MID_SIZE ); return 0 unless usable_str ( length ( '<m @h >' ), $mid ) && $mid =~ /\@/ ; return 0 unless usable_str ( length ( 'u @h ' ), $simple -> header ( "From" )); return 0 unless usable_str ( length ( ':o' ), $simple -> header ( "Subject" )); return 0 unless usable_date ( $simple -> header ( "Date" )); return 0 if length ( $simple -> as_string ) > MAX_SIZE ; alias_specified ( $simple , $address ); } sub usable_str { my (...