Dijji / XstReader

Xst Reader is an open source viewer for Microsoft Outlook’s .ost and .pst files, written entirely in C#. To download an executable of the current version, go to the releases tab.
Microsoft Public License
479 stars 70 forks source link

Search #16

Closed ElViajero2019 closed 4 years ago

ElViajero2019 commented 4 years ago

Nice tool, works great. Is there a function to search for specific messages?

thanks,

Dijji commented 4 years ago

There isn't. However, it would be fairly simple to add one that searched through headline information (subject, to, from). Would this be of any use to you? A full text search of email content is rather beyond the intended scope of the tool.

Dijji

ElViajero2019 commented 4 years ago

Hello and thanks. Yes! A search as you describe would be incredibly useful. Thanks again.

Dijji commented 4 years ago

This has been addressed in the release of Version 1.6

Let me know what you think.

flywire commented 4 years ago

Search works -yeah!!!

I think would be better highlighting matching messages and/or filtered list

Dijji commented 4 years ago

Thank you for the feedback, it is always much appreciated.

I could claim artistic differences (I believe that you can get everything done either way, e.g., searching backwards through 2010 for a mail with bread in the subject), but actually, my clincher here was degree of difficulty. Filtering or highlighting means searching the entire body of messages before you are, in theory, ready to present an answer, and for large message folders, this just takes too long. Outlook deals with this by presenting partial results, then adding to them as a background worker comes up with more. Pretty complex. But if you only look for one message at a time, the implementation is much simpler and you only get the delays in the extreme cases of long stretches between hits, not on every search through a large folder.

Dijji