From 8639db3468304fe096f80c5a6adf901790f6e498 Mon Sep 17 00:00:00 2001 From: lars Date: Fri, 2 Mar 2012 00:10:14 +0000 Subject: [PATCH] colon is a valid dot-qmail filename character --- Ezmlm/trunk/Ezmlm/GpgEzmlm.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ezmlm/trunk/Ezmlm/GpgEzmlm.pm b/Ezmlm/trunk/Ezmlm/GpgEzmlm.pm index b4d876f..f77f853 100644 --- a/Ezmlm/trunk/Ezmlm/GpgEzmlm.pm +++ b/Ezmlm/trunk/Ezmlm/GpgEzmlm.pm @@ -253,7 +253,7 @@ sub convert_to_plaintext { $dot_loc = _get_dotqmail_location($list_dir); # untaint "dot_loc" - $dot_loc =~ m/^([\w\d\_\-\.\@ \/]+)$/; + $dot_loc =~ m/^([\w\d\_\-\.\@ \/\:]+)$/; if (defined($1)) { $dot_loc = $1; } else { @@ -626,7 +626,7 @@ sub _cleanup_dotqmail_files { $dot_loc = _get_dotqmail_location($list_dir); # untaint "dot_loc" - $dot_loc =~ m/^([\w\d\_\-\.\@ \/]+)$/; + $dot_loc =~ m/^([\w\d\_\-\.\@ \/\:]+)$/; if (defined($1)) { $dot_loc = $1; } else {