JavaBlogs
Disclaimer
This analysis is based on observing my blog's interaction with JavaBlogs. JavaBlogs as you know is a popular aggregator for Java feeds.

Overview
Often many of us see that old posts of our blog keeps popping up in JavaBlogs.

Details
RSS versions before 2.0 did not have GUID. So preventing duplicate posts is slightly harder then RSS 2.0 compliant feeds. My feed is RSS 2.0 compliant. Specifically it sends a GUID as an element of item. GUID is supposed to be globally unique. So if I change my feed url but keep my GUID same it shouldn't matter.

What does WordPress send as GUID? It sends the permalink to the post as GUID like http://blog.taragana.com/index.php/archive/whats-up-with-republican-java-geeks/.

Technically they are globally unique. Unless I change my site structure. So if I start using .htaccess and change the permalink format to http://blog.taragana.com/archive/whats-up-with-republican-java-geeks/ then I can expect reposting to happen, right? Yes, it does happen in JavaBlogs and it has happened to me once or twice. However it can still be prevented. More on it in a later post.
In any case WordPress can also improve this situation by using a alpha-numeric GUID value instead of permalinks, which may not be so permanent after all.

The more common problem is something much simpler. Suppose you normally syndicate 20 latest items from your feed. Then you suddenly decide to syndicate more say 30. Now suddenly lot of the old feeds are republished again! The GUID hasn't changed nor the date, only the item count has changed in the feed. Probably the reverse (reducing the number of items in a feed) is also true, cannot remember for sure.

It appears JavaBlogs is maintaining a database of past feed items. So it shouldn't be hard to identify that the post is not new.
It looks like some simple bug. Hopefully it will be fixed soon.

This article was initiated by a comment from Mr. Charles Miller, developer at JavaBlogs.

PS. On a different note I think the policy to display a feed when its date has been updated is correct implementation by JavaBlogs.