Michael Stum is way off here, but he has a big green check mark that means his answer will forever appear as the "correct" one despite the mistakes...
Let's handle the second part of his answer first, which is a little off-topic. He's just completely wrong here. Given a file from an "open source site" and the MD5sum of that file you can't make another different file with the same hash. There may some day be a breakthrough that makes this possible, but that day is not here and may be years or decades away.
Why does Michael think this is possible? A simple mistake. He's read that it's possible to create two different files with the same MD5sum by forcing a certain type of collision, this result was reported in 2004 and has been improved since. But, this is not the same problem. In cryptography the type of attack Michael claimed was possible is called a pre-image attack, and for MD5 there is as yet no practical pre-image attack, where as what was actually found is merely a collision, the easiest type of attack to find against a hash, and no doubt a reason not to choose MD5 for new applications, but not, and this is worth emphasising, NOT a reason not to trust MD5sums provided for software downloads, nor a reason (on its own) to avoid MD5 in password hashes.
OK, now the more relevant earlier part of Michael's answer. Here's the trouble: Spammers and similar Attackers don't care that one person in a billion has an email address that looks like an exercise in obfuscated Perl - they want the bulk of addresses. Given a list of 5 million Gravatar hashes, at least 4 million are hashes of fairly ordinary looking email addresses like "firstname.lastname@bigcorp.com". firstname.lastname@example.com". These are 128-bit hashes, so any arbitrary string has a one in 2^128 chance of hashing to the same value, but that's a very big number and there simply aren't 2^128 plausible stereotypical email addresses. So long as we only want a reasonable factor like say 50% chance of reversing, we can brute force this problem. Try the ten million most likely firstname / lastname combinations, with up to a million domain names taken from registrar's lists, and you have 10 billion values to try. For a one shot attack you just do it brute-force, 10 billion MD5 calculations is childs play. But if you were a spammer and had access to a crawler looking for fresh Gravatar URIs every day, you'd build a rainbow table so that you can spread the compute time over a potentially unlimited supply of hashes.
Now, is there a way around this? Well, yes and no. There's no way to fix this without changing something. But the minimal change is fairly painless. The way to defeat rainbow tables is to add salt and waste CPU cycles, just as with passwords. You can add salt by asking everyone to pick a favourite word, and type that in along with their email address when generating a Gravatar or an account that needs a Gravatar. It doesn't matter what word they pick, so long as its always the same they get the same Gravatar. Now an attacker must guess not only a plausible email address, but also a random word. That makes their chances of success orders of magnitude smaller. Meanwhile you also switch from MD5 (designed to be fast) to a password hash (designed to be slow). When calculating the hash you now work a little harder, but the attacker must work proportionally harder too. If your CPU takes 0.5 seconds to generate your gravatar when creating an account, the attacker must waste 0.5 seconds per guess, and that will soon exhaust him.
