I know that reversing the hash would be quite time consuming, but isn't there a privacy concern with including email hashes in the data dump. If I want to know if a person with a specific email address has a stackoverflow account, all I have to do is load the data into an SQL database and:
Select * from users where emailhash = md5('email@example.com');
and if I got any results then I would know that an account exists for email@example.com.