FYI if you add an additional IF statement to the plugin you can use this to move only people with a certain email address type to a different group... such as:
Code:
if (preg_match("/mil$/" , $vbulletin->userinfo['email']))
Will only move new users from military addresses or...
Code:
if (preg_match("/edu$/" , $vbulletin->userinfo['email']))
Will work for users with .edu addresses.