Comment on Store (and access) old emails
joeldebruijn@lemmy.ml 2 months ago
I had roughly the same goals ( archive search 2 decades of mail) but approached it completely different: I export every mail to PDF with a strict naming convention.
- Backend: No mailserver, just storage and backup for files.
- Search: based on filenames FSearch and Void tools Everything. I could use local indexing on pdf content.
- Frontend: a pdf viewer.
atzanteol@sh.itjust.works 2 months ago
Pdf? You converted plain text to something designed to preserve formatting? But why?
You could use maildir and find things with “grep” or any mail client like Thunderbird.
joeldebruijn@lemmy.ml 2 months ago
I don’t know.
atzanteol@sh.itjust.works 2 months ago
Because email has metadata. From, to, sent date, subject, etc. Plus attachments that may be binary.
joeldebruijn@lemmy.ml 2 months ago
Must admit, those fields are precisely the ones I use in my filenaming convention. Other DMS put that in their databases but alas that’s just trading one stack for another.
Other ones put it in XMP metadata of the pdf themselves. But I guess the work involved would be similar.