diff options
author | Daniel Vassdal <shutter@canternet.org> | 2014-02-16 10:27:17 -0800 |
---|---|---|
committer | Daniel Vassdal <shutter@canternet.org> | 2014-02-16 11:07:37 -0800 |
commit | bc1575318bc40e00722049ae8055d290240b8886 (patch) | |
tree | 4bd259ccb26455bf0cfc7dfb4f7bb052d3ac05a9 | |
parent | a71d0f67576bff27882f7f1a0b0b48179a581090 (diff) |
modules.example.conf: Update examples for bcrypt - also clearify that m_sasl_dh* requires openssl
-rw-r--r-- | data/modules.example.conf | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/data/modules.example.conf b/data/modules.example.conf index df2077b4d..e58ebea88 100644 --- a/data/modules.example.conf +++ b/data/modules.example.conf @@ -10,6 +10,23 @@ */ /* + * enc_bcrypt [EXTRA] + * + * Adds the possibility to store passwords using bcrypt. + * This follows the same rules as the other encryption modules, + * eg. if you want it to be your primary encryption method it must + * be loaded before any other encryption modules. + * See the Encryption section of services.conf for more information. + * + * Requires libxcrypt. + */ +#module +{ + name = "enc_bcrypt" + rounds = "10" +} + +/* * help * * Provides the command generic/help. @@ -438,6 +455,7 @@ module { name = "help" } * * Add the DH-AES mechanism to SASL. * Requires m_sasl to be loaded. + * Requires openssl. */ #module { name = "m_sasl_dh-aes" } @@ -446,6 +464,7 @@ module { name = "help" } * * Add the DH-BLOWFISH mechanism to SASL. * Requires m_sasl to be loaded. + * Requires openssl. */ #module { name = "m_sasl_dh-blowfish" } |