Realname doesn't fit well with Contact module (http://drupal.org/project/contact), the backporting of features for Drupal7 core's Contact module.

Setting the new permission "Use users' personal contact forms" for Contact module, anonymous users can't use personal contact forms if Realname is enabled.

You can get something changing the line 276 in realname.module file from this:
if (!valid_email_address($user->mail)) {
to this:
if ($user->uid && !valid_email_address($user->mail)) {

but it still doesn't work completely.

I think that resolve this issue is a previous step for porting Realname to Drupal7.

Thanks.

Comments

dave reid’s picture

Status: Active » Fixed

This should be fixed now in CVS with the latest commit: http://drupal.org/cvs?commit=442298

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.