To only allow registered members to use this:
In contact.php, find:
PHP Code:
if ($action == 'compose') {
ABOVE it, add:
PHP Code:
if ($bbuserinfo[userid]) {
Then find:
ABOVE it, add:
PHP Code:
} else {
eval("dooutput(\"".gettemplate('contact_error')."\");");
}
Edit the contact_error template to include "you need to be registered to use our contact form" or something like that. Should work.