Rated 4 out of 5 stars

I was having a problem with the %datelocal% Reserved word. When a message was sent from a comcast.net server Smart Template was interpreting the time zone incorrectly making the tame stamp bogus. I was able to fix it for my purposes by inserting the following at line 418.
//Patch to correctly handle comcast.net emails.
if (timezone == 000)
{
timezone = -300;
}

I'm sure this will cause a problem if an email was actually from the timezone 000 but it fixes the problem for my purposes.

Thank You