about summary refs log tree commit homepage
path: root/lib/PublicInbox/LeiUp.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-09-13 20:53:55 +0000
committerEric Wong <e@80x24.org>2021-09-13 21:11:16 +0000
commitb34a267efff7b83173b28edf43e8e24845c40a77 (patch)
treeea37e2de5020ff2f184b3bdbe67e8d3a0f065e8e /lib/PublicInbox/LeiUp.pm
parentaaadf0fad545bc9d2784cff265b90827799d1f22 (diff)
downloadpublic-inbox-b34a267efff7b83173b28edf43e8e24845c40a77.tar.gz
Oops :x

Fixes: b584a53f053a7629 ("lei up: support --all for IMAP folders")
Diffstat (limited to 'lib/PublicInbox/LeiUp.pm')
-rw-r--r--lib/PublicInbox/LeiUp.pm25
1 files changed, 15 insertions, 10 deletions
diff --git a/lib/PublicInbox/LeiUp.pm b/lib/PublicInbox/LeiUp.pm
index a16117c9..53f06dbc 100644
--- a/lib/PublicInbox/LeiUp.pm
+++ b/lib/PublicInbox/LeiUp.pm
@@ -54,16 +54,21 @@ sub up1 ($$) {
 
 sub up1_redispatch {
         my ($lei, $out, $op_p) = @_;
-        my $l = bless { %$lei }, ref($lei);
-        $l->{opt} = { %{$l->{opt}} }; # deep copy
-        delete $l->{sock}; # do not close
-        $l->{''} = $op_p; # daemon only ($l => $lei => script/lei)
-
-        # make close($l->{1}) happy in lei->dclose
-        open my $fh, '>&', $l->{1} or return $l->child_error(0, "dup: $!");
+        my $l;
+        if (defined($lei->{opt}->{mua})) { # single output
+                $l = $lei;
+        } else { # multiple outputs
+                $l = bless { %$lei }, ref($lei);
+                $l->{opt} = { %{$l->{opt}} }; # deep copy
+                delete $l->{sock}; # do not close
+                # make close($l->{1}) happy in lei->dclose
+                open my $fh, '>&', $l->{1} or
+                        return $l->child_error(0, "dup: $!");
+                $l->{1} = $fh;
+        }
         local $PublicInbox::LEI::current_lei = $l;
         local %ENV = %{$l->{env}};
-        $l->{1} = $fh;
+        $l->{''} = $op_p; # daemon only ($l => $lei => script/lei)
         eval {
                 $l->qerr("# updating $out");
                 up1($l, $out);
@@ -92,7 +97,7 @@ sub lei_up {
         $lei->{lse} = $lei->_lei_store(1)->write_prepare($lei)->search;
         if (defined(my $all = $opt->{all})) {
                 return $lei->fail("--all and @outs incompatible") if @outs;
-                length($opt->{mua}//'') and return
+                defined($opt->{mua}) and return
                         $lei->fail('--all and --mua= are incompatible');
                 @outs = PublicInbox::LeiSavedSearch::list($lei);
                 if ($all eq 'local') {
@@ -110,7 +115,7 @@ sub lei_up {
                 $self->{local} = [ grep(!/$REMOTE_RE/, @outs) ];
         }
         ((@{$self->{local} // []} + @{$self->{remote} // []}) > 1 &&
-                length($opt->{mua} // '')) and return $lei->fail(<<EOM);
+                defined($opt->{mua})) and return $lei->fail(<<EOM);
 multiple outputs and --mua= are incompatible
 EOM
         if ($self->{remote}) { # setup lei->{auth}