HackerTrans
TopNewTrendsCommentsPastAskShowJobs

jivings

no profile record

comments

jivings
·w zeszłym roku·discuss
I'm having the same problem (and had a rant about it on X a few weeks ago [1]).

We get ~50% of traffic from ChatGPT now, unfortunately a large amount of the features it says we have are made up.

I really don't want to get into a state of ChatGPT-Driven-Development as I imagine that will be never ending!

[1]: https://x.com/JamesIvings/status/1929755402885124154
jivings
·7 lat temu·discuss
The slow part is opening the IMAP connection and authenticating, after that it's fast.

I guess it might depend on how these clients are maintaining their connections.
jivings
·7 lat temu·discuss
My use case is pretty specific, I'm only dealing with a small subset.

I guess I was just lucky and can remain happily ignorant.
jivings
·7 lat temu·discuss
Hey thanks! :) Glad to hear you like it!
jivings
·7 lat temu·discuss
Why is IMAP not well suited to mobile?
jivings
·7 lat temu·discuss
Validation of UIDs is thankfully something I don't have to worry about. It looks like a total nightmare.
jivings
·7 lat temu·discuss
It will be interesting to see how this develops.

I've spent the last month implementing and testing IMAP support for my app [1].

It has... not been very fun.

Before we were limited to providers with a REST API, so implementing IMAP should in theory allow us to support a much wider range of email servers with a much lower support burden.

Although the protocol spec is tight, it seems like some providers randomly bug out or hang [2], respond with custom error messages, offer bespoke functionality [3], or generally don't comply with the spec in breaking ways [4].

As a result I'm more worried about this going forward than I had hoped.

I'll now also happily support anything that can help modernize email, so I'll apply to the developer program and will be watching JMAP closely.

[1]: https://leavemealone.app/

[2]: Yahoo Mail always down (https://downdetector.com/status/yahoo-mail)

[3]: https://developers.google.com/gmail/imap/imap-extensions

[4]: https://github.com/mscdex/node-imap/issues/775
jivings
·7 lat temu·discuss
Having just this month implemented an IMAP client I can tell you it's blazingly fast for Gmail & Outlook.

It's actually much faster and more efficient than using the Gmail API.