From b8e09a39b7f603aec98ef45530b2cc5c73bd1a79 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sun, 11 Sep 2011 13:49:43 +0200 Subject: [PATCH] Correct regexp to accept list with dashes etc. in the name --- plugins/other/mailman_subscribers | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/other/mailman_subscribers b/plugins/other/mailman_subscribers index 788835d9..a45c9dd2 100755 --- a/plugins/other/mailman_subscribers +++ b/plugins/other/mailman_subscribers @@ -48,7 +48,7 @@ my $list_members = "/usr/sbin/list_members"; open(LL, "$list_lists|") or exit 4; while () { - ($list, $desc) = (/\s+(\w+)\s-\s(.*)$/); + ($list, $desc) = (/^\s+(.*?)\s-\s(.*)$/); $lists{$list} = $desc if ($list); } close(LL);