aboutsummaryrefslogtreecommitdiffstats
path: root/token.cgi
Commit message (Collapse)AuthorAgeFilesLines
* Bug 173761 Need ability to always require loginbugreport%peshkin.net2002-11-271-1/+1
| | | | | patch by joel r=gerv, a=justdave
* Bug 163114 - Templatise all calls to DisplayError. Patch D (the last one). ↵gerv%gerv.net2002-10-061-5/+1
| | | | Patch by gerv; r=burnus.
* Bug 164038 - token.cgi: Cancel token messages should be moved into the ↵gerv%gerv.net2002-09-301-42/+25
| | | | templates. Patch by burnus; r=gerv.
* bug 157756 - Groups_20020716_Branch Tracking : > 55 groups now supportedbugreport%peshkin.net2002-09-231-0/+2
| | | | r=bbaetz, gerv
* Bug 76923 - Don't |use diagnostics| (its really expensive at startup time)bbaetz%student.usyd.edu.au2002-08-261-1/+0
| | | | r=joel x2
* Bug 159901 - token.cgi: localize strings send to message.html.tmpl. Patch by ↵gerv%gerv.net2002-08-101-12/+4
| | | | burnus; r=gerv.
* Bug 151053, ConnectToDatabase/quietly_check_login sometimes not calledbbaetz%student.usyd.edu.au2002-06-171-0/+1
| | | | | early enough r=mattyt, jouni
* Bug 138588 - change to use new template structure. Patch by gerv, r=myk, ↵gerv%gerv.net2002-04-241-16/+9
| | | | afranke.
* Remaining pieces of Bug 23067 from yesterday... no idea why the first ↵justdave%syndicomm.com2002-04-021-1/+128
| | | | commit didn't pick these up.
* Bug 126789 - templatise token.cgi. r=bbaetz, mattyt.gerv%gerv.net2002-03-161-61/+29
|
* Bug 95732 - remove logincookies.cryptpassword, and invalidate cookies frombbaetz%student.usyd.edu.au2002-02-041-0/+2
| | | | | | | the db when required instead. (Also fixes bug 58242 as a side effect) r=myk, kiko
* Fix for bug 108982: enable taint mode for all user-facing CGI files.justdave%syndicomm.com2002-01-201-1/+3
| | | | | Patch by Brad Baetz <bbaetz@student.usyd.edu.au> r= jake, justdave
* Fix for bug 95731: "INSERT INTO shadowlog" failed because "Table 'shadowlog' ↵jake%acutex.net2001-08-171-1/+1
| | | | | | | not locked", fixed typo in lock tables command. Patch by Myk Melez <myk@mozilla.org> r= jake@acutex.net
* Fix for bug 77473, bug 74032, and bug 85472: Passwords are no longer stored ↵justdave%syndicomm.com2001-07-111-0/+243
in plaintext in the database. Passwords are no longer encrypted with MySQL's ENCRYPT() function (because it doesn't work on some installs), but with Perl's crypt() function. The crypt-related routines now properly deal with salts so that they work on systems that use methods other than UNIX crypt to crypt the passwords (such as MD5). Checksetup.pl will walk through your database and re-crypt everyone's passwords based on the plaintext password entry, then drop the plaintext password column. As a consequence of no longer having a plaintext password, it is no longer possible to email someone their password, so the login screen has been changed to request a password reset instead. The user is emailed a temporary identifying token, with a link back to Bugzilla. They click on the link or paste it into their browser and Bugzilla allows them to change their password. Patch by Myk Melez <myk@mozilla.org> r= justdave@syndicomm.com, jake@acutex.net