aboutsummaryrefslogtreecommitdiffstats
path: root/modules/nickserv/resetpass.c
Commit message (Expand)AuthorAgeFilesLines
* Move vendor field to a compile time macroGravatar Austin Ellis2017-10-301-1/+1
* NickServ/set_nopassword: Add NOPASSWORD option and various failsafes. Also s...Gravatar Ben C2017-09-211-22/+29
* Make AuthCookie and various other password reset keys vastly more monstrous a...Gravatar Ben C2017-07-171-2/+2
* NickServ: Add HISTORY support to a few more modules.Gravatar Ben C2017-05-131-1/+10
* Delete sendpass metadata whenever setpass key is deletedGravatar Alex Iadicicco2014-01-171-0/+2
* nickserv/resetpass: Allow specifying any grouped nickname•••Closes atheme#191 Gravatar Mantas Mikulėnas2013-09-201-10/+10
* Change gen_pw() to random_string() and return to the old behaviour.Gravatar William Pitcock2011-01-181-2/+2
* Supply intent information when performing module unload operations.•••There are presently two intents for unload operations, these are MODULE_UNLOAD_INTENT_PERM which indicates a permanent unload, and MODULE_UNLOAD_INTENT_RELOAD which indicates that a module is being reloaded (usually for a code upgrade). This allows the module to know when it should stash persistence data using the mowgli.global_data classes or when it should just destroy all data records. Gravatar William Pitcock2010-12-031-1/+1
* Remove "help/" from the help path of all modules that contain commands.•••This is just a waste of space as it is stripped out in src/help.c anyway. Since we've re-done the help stuff anyway, might as well do this too. Gravatar JD Horelick2010-09-221-1/+1
* nickserv: Port to new command framework.Gravatar JD Horelick2010-09-221-7/+1
* nickserv: Update to new command API.Gravatar JD Horelick2010-09-201-4/+3
* Backed out changeset 74f66a7c2587Gravatar JD Horelick2010-07-231-3/+5
* Finish migrating nickserv to the new command processing stuff.Gravatar JD Horelick2010-07-191-5/+3
* Remove a bunch of the SVN Id's from the comments as well while•••we're at it. Sidenote: Yay Vim. Gravatar JD Horelick2010-06-041-1/+0
* Replace the $Id crap that hasn't really been used in 3 years with•••PACKAGE_STRING. Gravatar JD Horelick2010-06-041-1/+1
* Logging rework and snoop() removal from nickserv.Gravatar JD Horelick2010-01-111-6/+4
* Use C99 booleans (<stdbool.h>, bool, true, false).Gravatar Jilles Tjoelker2008-12-131-1/+1
* Move metadata list to object_t.•••Main api changes: - type parameter to metadata_*() function is gone - now need to use obj(object)->metadata instead of object->metadata - hook_metadata_change_t only called for myuser_t, type field gone The functions are still in account.h as long as myuser_t is a special case. Gravatar Jilles Tjoelker2008-10-251-3/+3
* Change nickname to account in various places where no particular nick is affe...Gravatar Jilles Tjoelker2007-12-261-8/+8
* [svn] Added gettext's _() around command_fail and command_success_* callsGravatar pippijn2007-03-051-5/+5
* [svn] command_fails to gettextGravatar pippijn2007-03-051-6/+6
* [svn] Added N_() around all command descriptionsGravatar pippijn2007-03-051-3/+3
* [svn] nickserv resetpass/return: clear setpass keyGravatar jilles2007-03-041-2/+3
* [svn] nickserv•••resetpass: snoop made more consistent return: snoop added (already walloped) sendpass: snoop added Gravatar jilles2007-03-041-3/+4
* [svn] added missing vim optionsGravatar pippijn2007-03-031-2/+4
* [svn] added vim options to the end of each C fileGravatar pippijn2007-03-031-2/+6
* [svn] Use the new sourceinfo name functions.Gravatar jilles2006-10-021-5/+5
* [svn] Make has_priv() and has_any_privs() take sourceinfo_t *•••instead of user_t *. The new functions has_priv_user() and has_any_privs_user() take user_t *. Gravatar jilles2006-10-011-4/+4
* [svn] Change logcommand() to take sourceinfo_t * instead of service_t *, user...•••logcommand_user() takes service_t *, user_t * as before Gravatar jilles2006-09-291-6/+6
* [svn] - convert NickServ to command_fail()/command_success_nodata().Gravatar nenolod2006-09-251-11/+10
* [svn] Merged in sourceinfo changes to the services layer.Gravatar pippijn2006-09-101-29/+27
* [svn] Use MODULE_USE_SYMBOL everywhere.•••This commit brought to you by: sed -i.bak 's/\([^[:space:]]*\) = module_locate_symbol(\(".*"\), \(".*"\));/MODULE_USE_SYMBOL(\1, \2, \3);/' and manual editing to put them first everywhere. Gravatar jilles2006-07-031-4/+5
* [svn] Rework of fixing of warnings, port fixes over to userserv instead of be...Gravatar w00t2006-04-141-17/+12
* [svn] Strict fixes.Gravatar w00t2006-04-141-11/+16
* [svn] sed -i.bak -e 's/user_find(origin)/user_find_named(origin)/' modules/*/...•••This should fix most of the user_find()s that should be user_find_named()s. Gravatar jilles2006-01-191-3/+3
* [svn] Make it such that "Invalid parameters specified for \2<command>\2."•••only has to appear in language files once. Gravatar jilles2006-01-041-3/+3
* [svn] Change SRA/services root operator to SOPER/services operator in messages.•••Show operclass in ns/us/cs status. Gravatar jilles2005-12-291-4/+4
* [svn] Change is_sra() to is_soper() (has an operator{} block in atheme.conf).•••Compatibility macro is_sra(mu) (has_priv_myuser(mu, PRIV_ADMIN)). Gravatar jilles2005-12-281-3/+3
* [svn] Remove some is_sra() for privilege.•••ns/us drop: require just user:admin ns/us resetpass/sendpass: require general:admin for operation on SRA ns/us resetpass: require user:mark for operation on marked account Gravatar jilles2005-12-271-6/+6
* [svn] Add code for fine grained services operator privileges.•••From the outside, there is still only IRCop and SRA. IRCops can probably do a bit more than before. There's still a little is_sra() for privs left. Gravatar jilles2005-12-271-3/+3
* [svn] crypto: Add password encryption support. (SENDPASS is temporarily broken)Gravatar alambert2005-11-081-4/+4
* [svn] Bugfix RESETPASS. We need to figure out what newpass is before we notic...Gravatar pfish2005-11-081-4/+4
* [svn] oops, reuse newpassGravatar pfish2005-11-081-6/+7
* [svn] Only use gen_pw when we need to to avoid leaking memory.Gravatar pfish2005-11-081-3/+4
* [svn] Fix a minor memory leak when a SRA resets a pass.Gravatar pfish2005-11-081-2/+3
* [svn] Add command logging to nickserv.Gravatar jilles2005-11-061-4/+6
* [svn] Let's be consistent with our wallops notifications.Gravatar pfish2005-11-031-4/+4
* [svn] More services root protection: Only SRA's can reset/sendpass another ro...•••You can't RETURN a SRA's nickname. Gravatar pfish2005-11-011-2/+8
* [svn] Phase 2/final of the NickServ help system changeover.Gravatar pfish2005-10-041-2/+5
* [svn] Phase 1 of help system change.Gravatar pfish2005-10-041-3/+3