diff options
| author | 2010-09-06 13:47:36 -0400 | |
|---|---|---|
| committer | 2010-09-06 13:51:06 -0400 | |
| commit | bed2cd84f2a3f34763cea677baf5ab7e073c41b2 (patch) | |
| tree | 8cfdec30b06e3261848012a926de900a5480832d /docs | |
| parent | Change m_passforward to use PopulateInfoMap (diff) | |
Update m_flatfile_channels to be more robust
Enable storage of registered channels without permanent channels, or vice versa
Only set the dirty bit if a channel that is written to the database gets its mode or topic changed, rather than any channel or user
Move NukeChannel to core and put announcets back in options
Allow sending mode merges via the protocol interface
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/inspircd.conf.example | 4 | ||||
| -rw-r--r-- | docs/modules.conf.example | 13 |
2 files changed, 12 insertions, 5 deletions
diff --git a/docs/inspircd.conf.example b/docs/inspircd.conf.example index 524c79bfc..2c689d02a 100644 --- a/docs/inspircd.conf.example +++ b/docs/inspircd.conf.example @@ -524,6 +524,10 @@ # it will just message the user normally. ircumsgprefix="no" + # announcets: If set to yes, when the TimeStamp on a channel changes, all users + # in channel will be sent a NOTICE about it. + announcets="yes" + # defaultbind: Sets the default for <bind> tags without an address. Choices are # ipv4 or ipv6; if not specified, IPv6 will be used if your system has support, # falling back to IPv4 otherwise. diff --git a/docs/modules.conf.example b/docs/modules.conf.example index 79eca5f96..ba3f82fc6 100644 --- a/docs/modules.conf.example +++ b/docs/modules.conf.example @@ -681,7 +681,14 @@ # so that their state (topic/modes) is not lost on ircd restart # #<module name="m_flatfile_channels.so"> -#<chandb dbfile="data/channels.db"> +#-#-#-#-#-#-#- FLATFILE CHANNEL DATABASE CONFIGURATION -#-#-#-#-#-#-#-# +# dbfile - The file to store the channels in +# storeregistered - Whether or not to store registered channels +# storepermanent - Whether or not to store permanent channels +# Note that even if storeregistered and storepermanent are both +# enabled, a channel that is both registered and permanent will still +# only be stored once. +#<chandb dbfile="data/channels.db" storeregistered="yes" storepermanent="no"> #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# # Channel state storage module: stores channels in an SQL database and @@ -2020,10 +2027,6 @@ # be flattened when shown to non-opers. flatlinks="no" - # announcets: If set to yes, when the TimeStamp on a channel changes, all users - # in channel will be sent a NOTICE about it. - announcets="yes" - # allowmismatched: Setting this option to yes will allow servers to link even # if they don't have the same VF_OPTCOMMON modules loaded. Setting this to # yes may introduce some desyncs and weirdness. |
