mirror of
https://github.com/anope/anope.git
synced 2026-07-02 02:26:38 +02:00
Started options block in new config, added encryption directive to it.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1700 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
@@ -211,6 +211,34 @@ networkinfo {
|
||||
nicklen = 31
|
||||
}
|
||||
|
||||
/*
|
||||
* [REQUIRED] Services Options
|
||||
*
|
||||
* This section contains various options which determine how Services will operate.
|
||||
*/
|
||||
options {
|
||||
/*
|
||||
* The encryption module to use when dealing with passwords. This determines how
|
||||
* the passwords are stored in the databases, and does not add any security as
|
||||
* far as transmitting passwords over the network goes.
|
||||
*
|
||||
* When using enc_none, passwords will be stored without encryption in plain
|
||||
* text, allowing for passwords to be recovered later. The other encryption modules
|
||||
* use one-way encryption, so the passwords can not be recovered later if those
|
||||
* are used.
|
||||
*
|
||||
* NOTE: enc_old is Anope's previous (broken) MD5 implementation, if your databases
|
||||
* were made using that module, continue to use it and do not use enc_md5.
|
||||
*
|
||||
* Supported:
|
||||
* - enc_none (plain text, no encryption)
|
||||
* - enc_old (old, broken MD5 encryption)
|
||||
* - enc_md5 (working MD5 encryption)
|
||||
* - enc_sha1 (SHA1 encryption)
|
||||
*/
|
||||
encryption = "enc_none"
|
||||
}
|
||||
|
||||
/*
|
||||
* [OPTIONAL] Mail Config
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user