Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | worker: move shared code to lib | Robin Jarry | 2023-10-28 | 1 | -5/+5 |
| | | | | | | | | | | | | | Avoid importing code from worker/lib into lib. It should only be the other way around. Move the message parsing code used by maildir, notmuch, mbox and the eml viewer into a lib/rfc822 package. Adapt imports accordingly. Signed-off-by: Robin Jarry <robin@jarry.cc> Reviewed-by: Koni Marti <koni.marti@gmail.com> Tested-by: Moritz Poldrack <moritz@poldrack.dev> Tested-by: Inwit <inwit@sindominio.net> | ||||
* | model: change flags array to bitmask | Robin Jarry | 2023-01-04 | 1 | -2/+2 |
| | | | | | | | Using a list of integers is not optimal. Use a bit mask instead. Signed-off-by: Robin Jarry <robin@jarry.cc> Acked-by: Tim Culverhouse <tim@timculverhouse.com> | ||||
* | lib: implement an eml message view | Koni Marti | 2022-11-09 | 1 | -0/+80 |
Implement a MessageView representation for eml data that are not stored in a message store. With this, we can display any rfc822 message data in the message viewer. Signed-off-by: Koni Marti <koni.marti@gmail.com> Acked-by: Robin Jarry <robin@jarry.cc> |