Results 9 comments of Andrei Hava

As of now, the solution I've found works best is still explained here: https://github.com/mosra/magnum-examples/issues/97#issuecomment-780830374 TL;DR: Clone imgui and magnum-integration locally and build with bundled ImGui. CMake: ```cmake set(IMGUI_DIR ${CMAKE_CURRENT_SOURCE_DIR}/lib/imgui) set(WITH_IMGUI...

+1, absolutely necessary feature, especially to prevent deletion of certain resources, as others have mentioned above.

Hello @olivierlemasle ! Thanks for your work on bringing this feature into Tauri. :) Do you currently have any approximate ETA for when this PR will be review-ready?

Upon further investigation I've found the root cause, and it seems like this is a limitation within Java itself. The 400 status is set here: https://github.com/quarkusio/quarkus/blob/7cf3e4e8f484aefed9ea97b08ebb2164093baa4e/extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/runtime/VertxHttpRecorder.java#L122 ```java if (!uriValid(httpServerRequest)) {...

I can confirm that setting `vertx.disableURIValidation` to `true` mitigates this issue in development environments. ``` quarkus dev -Dvertx.disableURIValidation=true ``` ![image](https://github.com/quarkiverse/quarkus-quinoa/assets/30475873/d8eb0ead-a8a8-48e1-bf3c-1b069f14632c)

Super, thanks for the quick investigation @ia3andy . FYI, I've also opened an issue on Quarkus' side, more-so for the decoding failing silently rather than throwing to output: https://github.com/quarkusio/quarkus/issues/37789

Chiming in to add that some automatic bounce processing for certain mailing list systems also use POP3 to process bounces.

@mdecimus Thanks for the reply! Whilst having the ability to use multiple tracers at once does provide workarounds to this, I don't think this is a solution to what I...