mirror of
https://github.com/anope/anope.git
synced 2026-06-25 16:46:37 +02:00
5136d4c415
Fixed typo in one of the nickserv block directives. git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1430 5417fbe8-f217-4b02-8779-1006273d7864
335 lines
11 KiB
Plaintext
335 lines
11 KiB
Plaintext
/*
|
|
* Example configuration file for Services. After making the appropriate
|
|
* changes to this file, place it in the Services data directory (as
|
|
* specified in the "configure" script, default /home/username/services)
|
|
* under the name "services.conf".
|
|
*
|
|
* The format of this file is fairly simple: three types of comments are supported:
|
|
* - All text after a '#' on a line is ignored, as in shell scripting
|
|
* - All text after '//' on a line is ignored, as in C++
|
|
* - A block of text like this one is ignored, as in C
|
|
*
|
|
* Outside of comments, there are three structures: blocks, keys, and values.
|
|
*
|
|
* A block is a named container, which contains a number of key to value pairs
|
|
* - you may think of this as an array.
|
|
*
|
|
* A block is created like so:
|
|
* foobar
|
|
* {
|
|
* moo = "cow"
|
|
* foo = bar
|
|
* }
|
|
*
|
|
* Keys are case insensitive. Values depend on what key - generally, information is
|
|
* given in the key comment. The quoting of values (and most other syntax) is quite
|
|
* flexible, however, please do not forget to quote your strings:
|
|
*
|
|
* "This is a parameter string with spaces in it"
|
|
*
|
|
* If you need to include a double quote inside a quoted string, precede it
|
|
* by a backslash:
|
|
*
|
|
* "This string has \"double quotes\" in it"
|
|
*
|
|
* Time parameters can be specified either as an integer representing a
|
|
* number of seconds (e.g. "3600" = 1 hour), or as an integer with a unit
|
|
* specifier: "s" = seconds, "m" = minutes, "h" = hours, "d" = days.
|
|
* Combinations (such as "1h30m") are not permitted. Examples (all of which
|
|
* represent the same length of time, one day):
|
|
*
|
|
* "86400", "86400s", "1440m", "24h", "1d"
|
|
*
|
|
* CAUTION:
|
|
* Please note that your services might _CRASH_ if you add more format-
|
|
* strings (%s, %d, etc.) to custom messages than Anope needs. Use the
|
|
* default messages to see how many format-strings are needed.
|
|
*
|
|
* In the documentation for each directive, one of the following will be
|
|
* included to indicate whether an option is required:
|
|
*
|
|
* [REQUIRED]
|
|
* Indicates a directive which must be given. Without it, Services will
|
|
* not start.
|
|
*
|
|
* [RECOMMENDED]
|
|
* Indicates a directive which may be omitted, but omitting it may cause
|
|
* undesirable side effects.
|
|
*
|
|
* [OPTIONAL]
|
|
* Indicates a directive which is optional. If not given, the feature
|
|
* will typically be disabled. If this is not the case, more
|
|
* information will be given in the documentation.
|
|
*
|
|
* [DISCOURAGED]
|
|
* Indicates a directive which may cause undesirable side effects if
|
|
* specified.
|
|
*
|
|
* [DEPRECATED]
|
|
* Indicates a directive which will disappear in a future version of
|
|
* Services, usually because its functionality has been either
|
|
* superseded by that of other directives or incorporated into the main
|
|
* program.
|
|
*/
|
|
|
|
|
|
/*
|
|
* [REQUIRED] IRCd Config
|
|
*
|
|
* This section is used to set up Anope to connect to your IRC network.
|
|
*/
|
|
uplink
|
|
{
|
|
/*
|
|
* This directive instructs Anope which IRCd Protocol to speak when connecting.
|
|
* You MUST modify this to match the IRCd you run.
|
|
*
|
|
* Supported:
|
|
* - inspircd11
|
|
* - ratbox
|
|
* - bahamut
|
|
* - charybdis
|
|
* - unreal32
|
|
*/
|
|
type = "inspircd11"
|
|
|
|
/*
|
|
* The IP or hostname of the IRC server you wish to connect Services to.
|
|
* Usually, you will want to connect Services over 127.0.0.1 (aka localhost).
|
|
*
|
|
* NOTE: On some shell providers, this will not be an option.
|
|
*/
|
|
host = "localhost"
|
|
|
|
/*
|
|
* The port to connect to.
|
|
* The IRCd *MUST* be configured to listen on this port, and to accept
|
|
* server connections.
|
|
*
|
|
* Refer to your IRCd documentation for how this is to be done.
|
|
*/
|
|
port = 6667
|
|
|
|
/*
|
|
* The password to send to the IRC server for authentication.
|
|
* This must match the link block on your IRCd.
|
|
*
|
|
* Refer to your IRCd documentation for more information on link blocks.
|
|
*/
|
|
password = "mypassword"
|
|
}
|
|
|
|
/*
|
|
* [REQUIRED] NickServ Config
|
|
*
|
|
* This section is used to set up the Nickname Registration Service pseudo-client.
|
|
* Unless specified otherwise, all directives are required.
|
|
*/
|
|
nickserv
|
|
{
|
|
/*
|
|
* The nickname of the NickServ client.
|
|
*/
|
|
nick = "NickServ"
|
|
|
|
/*
|
|
* The description of the NickServ client, which will be used as the GECOS (real
|
|
* name) of the client.
|
|
*/
|
|
description = "Nickname Registration Service"
|
|
|
|
/*
|
|
* The filename of the NickServ database. The path is relative to the services
|
|
* executable. If not given, defaults to "nick.db".
|
|
*/
|
|
database = "nick.db"
|
|
|
|
/*
|
|
* The filename of the NickServ Pre-Nick database. The path is relative to the
|
|
* services executable. This directive is only required if the e-mail registration
|
|
* option is enabled.
|
|
*/
|
|
#prenickdatabase = "prenick.db"
|
|
|
|
/*
|
|
* Force users to give an e-mail address when they register a nick. This directive
|
|
* is recommended to be enabled, and required if the e-mail registration option is
|
|
* enabled.
|
|
*/
|
|
forceemail = yes
|
|
|
|
/*
|
|
* Require an e-mail to be sent to the user before they can register their nick.
|
|
*/
|
|
#emailregistration = yes
|
|
|
|
/*
|
|
* The default options for newly registered nicks. Note that changing these options
|
|
* will have no effect on nicks which are already registered. The list must be separated
|
|
* by spaces
|
|
*
|
|
* The options are:
|
|
* - kill: Kill nick if not identified within 60 seconds
|
|
* - killquick: Kill nick if not identified within 20 seconds, this one overrides the above
|
|
* option and the above must be specified with this one
|
|
* - secure: Enable nickname security, requiring the nick's password before any operations
|
|
* can be done on it
|
|
* - private: Hide the nick from NickServ's LIST command
|
|
* - hideemail: Hide's the nick's e-mail address from NickServ's INFO command
|
|
* - hideusermask: Hide's the nick's last or current user@host from NickServ's INFO command
|
|
* - hidequit: Hide's the nick's last quit message
|
|
* - memosignon: Notify user if they have a new memo when they sign into the nick
|
|
* - memoreceive: Notify user if they have a new memo as soon as it's received
|
|
* - autoop: User will be automatically opped in channels they enter and have access to
|
|
* - msg: Services messages will be sent as PRIVMSGs instead of NOTICEs, requires UsePrivmsg
|
|
* to be enabled as well
|
|
*
|
|
* This directive is optional, if left blank, the options will default to secure, memosignon, and
|
|
* memoreceive. If you really want no defaults, use "none" by itself as the option.
|
|
*/
|
|
defaults="secure private hideemail hideusermask memosignon memoreceive autoop"
|
|
|
|
/*
|
|
* Default language that non- and newly-registered nicks will receive messages in. The number
|
|
* here is the same as the number in NickServ's SET LANGUAGE help.
|
|
*/
|
|
defaultlanguage = 1
|
|
|
|
/*
|
|
* The minimum length of time between consecutive uses of NickServ's REGISTER command. This
|
|
* directive is optional, but recommended. If not set, this restriction will be disabled.
|
|
*/
|
|
regdelay = 30s
|
|
|
|
/*
|
|
* The minimum length of time between consecutive uses of NickServ's RESEND command. This
|
|
* directive is optional, but recommended. If not set, this restriction will be disabled.
|
|
*/
|
|
resenddelay = 90s
|
|
|
|
/*
|
|
* The length of time before a nick registration expires. This directive is optional, but
|
|
* recommended. If not set, the default is 21 days.
|
|
*/
|
|
expire = 21d
|
|
|
|
/*
|
|
* The length of time a user gets to enter the confirmation code which has been e-mailed
|
|
* to them before the nick will be released for general use again. This directive is
|
|
* only required if the e-mail registration option is enabled.
|
|
*/
|
|
#preregexpire = 1d
|
|
|
|
/*
|
|
* The maximum number of nicks allowed in a group. This directve is optional, but
|
|
* recommended. If not set or set to 0, no limits will be applied.
|
|
*/
|
|
maxaliases = 16
|
|
|
|
/*
|
|
* The maximum number of entries allowed on a nickname's access list.
|
|
*/
|
|
accessmax = 32
|
|
|
|
/*
|
|
* The username (and possibly hostname) used for the fake user created when NickServ collides
|
|
* a user. Should be in the user@host format. If the host is not given, the one from ServicesUser
|
|
* is used.
|
|
*/
|
|
enforceruser = "enforcer@localhost.net"
|
|
#enforceruser = "enforcer"
|
|
|
|
/*
|
|
* The delay before a NickServ-collided nick is released.
|
|
*/
|
|
releasetimeout = 1m
|
|
|
|
/*
|
|
* Allow the use of the IMMED option in the NickServ SET KILL command. This directive is optional.
|
|
*/
|
|
#allowkillimmed = yes
|
|
|
|
/*
|
|
* If set, the NickServ GROUP command won't allow any group change. This is recommended for
|
|
* better performance and to protect against nick stealing, however users will have less
|
|
* flexibility. This directive is optional.
|
|
*/
|
|
#nogroupchange = yes
|
|
|
|
/*
|
|
* Limits the use of the NickServ LIST command to IRC operators. This directive is optional.
|
|
*/
|
|
#listopersonly = yes
|
|
|
|
/*
|
|
* The maximum number of nicks to be returned for a NickServ LIST command.
|
|
*/
|
|
listmax = 50
|
|
|
|
/*
|
|
* When a user's nick is forcibly changed to enforce a "nick kill", their new nick will start
|
|
* with this value. The rest will be made up of 6 or 7 digits.
|
|
*/
|
|
guestnickprefix = "Guest"
|
|
|
|
/*
|
|
* Prevents the use of the DROP, FORBID, GETPASS, and SET PASSWORD commands by Services Admins
|
|
* on other Services Admins or the Services Root(s). This directive is optional, but
|
|
* recommended.
|
|
*/
|
|
secureadmins = yes
|
|
|
|
/*
|
|
* If set, any user wanting to use the privileges of Services Root, Services Admin, or Services
|
|
* Operator must have been logged as an IRC Operator with the /oper command. This directive is
|
|
* optional, but recommended.
|
|
*/
|
|
strictprivileges = yes
|
|
|
|
/*
|
|
* If set, Services will set the channel modes a user has access to upon identifying, assuming
|
|
* they are not already set. This directive is optional.
|
|
*/
|
|
#modeonid = yes
|
|
|
|
/*
|
|
* If set, Services will only allow Services Root(s) to use the NickServ GETPASS command on
|
|
* a nick. This directive is optional.
|
|
*/
|
|
restrictgetpass = yes
|
|
|
|
/*
|
|
* If set, Services will track your last nick identified when issuing nick changes. This
|
|
* directive is optional.
|
|
*/
|
|
#nicktracking = yes
|
|
|
|
/*
|
|
* If set, Services will add the usermask of registering users to the access list of their
|
|
* newly created account. If not set, users will always have to identify to NickServ before
|
|
* being recognized, unless they manually add an address to the access list of their account.
|
|
* This directive is optional.
|
|
*/
|
|
addaccessonreg = yes
|
|
}
|
|
|
|
/*
|
|
* [REQUIRED] ChanServ Config
|
|
*
|
|
* This section is used to set up the Channel Registration Service pseudo-client.
|
|
* Unless specified otherwise, all directives are required.
|
|
*/
|
|
chanserv
|
|
{
|
|
/*
|
|
* The nickname of the ChanServ client.
|
|
*/
|
|
nick = "ChanServ"
|
|
|
|
/*
|
|
* The description of the ChanServ client, which will be used as the GECOS (real
|
|
* name) of the client.
|
|
*/
|
|
description = "Channel Registration Service"
|
|
}
|