8 fixRFC822filemtime - Set a file's last modification time, which contains an email message in RFC-822 format, to the email's Date
22 if [ "${file:0:1}" != / ]
27 date=`egrep -im1 ^Date: "$file" | cut -f2- -d: | sed -e 's/\r//'`
31 tstamp
=`date +%s -d "$date"`
35 touch -t `date +%Y%m%d%H%M.%S -d "@$tstamp"` "$file"