aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman/Cgi/options.py
diff options
context:
space:
mode:
authorMark Sapiro <mark@msapiro.net>2010-02-04 17:23:54 -0800
committerMark Sapiro <mark@msapiro.net>2010-02-04 17:23:54 -0800
commit444845fdff42baec439120654e869d56cc891613 (patch)
tree16c763ce5fa0a29948c1c68896e58cfbff2476d4 /Mailman/Cgi/options.py
parent342ced1457cd51d6181a506648f62a800ff18bc7 (diff)
downloadmailman2-444845fdff42baec439120654e869d56cc891613.tar.gz
mailman2-444845fdff42baec439120654e869d56cc891613.tar.xz
mailman2-444845fdff42baec439120654e869d56cc891613.zip
We now give an HTTP 401 status for authentication failures from admin,
admindb, private and options logins.
Diffstat (limited to 'Mailman/Cgi/options.py')
-rw-r--r--Mailman/Cgi/options.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Mailman/Cgi/options.py b/Mailman/Cgi/options.py
index 3c736483..cb6c2fa2 100644
--- a/Mailman/Cgi/options.py
+++ b/Mailman/Cgi/options.py
@@ -1,4 +1,4 @@
-# Copyright (C) 1998-2008 by the Free Software Foundation, Inc.
+# Copyright (C) 1998-2010 by the Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
@@ -252,6 +252,8 @@ def main():
'Login failure with private rosters: %s',
user)
user = None
+ # give an HTTP 401 for authentication failure
+ print 'Status: 401 Unauthorized'
loginpage(mlist, doc, user, language)
print doc.Format()
return