Louis Sautier

Results 69 comments of Louis Sautier

> I assume that it is easy to reproduce this cert chain? Yes, any Let's Encrypt certificate deployed with `certbot` should use it. > But can it be made available...

I doubt the signature of the CA matters, if you dump the contents of [the existing certificate](http://ca.ipxe.org/auto/c92eb62f.der), you'll see that the whole signature section is lost, only the modulus remains...

> But can it be made available for testing in some way? Please try the following script: ``` #!ipxe chain https://sbraz.xyz/refind/refind_x64.efi ``` ``` Certificate chain 0 s:CN = sbraz.xyz i:C...

@stappersg I'm not sure what your test does. I realise my link could be scary, just FYI I downloaded the EFI application from the site you linked: ```shell $ curl...

@rsnyman any luck reproducing without PyInstaller? If I were to attempt to reproduce this *with* PyInstaller, how would I do it? EDIT: link to issue: https://gitlab.com/openlp/openlp/-/issues/1041

In case this helps other people hitting the bug, **I might have found a workaround**, here is what I did: * Turned on aeroplane mode * Started Signal, it was...

@cody-signal thanks for the fix, may I ask what introduced this bug? Was it a recent regression? And what fixed it? Was it 3c6c03cd7566753604970bd31c5d7c9e7eae9b24?

The warning is an error in Python 3.10, could someone please merge this and make a new release? ``` ERROR tests/test_flasknav.py - AttributeError: module 'collections' has no attribute 'MutableMapping' ```

@shepherdjay I just noticed you also need to change the import or the module won't work: ```diff diff --git a/flask_nav/__init__.py b/flask_nav/__init__.py index 7c25dfa..5826b9e 100644 --- a/flask_nav/__init__.py +++ b/flask_nav/__init__.py @@ -1,4...

Thanks for the reply. Putting error messages in a separate key would be a good idea indeed. I believe that's what `smartctl` does for instance. I applied a similar workaround...