about summary refs log tree commit homepage
path: root/xt
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2023-09-12 22:40:34 +0000
committerEric Wong <e@80x24.org>2023-09-15 20:37:47 +0000
commit392d251f97d465796e9497d893b983bfb2a05b74 (patch)
tree140ce27df2883f70ae8942051c8b033d6195fa47 /xt
parente281363ba93763a7bc4be41ad814cd972d1775f9 (diff)
downloadpublic-inbox-392d251f97d465796e9497d893b983bfb2a05b74.tar.gz
I'm not sure if `?' or `=' are allowed characters in POP3
mailbox names.  In fact, I can't find any information on
valid characters allowed in RFC 1081 nor RFC 1939.

In any case, it works fine with mpop, Claws-Mail, and
Thunderbird.

Tested-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
Diffstat (limited to 'xt')
-rw-r--r--xt/pop3d-mpop.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/xt/pop3d-mpop.t b/xt/pop3d-mpop.t
index fc82bc6b..9da1050c 100644
--- a/xt/pop3d-mpop.t
+++ b/xt/pop3d-mpop.t
@@ -53,7 +53,7 @@ delivery maildir $tmpdir/md
 account default
 host ${\$sock->sockhost}
 port ${\$sock->sockport}
-user $uuid\@$newsgroup
+user $uuid\@$newsgroup?limit=10000
 auth user
 password anonymous
 received_header off
@@ -65,7 +65,7 @@ EOM
         my $pid = spawn($cmd, undef, { 1 => 2 });
         $pids{$pid} = $cmd;
 }
-
+diag "mpop is writing to $tmpdir/md ...";
 while (scalar keys %pids) {
         my $pid = waitpid(-1, 0) or next;
         my $cmd = delete $pids{$pid} or next;