From c3e67b675b5bb4ca4afeb0713eaccf7601c825e1 Mon Sep 17 00:00:00 2001 From: Michael Poole Date: Fri, 14 Jan 2005 20:11:54 +0000 Subject: [PATCH] More RELEASE.NOTES updates; add missing feature docs; +U typo fix. git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/trunk@1297 c9e4aea6-c8fd-4c43-8297-357d70d61c8c --- ChangeLog | 11 +++++++++++ RELEASE.NOTES | 47 ++++++++++++++++++++++++++++++++++++++++++--- doc/readme.features | 32 ++++++++++++++++++++++++++++++ ircd/channel.c | 2 +- 4 files changed, 88 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 08a88e4..cf48a3d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +2005-01-14 Michael Poole + + * RELEASE.NOTES: Further updates (mention Pseudo blocks, clarify + CAP comment, mention named /stats, list config heteromorphisms. + + * doc/readme.features: Document HIS_STATS_a, HIS_STATS_L, + HIS_STATS_R, LOCAL_CHANNELS, TOPIC_BURST. + + * ircd/channel.c (mode_parse_apass): Change old mention of +u mode + to say +U. + 2005-01-13 Michael Poole * RELEASE.NOTES: Update for 2.10.12. diff --git a/RELEASE.NOTES b/RELEASE.NOTES index 0ef13b7..ac9a6ea 100644 --- a/RELEASE.NOTES +++ b/RELEASE.NOTES @@ -1,5 +1,5 @@ Release notes for ircu2.10.12 -Last updated: 13 Jan 2005 +Last updated: 14 Jan 2005 Written by Michael Poole Based on earlier documents by Kev and Braden . @@ -41,16 +41,57 @@ that you cannot be deopped in channel by someone who you opped. More than one hashing mechanism is now supported for oper passwords, and a new tool (ircd/umkpasswd) is provided to generate them. +Commands that send messages to specified services may be defined in +the configuration file by using Pseudo blocks. This lets users use +commands like /X or /CHANSERV from their client, without tying the +admin to a particular arrangement or naming of services. + Clients may negotiate extensions and changes to the standard IRC client protocol by using the CAP command during registration. There does not appear to be any documentation for the protocol, which should -not matter since ircu does not currently features that do anything. +not matter since ircu does not currently implement capabilities that +affect the protocol. + +The /stats command accepts string identifiers in addition to +single-character identifiers. For example, "/stats access" shows the +same data as "/stats i". Supported names are shown by /stats. New +/stats options are: /stats a (nameservers), to list DNS nameservers in +use; /stats L (modules), to list loaded modules; and /stats R +(mappings), to list privmsg helper commands defined by Pseudo blocks. +By default, all of these are hidden from normal users. Configuration Changes: As mentioned above, the configuration file format has changed radically. Please consult doc/example.conf for details on the -new format. +new format. Some prominent changes follow. + +The old contents of H: lines have been merged into the Connect block +that describes the peer server(s) that should be allowed to hub. + +Two default virtual host addresses may be specified, one for IPv4 +sockets and one for IPv6 sockets. + +Nickname jupes have their own blocks, and do not share structure with +UWorld server declarations. + +Operator connection classes and individual operator blocks may be +assigned privileges, rather than having them controlled globally. +Because of this, the feature settings that controlled the privileges +globally have been removed. + +The maximum number of clients allowed per IP may be set in a Client +block (the equivalent of C: lines). + +New feature settings (see doc/readme.features for explanations): +ANNOUNCE_INVITES, HIS_STATS_L, HIS_STATS_a, HIS_STATS_R, +LOCAL_CHANNELS, TOPIC_BURST. + +Deleted features, since they had no effect even in 2.10.11: AUTOHIDE, +HIS_DESYNCS, TIMESEC. + +Deleted features since they are now controlled by other configuration +entries: VIRTUAL_HOST, oper and locop privilege features. Compile Time Options: diff --git a/doc/readme.features b/doc/readme.features index 0157be7..17bda8c 100644 --- a/doc/readme.features +++ b/doc/readme.features @@ -489,12 +489,24 @@ HIS_TRACE As per UnderNet CFV-165, this removes /TRACE from users. +HIS_STATS_a + * Type: boolean + * Default: TRUE + +As per UnderNet CFV-165, this removes /STATS a from users. + HIS_STATS_l * Type: boolean * Default: TRUE As per UnderNet CFV-165, this removes /STATS l from users. +HIS_STATS_L + * Type: boolean + * Default: TRUE + +As per UnderNet CFV-165, this removes /STATS L from users. + HIS_STATS_c * Type: boolean * Default: TRUE @@ -573,6 +585,12 @@ HIS_STATS_r As per UnderNet CFV-165, this removes /STATS r from users. +HIS_STATS_R + * Type: boolean + * Default: TRUE + +As per UnderNet CFV-165, this removes /STATS R from users. + HIS_STATS_d * Type: boolean * Default: TRUE @@ -816,3 +834,17 @@ ANNOUNCE_INVITES If set, send RPL_ISSUEDINVITE (345) to a channel's operators to announce when someone is invited to the channel. + +LOCAL_CHANNELS + * Type: boolean + * Default: TRUE + +If set, allow users to create local channels. + +TOPIC_BURST + * Type: boolean + * Default: FALSE + +If set, send the current topic value and timestamp for channels during +burst. This generally only makes sense for hubs to use, and it causes +a large increase in net.burst size. diff --git a/ircd/channel.c b/ircd/channel.c index a9968dc..1a3963d 100644 --- a/ircd/channel.c +++ b/ircd/channel.c @@ -2631,7 +2631,7 @@ mode_parse_apass(struct ParseState *state, int *flag_p) "\" to remove the password and then immediately set a new one. " "IMPORTANT: YOU CANNOT RECOVER THIS PASSWORD, EVER; " "WRITE THE PASSWORD DOWN (don't store this rescue password on disk)! " - "Now set the channel user password (+u)."); + "Now set the channel user password (+U)."); } } else { /* remove the old apass */ *state->chptr->mode.apass = '\0'; -- 2.20.1