AlexanderTheGrey

Results 14 comments of AlexanderTheGrey

The default settings for gif2webp is lossless. gif2webp conversion using the default options converts the GIF into a much smaller file size and visually identical quality compared to sharp with...

Yeah, that's what I ended up doing to conditionally use lossless if the source is animated. It may be good to add some notes to the docs that specify to...

It looks like the bug has been fixed (I don't know which commit), so this issue should be closed.

@bencorrado What do you mean by that? I've tried adding `/sysroot` to `extra-dirs-rootfs` in the cloud-config and manually bind mounted the folder, but I still get the same error.

@bencorrado Oh, that went right over my head. It's an "opinionated feature" because the bug has been around so long 😅

I think the issue has to do with the `client_id` being used. https://github.com/harishkrupo/oauth2ms/issues/15 https://github.com/pdobsan/oama/discussions/60 It's also related to Microsoft's bad support for a default `client_id` (unlike Gmail).

@keithbowes Can you post your `config.yaml`? How did you get the `redirect_uri` working correctly with Microsoft?

Here's mine: oama printenv ```yaml ### Runtime environment ### config: encryption: tag: KEYRING services: microsoft: access_type: null auth_endpoint: null auth_http_method: null auth_params_mode: null auth_scope: https://outlook.office.com/IMAP.AccessAsUser.All https://outlook.office.com/SMTP.Send offline_access client_id: 9e5f94bc-e8a4-4e73-b8be-63364c29d753 client_secret:...

The `client_id` is from Thunderbird. It's essentially a default value, since Microsoft does not provide a default `client_id`, and Thunderbird's Azure app registration does not require a `client_secret`. I'm running...