about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--lib/PublicInbox/Inbox.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/PublicInbox/Inbox.pm b/lib/PublicInbox/Inbox.pm
index 3f70e69d..1f7f982d 100644
--- a/lib/PublicInbox/Inbox.pm
+++ b/lib/PublicInbox/Inbox.pm
@@ -285,9 +285,9 @@ sub pop3_url {
                 my $group = $self->{newsgroup};
                 my @urls;
                 ($ps && $group) and
-                        @urls = map { m!\Apops?://! ? $_ : "pop://$_" } @$ps;
+                        @urls = map { m!\Apop3?s?://! ? $_ : "pop3://$_" } @$ps;
                 if (my $mi = $self->{'pop3mirror'}) {
-                        my @m = map { m!\Apops?://! ? $_ : "pop://$_" } @$mi;
+                        my @m = map { m!\Apop3?s?://! ? $_ : "pop3://$_" } @$mi;
                         my %seen; # List::Util::uniq requires Perl 5.26+
                         @urls = grep { !$seen{$_}++ } (@urls, @m);
                 }