unofficial mirror of meta@public-inbox.org
 help / color / mirror / Atom feed
* [PATCH] lei_curl: use http.proxy knob via URL match for curl
@ 2021-11-03 20:35 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2021-11-03 20:35 UTC (permalink / raw)
  To: meta

Using the --proxy on the command-line affects the entire
lei invocation, and users searching HTTP(S) remotes and
writing to an IMAP folder may want more fine-grained proxy
use:

  lei q -o imap://no-proxy.example/foo -O https://need-proxy.example/bar ...
---
 lib/PublicInbox/LeiCurl.pm | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/lib/PublicInbox/LeiCurl.pm b/lib/PublicInbox/LeiCurl.pm
index ce57e796..5ffade99 100644
--- a/lib/PublicInbox/LeiCurl.pm
+++ b/lib/PublicInbox/LeiCurl.pm
@@ -75,6 +75,11 @@ EOM
 sub for_uri {
 	my ($self, $lei, $uri, @opt) = @_;
 	my $pfx = torsocks($self, $lei, $uri) or return; # error
+	if ($uri->scheme =~ /\Ahttps?\z/i) {
+		my $cfg = $lei->_lei_cfg;
+		my $p = $cfg ? $cfg->urlmatch('http.Proxy', $$uri) : undef;
+		push(@opt, "--proxy=$p") if defined($p);
+	}
 	bless [ @$pfx, @$self, @opt, $uri->as_string ], ref($self);
 }
 

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-11-03 20:35 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-03 20:35 [PATCH] lei_curl: use http.proxy knob via URL match for curl Eric Wong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).