aboutsummaryrefslogtreecommitdiffstats
path: root/modules/nickserv/info.c
Commit message (Expand)AuthorAgeFilesLines
* Move vendor field to a compile time macroGravatar Austin Ellis2017-10-301-1/+1
* NickServ/info: In the services log channel, show the account name.Gravatar Ben C2017-10-071-1/+4
* NickServ/set_nopassword: Add NOPASSWORD option and various failsafes. Also s...Gravatar Ben C2017-09-211-5/+12
* NickServ/info: If you run INFO without a nick or account name argument, the d...Gravatar Ben C2017-08-171-7/+5
* Improve both the header and footer for ChanServ INFO, GroupServ INFO, and Nic...Gravatar Ben C2017-08-101-3/+24
* NickServ/info: Make the colons line up the way they do in ChanServ INFO and G...Gravatar Ben C2017-08-101-26/+26
* NickServ/info: Make the flags display in ALL CAPS and without commas, the way...Gravatar Ben C2017-08-101-30/+30
* NickServ: Add NOTIFYMEMO option (MU_NOTIFYMEMO).Gravatar Ben C2017-03-081-0/+7
* nickserv/info: Update copyright.Gravatar Ben C2017-01-151-2/+2
* NickServ: Add set options EmailNotify, NotifyAcl, and NotifySet. They otherw...Gravatar Ben C2017-01-151-0/+21
* nickserv/set_enforcetime: Show enforcement grace period in INFO.Gravatar Ben C2016-09-301-0/+2
* NickServ: Add STRICTACCESS option.Gravatar Ben C2016-09-091-0/+7
* Revert "nickserv/info: Only show logins list if there are any logins."•••This reverts commit b8aa312f80857a359fb2d203ca6f8fc21afd1d15. Place this code logic into user_show_all_logins itself. Gravatar Ben C2016-05-291-1/+1
* nickserv/info: Only show logins list if there are any logins.Gravatar Ben C2016-05-291-1/+1
* nickserv/info: Make INFO use user_show_all_logins as well.Gravatar Ben C2016-05-261-17/+5
* nickserv: Removed some commented out code that is no longer used in IDENTIFY ...Gravatar Ben C2016-05-211-12/+0
* nickserv: In INFO, IDENTIFY, and failed ID, show the logins with the full nic...Gravatar Ben C2016-05-211-11/+19
* nickserv/info: Same thing for the "Real Addr" line.Gravatar Ben C2016-03-171-1/+1
* nickserv/info: "X founder, Y other" will now show on a self "/ns info" command.Gravatar Ben C2016-03-171-1/+1
* nickserv/info: Flags output is now in alphabetical order.Gravatar Ben C2016-03-141-21/+32
* nickserv/info: fix some unsafe calls to strcat().Gravatar William Pitcock2014-08-081-4/+4
* Remove all trailing whitespaceGravatar Rylee Fowler2014-07-081-1/+1
* Call a hook when doing /ns info on a non-existant nick.Gravatar Errietta Kostala2014-05-111-1/+8
* nickserv/{info,status}: show entity ID in 'ACC' and 'INFO'•••As in issue #253, it would be useful to uniquely identify users across account renames and such. Privacy issues (/ns info ?<eid>) should not be a problem, since there already are other ways to chase account renames. Gravatar Mantas Mikulėnas2014-01-161-4/+1
* nickserv/info: Hide "vHost unassigned.." from users without user:auspexGravatar Alex Iadicicco2013-12-281-1/+1
* nickserv/info: Remove unneded lastvhostchange variableGravatar Alex Iadicicco2013-12-281-1/+1
* Use get_source_name for vHost assignerGravatar Alex Iadicicco2013-12-281-15/+3
* nickserv/info: Reformat vHost output to fit on one line•••Additionally, cache user:auspex check in has_user_auspex Gravatar Alex Iadicicco2013-12-281-36/+47
* Revert permission required for viewing vhosts back to user:auspexGravatar Shockk2013-12-291-1/+1
* Add vhost timestamp and assigner info to HostServ and to NS INFO outputGravatar Shockk2013-12-281-2/+38
* Fixed not showing NOGREETGravatar Alyx Wolcott2013-04-131-0/+7
* nickserv: stringref clean (ref. #60)Gravatar William Pitcock2012-10-041-1/+1
* Show REGNOLIMIT flag in nickserv infoGravatar Stephen Bennett2012-06-291-0/+7
* modules/*: replace config_options.time_format reference with TIME_FORMAT define•••POSIX requires that format strings be static. Gravatar William Pitcock2012-03-021-8/+8
* nickserv/info: try providing a larger buffer to work withGravatar William Pitcock2012-03-011-9/+9
* modules/*: chase ABI/API breakageGravatar William Pitcock2011-11-071-2/+2
* everything: use mowgli_strlcpy() and mowgli_strlcat().•••this removes any dependency on the non-standard C strlcat/strlcpy extension, as mowgli provides a strlcpy/strlcat now. Gravatar William Pitcock2011-08-301-2/+2
* Give entities a UID, and make them persistent for accounts and groupsGravatar Stephen Bennett2011-04-211-0/+5
* Add nickserv/set_nevergroup.•••This command will basically just prevent people randomly giving you flags in a group. You can still REGISTER groups, JOIN open groups and your flags can be modified once you're a member of the group. Gravatar JD Horelick2011-01-121-0/+7
* Remove deprecated since version 0.3 metadata_t.private.Gravatar William Pitcock2010-12-311-1/+1
* 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
* Add time_format config option allowing network owners to customize the time f...Gravatar JD Horelick2010-11-071-8/+8
* Remove the dlink code, it has now been entirely replaced by mowgli.list.•••The new mowgli.list code has been improved through usage in audacious and other places, and has many features that atheme has needed for some time. Gravatar William Pitcock2010-10-081-1/+1
* Use MOWGLI_LIST_LENGTH() instead of LIST_LENGTH().Gravatar William Pitcock2010-10-081-1/+1
* Replace LIST_FOREACH_* with the mowgli_iter framework.Gravatar William Pitcock2010-10-081-4/+4
* 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
* Migrate chanacs to myentity_t. This allows us to have chanacs lists containi...Gravatar William Pitcock2010-08-221-1/+1
* myuser->entity first step (moving the name) compiles.Gravatar Elly2010-08-211-11/+11