On Tue, Aug 10, 2010 at 12:48:16AM +0300, Dennis Yurichev wrote: > > Is there any plugin or script which is able to collect time stamps of > all emails from some specific email address and to draw a statistical > chart answering to question: what hours correspondent is most active in?
The following will give you a text file that contains the date header for each message from cor in the current folder, one date per line. T ~f [email protected] ;| grep '^Date: ' > file.txt That's based on my mappings which are: T = <tag-pattern> ; = <tag-prefix> | = <pipe-message> I'm using maildir, but I assume it will work with any format. -- Monte
