Author Topic: Unconfirmed IPs  (Read 1619 times)

paul

  • Posts: 41
    • View Profile
Unconfirmed IPs
« on: May 19, 2006, 04:29:10 am »
I'm getting hundreds of false signups everyday, I have confirmation on.  So they never make it to the list.  Is there anyway to find out the IP that signed up an unconfirmed users?

DW

  • Administrator
  • Posts: 3787
    • View Profile
    • https://legacy.listmailpro.com
Unconfirmed IPs
« Reply #1 on: May 19, 2006, 04:00:42 pm »
You may be able to view the IP by choosing to view "Unconfirmed" users in the User Database, then clicking Edit next to the entry.

You could then ban the user from subscribing with a line like this at the top of signup.php (any line after <?php )

if($_SERVER['REMOTE_ADDR']=='12.34.56.78') exit('you may not subscribe');

Regards
Dean Wiebe
ListMailPRO Author & Developer - Help | Support | Hosting

paul

  • Posts: 41
    • View Profile
Thanks Dean.
« Reply #2 on: May 19, 2006, 04:46:47 pm »
Thanks again.