Michael Kefeder

Results 54 comments of Michael Kefeder

message-view shows the labels. closing

renaming the default 5 labels is a feature now. using any IMAP labels doesn't work, because upstream roundcube mangles their names see roundcube/roundcubemail#4986

Just for completeness, before this gets closed, the word-regexp logic in the original code is correct, from the GNU ptx docs: > By default, if GNU extensions are enabled, a...

Yes in the original C code that is correct, and probably done for performance reasons. However this can be solved by a regular expression too, and, even though I haven't...

While getting rid of unit-error and looking at your attempt with the Authorizer trait, I realized my example is broken. Here's a quick attempt to work around the limitation: ```rust...

the problem arises when the authentication fails, then the warp reject code we are building here is active, correct? If that is the case you'll have a content-type of plain/text...

thanks for the help, that is basically what I built for my app - I think it is a lot of boilerplate necessary to "just" have authentication. If we can...

I made my code a bit more readable and played with your example code. Problem using the rejection handler is now - not providing user/pass returns Error 500 because it...

quickhack for `into_response()` being private: ```diff diff --git a/src/reject.rs b/src/reject.rs index 05e4a86..e2cbb4c 100644 --- a/src/reject.rs +++ b/src/reject.rs @@ -337,6 +337,11 @@ impl Rejection { false } } + + ///...

This is what I mean, as soon as you recover you have to deal with any rejection, the `examples/rejections.rs` even shows that you need to deal with 404 and everything....