Date timestamp = configDateFormatter.parse(lastchecktimestamp);
// Turn feed dates into something we can process.
DateFormat feedDateFormatter = DateFormat.getDateTimeInstance();
// get the feed data from the supplied address
SyndFeedInput input = new SyndFeedInput();
SyndFeed feed = input.build(new XmlReader(new URL(rssaddress)));
//System.out.println(feed);
// check all the items to see if we have seen them before
List entries = feed.getEntries();
for(Object entry: entries){