←back to thread

230 points michidk | 1 comments | | HN request time: 0s | source
Show context
camgunz ◴[] No.43533803[source]
I've been working on some email stuff and I think probably four things are vexing about IMAP:

- The grammar is hard. I built a parser using lpeg and I'm incredibly glad I did--doing it ad hoc won't lead to good results.

- It's an asynchronous protocol. You can send lots of requests to a server and you have to tag them so you can match them up with responses later. You don't generally want to do that in a client; i.e. you don't want to do these transactional things over an async connection and track state across all of it. You want to like, block on deleting things, renaming things, sending things, etc.

- IMAP is multi-user--it's built around the idea of multiple clients accessing the same mailbox at the same time and streaming updates. Another thing you really don't want to deal with when building an email client.

- There's functionality that you basically shouldn't use; the big one is search. Even the specs more or less say "good luck using this".

You can group all this under the a heading of "we thought people would use this over telnet", but attachments and non-plain-text email I think made that non-viable.

I think this all means probably every non-web email client treats IMAP like POP and keeps its own store. I haven't done a survey or anything, but I'd be surprised if that weren't true.

replies(5): >>43533865 #>>43533989 #>>43535295 #>>43537072 #>>43539698 #
mr_mitm ◴[] No.43533865[source]
> I think this all means probably every non-web email client treats IMAP like POP and keeps its own store. I haven't done a survey or anything, but I'd be surprised if that weren't true.

Pretty sure mutt doesn't. It only caches the headers.

replies(4): >>43533968 #>>43534820 #>>43536330 #>>43537989 #
camgunz ◴[] No.43534820[source]
Oh, yeah I guess that's what I mean, and then your connection can be used basically (again) like POP
replies(1): >>43537529 #
1. mr_mitm ◴[] No.43537529[source]
Ah, now I see what you mean. True.