about summary refs log tree commit homepage
path: root/scripts/ssoma-replay
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/ssoma-replay')
-rwxr-xr-xscripts/ssoma-replay4
1 files changed, 3 insertions, 1 deletions
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, <user@domain> was used
+        # as the list-Id instead of <user.domain> as recommended in RFC2919
+        ($user, $domain) = ($list_id =~ /<([^\.@]+)[\.@](.+)>/g);
 
         if (defined $domain) {
                 $archive_url = "https://$domain/$user/";