To include the IP in the email.
Go to the Plugin Manager in your AdminCP
Click edit for "register_addmember_process" under Is Bot product
Find:
PHP Code:
$isbot_email = htmlspecialchars_uni($vbulletin->GPC['email']);
Below it add:
PHP Code:
$isbot_ipaddy = IPADDRESS;
next find:
PHP Code:
. ' (' . $isbot_timediff . ' ' . $vbphrase['isbot_seconds_transpired'] . ')';
REPLACE it with:
PHP Code:
. ' (' . $isbot_timediff . ' ' . $vbphrase['isbot_seconds_transpired'] . ')'
. ' The IP Address is: ' . $isbot_ipaddy ;