diff options
Diffstat (limited to 'Mailman/Cgi/options.py')
-rw-r--r-- | Mailman/Cgi/options.py | 4 |
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 |