| 3 Jun 2025 |
hexa | * I don't think much has changed since it was posted | 20:08:25 |
edef | note that S3 only speaks HTTP/1.1 | 20:14:13 |
edef | are you sure you are measuring client requests to the CDN and not origin requests? | 20:14:36 |
edef | because curling narinfos definitely gives me h2 | 20:15:18 |
edef | and like, we might just be logging this wrong, this data may not exist, i am not sure | 20:19:18 |
Arian | yeh im pretty sure these are client requests to the cdn | 20:19:38 |
edef | the logs are literally some json we sprintf together | 20:19:46 |
edef | * the logs are literally some "json" we sprintf together | 20:19:52 |
Arian | ah | 20:19:54 |
Arian | Okay but Fastly's | 20:21:20 |
Arian | * | 20:21:32 |
Arian | that’s why I started this. Our logs are consistent with that | 20:21:50 |
Arian | enough digging for today :D | 20:23:36 |
Jeremy Fleischman (jfly) | infinisil, i poked around a bit and figured out how to get our mailserver to both store and forward email. so we don't need to do a sudden switch for foundation@, you can keep the mailing list for a bit while you transition to freescout.
could you take a look at https://github.com/NixOS/infra/pull/715 and if it looks good, generate loginAccount for foundation@nixos.org? (nix run .#encrypt-email login -- --help should tell you what to do)
| 20:41:04 |
Jeremy Fleischman (jfly) | https://github.com/NixOS/infra/pull/705 builds upon that PR and adds freescout itself | 20:42:42 |
infinisil | In reply to @jfly:matrix.org
infinisil, i poked around a bit and figured out how to get our mailserver to both store and forward email. so we don't need to do a sudden switch for foundation@, you can keep the mailing list for a bit while you transition to freescout.
could you take a look at https://github.com/NixOS/infra/pull/715 and if it looks good, generate loginAccount for foundation@nixos.org? (nix run .#encrypt-email login -- --help should tell you what to do)
Nice! I'll PR that against your branch :D | 21:01:43 |
infinisil | Jeremy Fleischman (jfly) https://github.com/jfly/infra/pull/1 | 21:16:42 |
infinisil | Also taking a quick look at the PR now | 21:17:11 |
infinisil | Jeremy Fleischman (jfly) I don't get how storeEmail works. The only place using it is the secrets configuration | 21:21:46 |
Jeremy Fleischman (jfly) | here's a demonstration of the effect | 21:22:26 |
Jeremy Fleischman (jfly) | before:
[root@umbriel:~]# grep jfly /etc/postfix/virtual-mailing-lists
jfly-hacking@nixos.org me@playground.jflei.com
| 21:22:35 |
Jeremy Fleischman (jfly) | after:
[root@umbriel:~]# grep jfly /etc/postfix/virtual-mailing-lists
jfly-hacking@nixos.org jfly-hacking@nixos.org, me@playground.jflei.com
| 21:22:44 |
Jeremy Fleischman (jfly) | you're correct that this only affects secrets, because /etc/postfix/virtual-mailing-lists is a sops templated secret | 21:24:14 |
Jeremy Fleischman (jfly) | * you're correct that this only affects secrets, because /etc/postfix/virtual-mailing-lists is a sops-templated secret | 21:24:24 |
Jeremy Fleischman (jfly) | * with storeEmail = false;:
[root@umbriel:~]# grep jfly /etc/postfix/virtual-mailing-lists
jfly-hacking@nixos.org me@playground.jflei.com
| 21:24:46 |
infinisil | Ah I see | 21:24:53 |
Jeremy Fleischman (jfly) | * with storeEmail = true;:
[root@umbriel:~]# grep jfly /etc/postfix/virtual-mailing-lists
jfly-hacking@nixos.org jfly-hacking@nixos.org, me@playground.jflei.com
| 21:24:54 |
infinisil | So it "forwards" it to the actual email | 21:25:09 |
Jeremy Fleischman (jfly) | yeah, kind of funny looking. but that's exactly how my brain reads it | 21:25:35 |
infinisil | Makes sense! | 21:26:02 |