RichardSteele

Results 8 issues of RichardSteele

Invalid memory accesses are probable if `posixSocket::resolve` uses `getaddrinfo_a` and `getaddrinfo_a` doesn't finish within `m_timeoutHandler`'s defined interval. The default timeout of 30 seconds makes the problem unlikely but a very...

Your [implementation of RFC 6532](https://github.com/kisli/vmime/commit/0c5d4a10e6f616f5a63787b8fbda86ec9fc487a9) may cause the sending of an email without activating SMTPUTF8 although it is mandatory according to [RFC 6532](https://tools.ietf.org/html/rfc6532): > messages in this format require the...

Prevents the loss of a space if the previous word is 8-bit but the current one is not. This equals the case of the current word being 8-bit but not...

Following example ``` vmime::mailbox mailbox(vmime::text("Test München West", vmime::charsets::WINDOWS_1252), "[email protected]"); vmime::utility::outputStreamAdapter adapter(std::cout); mailbox.generate(adapter); ``` gives as output ``` =?us-ascii?Q?Test_?= =?windows-1252?Q?M=FCnchen?= =?us-ascii?Q?West?= ``` The first space between `Test` and `München` is encoded...

When `net_read_uncompressed_nonblocking` detects a packet of maximum length, it returns `NET_ASYNC_NOT_READY` [right away](https://github.com/facebook/mysql-5.6/blob/ada9867535316bab61d36cc6264f69c47f506d6f/sql-common/net_serv.cc#L2116-L2117). Looping in this case might save some higher level calls and help with edge-triggered event notification if...

Implements initial responses with GNU SASL. Guards its usage within IMAP by respecting SASL-IR capability of server.

I've come across a (misconfigured) SMTP server which requires clients to supply an initial response with SASL authentication although it is supposed to be optional. This has lead me to...

**Description** It is impossible to launch a URI scheme which is registered with the OS (external) or by WebView2's `ICoreWebView2CustomSchemeRegistration` (custom) and directed to a new window that is provided...

bug