[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1330708383.7070.5.camel@joe2Laptop>
Date: Fri, 02 Mar 2012 09:13:03 -0800
From: Joe Perches <joe@...ches.com>
To: Richard Weinberger <richard@....at>
Cc: akpm@...ux-foundation.org, Ian.Campbell@...rix.com,
florian@...kler.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] get_maintainer.pl: Add support for moderated lists
On Wed, 2012-02-29 at 20:49 +0100, Richard Weinberger wrote:
> Currently get_maintainer.pl reports moderated lists as open,
> which is just wrong.
>
> Signed-off-by: Richard Weinberger <richard@....at>
Acked-by: Joe Perches <joe@...ches.com>
> diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl
[]
> @@ -1027,8 +1027,13 @@ sub add_categories {
> if ($email_list) {
> if (!$hash_list_to{lc($list_address)}) {
> $hash_list_to{lc($list_address)} = 1;
> - push(@list_to, [$list_address,
> - "open list${list_role}"]);
> + if ($list_additional =~ m/moderated/) {
> + push(@list_to, [$list_address,
> + "moderated list${list_role}"]);
> + } else {
> + push(@list_to, [$list_address,
> + "open list${list_role}"]);
> + }
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists