I would like to run a check on the IP-adress when users post with django comments.
I can easily override and customize the form used by django.comments, but I need access to the request object to add an IP-test to its clean(). Is it possible to get access to this in a clean way?
An alternative could be to check the IP when recieving the save signal, but then the only way to abort the save seems to be returning a code 400 to the user.