I Signed up with the Wrong email address, how do i change my email from my work email to my personal email address?
Philip Champon
[ Editor ]
Currently, the only way to do this is through the database, ie
$ mongo diaspora-development
> user = db.users.findOne( { “email” : “your@email.com” } )
> user.email = “your@newemail.net”
> db.users.save(user)
> exit