From 9f180a1bc5e6e40c2b97b72ab15395f375861386 Mon Sep 17 00:00:00 2001 From: Luke Plant Date: Fri, 20 Apr 2007 11:24:53 +0000 Subject: [PATCH] Added client IP address to the e-mail that is sent when an internal broken link is detected. This is to help with filtering out misbehaving bots. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5043 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/middleware/common.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/django/middleware/common.py b/django/middleware/common.py index 6283214fad..9891b1efad 100644 --- a/django/middleware/common.py +++ b/django/middleware/common.py @@ -66,8 +66,10 @@ class CommonMiddleware(object): path = request.get_full_path() if referer and not _is_ignorable_404(path) and (is_internal or '?' not in referer): ua = request.META.get('HTTP_USER_AGENT', '') + ip = request.META.get('REMOTE_ADDR', '') mail_managers("Broken %slink on %s" % ((is_internal and 'INTERNAL ' or ''), domain), - "Referrer: %s\nRequested URL: %s\nUser agent: %s\n" % (referer, request.get_full_path(), ua)) + "Referrer: %s\nRequested URL: %s\nUser agent: %s\nIP address: %s\n" \ + % (referer, request.get_full_path(), ua, ip)) return response # Use ETags, if requested.