Recent activity

[PATCH] Demonstrate that I can use git send-email 8 days ago

From oliverpool to ~sircmpwn/email-test-drive

---
 your-name | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 your-name

diff --git a/your-name b/your-name
new file mode 100644
index 0000000..6d0ecfd
--- /dev/null
+++ b/your-name
@@ -0,0 +1 @@
I'm about to try git send-email
-- 
2.42.0
[message trimmed]

[PATCH] Demonstrate that I can use git send-email 8 days ago

From oliverpool to ~sircmpwn/email-test-drive

---
 oliverpool | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 oliverpool

diff --git a/oliverpool b/oliverpool
new file mode 100644
index 0000000..6d0ecfd
--- /dev/null
+++ b/oliverpool
@@ -0,0 +1 @@
I'm about to try git send-email
-- 
2.42.0
[message trimmed]

[PATCH hub.sr.ht] well-known: support openpgp web key discovery 13 days ago

From oliverpool to ~sircmpwn/sr.ht-dev

will allow clients to discover the public key automatically, using:
gpg --locate-keys outgoing@sr.ht

Internet-Draft https://datatracker.ietf.org/doc/html/draft-koch-openpgp-webkey-service#name-web-key-directory

---

Initial discussion: https://lists.sr.ht/~sircmpwn/sr.ht-discuss/%3Cdd965bea-a130-4675-8cdf-742286607079%40app.fastmail.com%3E
First patch (on meta.sr.ht frontend): https://lists.sr.ht/~sircmpwn/sr.ht-dev/patches/40794
Second patch (on meta.sr.ht backend): https://lists.sr.ht/~sircmpwn/sr.ht-dev/patches/40799

Current patch: hub.sr.ht backend.

It fixes the discrepancy noted by ~bitfehler (with an added test)
[message trimmed]

Re: [PATCH go-gemini] client: use req.Host only for dialing (as documented) 26 days ago

From Olivier C to ~adnano/go-gemini-devel

> I don't quite understand your use case.

It was for unit testing, with a localhost server. With an http request I can simply:
- point the url to the localhost address
- set the Host to the (fake) hostname I want to serve
- send the request (the connection happens at the localhost address, with the servername mentionned in the Host).

I now understand the purpose of the gemini.Request.Host: it is to use the specified Host as a proxy.

If I understand the specification correctly, the "host customization" should happen directly on the URL (in contrary to HTTP, which customizes the Host header).

To prevent such mistakes for clients, I would recommend renaming the Host field to something else (like ProxyHost).
For my tests, I found a workaround, by overriding the Client.DialContext.

[PATCH go-gemini] client: use req.Host only for dialing (as documented) 28 days ago

From oliverpool to ~adnano/go-gemini-devel

---

My goal is to be able to make a request overriding the dialed IP, while
preserving the Server Name Indication (SNI).

Currently, if I specify a request.Host, this value gets used as
ServerName as well (which breaks SNI).
I think this is a bug and that the ServerName should always be the host
of the request.URL.

For Request.Host the documentation states:

// For client requests, Host optionally specifies the server to
// connect to. It may be of the form "host" or "host:port".
[message trimmed]

Re: [PATCH 2/2] builds: use authenticated client to fetch logs 3 months ago

From Olivier C to ~emersion/hut-dev

> Upstream has started requiring authentication to fetch builds logs.
> Use Client.HTTP instead of http.DefaultClient.

I was about to propose such a patch, since my resubmission command `hut builds resubmit -f XXXX` failed with (job is unlisted)

> failed to fetch job logs: invalid HTTP status: want Partial Content, got: 401 401 Unauthorized

Applying this patch, the log is correctly fetched and displayed (so LGTM :).

Re: [git.sr.ht] Display "git config sendemail.to" on clone 3 months ago

From Olivier C to ~sircmpwn/sr.ht-discuss

brocellous share ddevault's old proposal in #sr.ht: https://lore.kernel.org/git/C5HAJYI9RDPU.1CPN4E1JCQCAQ@homura/ (Proposal: server-advertised config options)

Re: [PATCH meta.sr.ht] well-known: support openpgp webkey discovery 4 months ago

From Olivier C to ~sircmpwn/sr.ht-dev

Superseded by https://lists.sr.ht/~sircmpwn/sr.ht-dev/patches/40799 (implementation in go)

On Tue, May 2, 2023, at 23:56, oliverpool wrote:
> as documented on 
> https://datatracker.ietf.org/doc/html/draft-koch-openpgp-webkey-service#name-web-key-directory
> ---
> This has been proposed on sr.ht-discuss 
> https://lists.sr.ht/~sircmpwn/sr.ht-discuss/%3Cdd965bea-a130-4675-8cdf-742286607079%40app.fastmail.com%3E
>
>> I think that would make sense. File ticket and/or send patch?
>
> It would conflict with 
> https://lists.sr.ht/~sircmpwn/sr.ht-dev/patches/40325 (removal of pgpy 
> dependency).

[PATCH blog] add mailto: scheme to public-inbox email address 4 months ago

From oliverpool to ~bitfehler/public-inbox

---
 posts/2022-05-15_status-update--may-2022.md   | 2 +-
 posts/2023-04-18_status-update--april-2023.md | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/posts/2022-05-15_status-update--may-2022.md b/posts/2022-05-15_status-update--may-2022.md
index c91c6fb..c07c970 100644
--- a/posts/2022-05-15_status-update--may-2022.md
+++ b/posts/2022-05-15_status-update--may-2022.md
@@ -177,5 +177,5 @@ hence publish) stuff more often. Let's see. At any rate, happy hacking, and if
you have any questions or comments, feel free to reach out to `bitfehler` in
`#sr.ht.watercooler` on Libera Chat or send them to my [public inbox][15].

[15]: ~bitfehler/public-inbox@lists.sr.ht "Send an email to my public inbox"
[message trimmed]