diff options
| author | Adam <Adam@anope.org> | 2014-02-12 14:39:41 -0500 |
|---|---|---|
| committer | Adam <Adam@anope.org> | 2014-02-12 14:39:41 -0500 |
| commit | 269c2786e96c3c8d2711be912d8fa40d99b090d4 (patch) | |
| tree | c49e5ce41b25a07f5e9b593948e6a2ca3f5d6b1d /data | |
| parent | 96fc940af7f20001b290cc65a76d0afb88a6160c (diff) | |
Add SASL EXTERNAL support. Thanks to ShutterQuick for fixing and testing.
Diffstat (limited to 'data')
| -rw-r--r-- | data/example.conf | 7 | ||||
| -rw-r--r-- | data/modules.example.conf | 10 |
2 files changed, 10 insertions, 7 deletions
diff --git a/data/example.conf b/data/example.conf index 4762ad084..fbb7e310e 100644 --- a/data/example.conf +++ b/data/example.conf @@ -276,13 +276,6 @@ module * If the protocol module you have loaded does not support this, this setting will have no effect. */ use_server_side_topiclock = yes - - /* - * Some IRCds allow "SASL" authentication to let users identify to Services - * during the IRCd user registration process. If set, Services will allow - * authenticating users through this mechanism. - */ - sasl = yes } /* diff --git a/data/modules.example.conf b/data/modules.example.conf index 8e41aa734..57430e2a7 100644 --- a/data/modules.example.conf +++ b/data/modules.example.conf @@ -424,6 +424,16 @@ module { name = "help" } } /* + * m_sasl + * + * Some IRCds allow "SASL" authentication to let users identify to Services + * during the IRCd user registration process. If this module is loaded, Services will allow + * authenticating users through this mechanism. Currently supported mechanisms are: + * PLAIN, EXTERNAL. + */ +module { name = "m_sasl" } + +/* * m_sql_authentication [EXTRA] * * This module allows authenticating users against an external SQL database using a custom |
