←back to thread

230 points michidk | 4 comments | | HN request time: 1.055s | source
Show context
therein ◴[] No.43532935[source]
Interesting no attempt has been made to make it at least be less heavy on networked bytes. Especially since it is old and was meant to be used on a connection with no compression or encryption.

HasChildren could have been Parent, HasNoChildren could have been Leaf or Child. And so many more things.

replies(9): >>43533215 #>>43533340 #>>43533359 #>>43533375 #>>43533379 #>>43534129 #>>43534618 #>>43535965 #>>43537720 #
philipwhiuk ◴[] No.43533215[source]
The protocol has ossified and been entrenched. In general more efficient usage of IMAP relies on extensions to the protocol.

A modern replacement (JMAP) hasn't been adopted by major providers.

If you really cared about data transfer size you'd use something like Protobuf.

replies(4): >>43533521 #>>43535069 #>>43535169 #>>43538005 #
calvinmorrison ◴[] No.43535169[source]
Well and you could of course server JMAP over something like Protobuf, JSON is used for ease of use but it's not like thats required feature.

The bigger benefit of JMAP is it's well designed for dealing with deltas and changes and syncing data requiring less roundtripping than IMAP.

replies(1): >>43537029 #
1. Mailtemi ◴[] No.43537029[source]
Can confirm that (implemented JMAP). Deltas and asking for the entire mailbox instead of folder by folder is really good. And as a side effect: 1. Less client-side logic for sync. 2. There are many JSON parsers compared to IMAP, making it way easier to use. For example, in C++, you only need a JSON headers-only library, whereas IMAP is meh—only Linux, or clunky usage. Btw, I made one from scratch (IMAP Parser). 3. Goodies like offloading HTTP to the mobile network stack, which supports TLS 1.3 and offline (background) sync, compared to manually extracting certificates from an IMAP connection to validate against the device keychain. It's just 10x easier.
replies(1): >>43542512 #
2. calvinmorrison ◴[] No.43542512[source]
It's designed well, from the ground up with a lot of lessons learned from some pretty serious email junkies. Anyone hemming and hawing about JSON being selected as the transport encoding or whatever is just raising silly points. You could do JMAP over protobuf too probably if you cared, but the whole point (IMO) is to get the hell away from unstructured protocols.
replies(1): >>43543050 #
3. Mailtemi ◴[] No.43543050[source]
Yep, there's always someone ranting about JSON inefficiencies, which I don't observe at all :)
replies(1): >>43548802 #
4. calvinmorrison ◴[] No.43548802{3}[source]
oh i mean i rant about it too but its like, a byproduct of the real goal, and since most clients are running some type of webapp it makes sense. you could definitely use something like messagepack or protobuf if you had an extension that negotiates it.