diff --git a/Ezmlm/trunk/Changes b/Ezmlm/trunk/Changes index 14b5212..0d7dc64 100644 --- a/Ezmlm/trunk/Changes +++ b/Ezmlm/trunk/Changes @@ -56,3 +56,6 @@ Revision history for Perl extension Mail::Ezmlm. - allow "@" in the path of a mailing list - add modules Mail::Ezmlm::GpgKeyRing and Mail::Ezmlm::GpgEzmlm +0.08.1 Thu Oct 12 04:37:06 CEST 2008 + - fix issue of Mail::Ezmlm::GpgEzmlm with ezmlm-idx v0.4x lists + diff --git a/Ezmlm/trunk/Ezmlm/GpgEzmlm.pm b/Ezmlm/trunk/Ezmlm/GpgEzmlm.pm index 90797c5..1540ad8 100644 --- a/Ezmlm/trunk/Ezmlm/GpgEzmlm.pm +++ b/Ezmlm/trunk/Ezmlm/GpgEzmlm.pm @@ -552,7 +552,7 @@ sub _get_dotqmail_location { chomp($dot_loc); } elsif (-r "$list_dir/config") { # the "config" file was used before ezmlm-idx v5 - $dot_loc = $1 if ($plain_list->getpart("config") =~ m/^T:(.*)$/); + $dot_loc = $1 if ($plain_list->getpart("config") =~ /^T:(.*)$/m); } else { warn '[GpgEzmlm] list configuration file not found: ' . $list_dir; $dot_loc = undef;