]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/Hval.pm
update copyright headers and email addresses
[public-inbox.git] / lib / PublicInbox / Hval.pm
index 68f895460821569e9ba67a01902af6248e9692c5..e0ec630583dd84364c6131575d8bf5a655d816a4 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2014, Eric Wong <normalperson@yhbt.net> and all contributors
+# Copyright (C) 2014-2015 all contributors <meta@public-inbox.org>
 # License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt)
 #
 # represents a header value in various forms
@@ -8,6 +8,7 @@ use warnings;
 use fields qw(raw href);
 use Encode qw(find_encoding);
 use URI::Escape qw(uri_escape_utf8);
+use PublicInbox::MID qw/mid_clean/;
 
 my $enc_ascii = find_encoding('us-ascii');
 
@@ -24,17 +25,9 @@ sub new {
 }
 
 sub new_msgid {
-       my ($class, $msgid) = @_;
-       $msgid =~ s/\A\s*<?//;
-       $msgid =~ s/>?\s*\z//;
-
-       if (length($msgid) <= 40) {
-               $class->new($msgid);
-       } else {
-               require Digest::SHA;
-               my $hex = Digest::SHA::sha1_hex($msgid);
-               $class->new($msgid, $hex);
-       }
+       my ($class, $msgid, $no_compress) = @_;
+       $msgid = mid_clean($msgid);
+       $class->new($msgid, $msgid);
 }
 
 sub new_oneline {