On 15/05/2017 20:25, Richard Owlett wrote: > I have some emails sorted into several folders. > For each folder I need a list of date, subject, and message id. > There's got to be a tool for that and I'm just not using right search terms. > I haven't worked that problem in decades.
Not all messages have a Message-ID: field, some don't have a Date: field, and even Subject: is sometimes missing. That being said, grep provides a rudimentary solution. $ grep -r '^Date:\|^Subject:\|^Message-ID:' mail_folder Regards. _______________________________________________ support-seamonkey mailing list [email protected] https://lists.mozilla.org/listinfo/support-seamonkey

