From 23d896234f3eb5e579de2e8ddf3c723654862ade Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Mon, 26 Jun 2017 03:05:39 +0000 Subject: mda: set List-ID correctly according to RFC2919 Oops, due to an old mistake , List-ID was set incorrectly in the MDA. This could cause some breakage w.r.t. mail filters. --- scripts/ssoma-replay | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/ssoma-replay b/scripts/ssoma-replay index 3c3fdf48..50bf4560 100755 --- a/scripts/ssoma-replay +++ b/scripts/ssoma-replay @@ -45,7 +45,9 @@ my $body = $msg->body; my $list_id = $header_obj->header('List-Id'); my ($archive_url, $user, $domain); if (defined $list_id) { - ($user, $domain) = ($list_id =~ /<(.+)\@(.+)>/g); + # due to a bug in old versions of public-inbox, was used + # as the list-Id instead of as recommended in RFC2919 + ($user, $domain) = ($list_id =~ /<([^\.@]+)[\.@](.+)>/g); if (defined $domain) { $archive_url = "https://$domain/$user/"; -- cgit v1.2.3-24-ge0c7