I'm trying to parse some date strings which I receive in the following format using Joda Time
Sat, 08 Dec 2012 00:00:00 CST
Looking at the documentation, DateTimeFormat won't handle the parsing of this due to the time zone name been ambiguous. Given I have no control over the data strings I'm receiving, what is the best/simplest way to parse this into DateTime object?
Edit: I know this is Central Time Zone (North America) rather than one of the other possible time zones CST may refer too.