Robert Virkus

Results 81 comments of Robert Virkus
trafficstars

I assume this is because the mail service in question does not support mailbox flags, [rfc 6154](https://datatracker.ietf.org/doc/html/rfc6154). Can you confirm that this problem occurs when sending a message? In regards...

When the IMAP service does not support mailbox flags, it pretty much boils down to guessing, so implementations can now either guess or ask the user to specify the respective...

If I understand you correctly, you have an original "root message" and want to get any replies to that message in the currently selected mailbox/folder. Assuming you have the message...

You cannot enable this if the service does not support it. I recommend reading about the IMAP standard. e.g https://en.wikipedia.org/wiki/Internet_Message_Access_Protocol. Optional extensions such as threading are optional, meaning servers do...

Instead of `client.connectToServer(...)` you can also create your own socket and call `client.connect(socket, connectionInformation: ConnectionInfo(host, port, isSecure))`. In this way you can control every aspect. I hope this helps?

Hi, nope sorry, I don't know if or how this is possible, I assume this is not `SecureSocket.selectedProtocol`, right?

What's your use-case? If you have set up a proxy on your system, this should be transparent to any network app as far as I understand....

This seems to be an problem for Dart and Flutter, compare for example * https://github.com/flutter/flutter/issues/20376 * https://github.com/dart-lang/sdk/issues/41376 I have found this GPL-licensed library that allows to connect via Socks5: https://github.com/v0l/socks5...

Dio just exposes the `dart:io` `HttpClient`'s `findProxy(Uri)` callback. While I agree that this would be a nice API, I have no idea how to implement this. I cannot integrate with...

Calling this with https://enough.de/bug/crash.html as the URL leads to a distorted view on the emulator but to a crash on my Android 11 / API Levevl 30 device. The main...