about summary refs log tree commit homepage
path: root/lib/PublicInbox/IMAP.pm
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-06-10 07:05:04 +0000
committerEric Wong <e@yhbt.net>2020-06-13 07:55:45 +0000
commitf1f7030566b17f596e2d6083047535ddd9b94e8c (patch)
treee1d040f013c2e215b924692e702e03ffa59419e5 /lib/PublicInbox/IMAP.pm
parentdb95fdf669b11a0d3c3259e0ef7a1cbdb14ba1f3 (diff)
downloadpublic-inbox-f1f7030566b17f596e2d6083047535ddd9b94e8c.tar.gz
It seems required based on my reading of RFC 3501 for
the non-UID "FETCH" command.
Diffstat (limited to 'lib/PublicInbox/IMAP.pm')
-rw-r--r--lib/PublicInbox/IMAP.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/IMAP.pm b/lib/PublicInbox/IMAP.pm
index 9cdcba69..d3f4874e 100644
--- a/lib/PublicInbox/IMAP.pm
+++ b/lib/PublicInbox/IMAP.pm
@@ -884,7 +884,7 @@ sub fetch_compile ($) {
         @r;
 }
 
-sub cmd_uid_fetch ($$$;@) {
+sub cmd_uid_fetch ($$$$;@) {
         my ($self, $tag, $range_csv, @want) = @_;
         my $ibx = $self->{ibx} or return "$tag BAD No mailbox selected\r\n";
         my ($cb, $ops, $partial) = fetch_compile(\@want);