-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample-anope-config.conf
28 lines (23 loc) · 1.06 KB
/
example-anope-config.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
* A module to authenticate against Composr.
*/
module
{
name = "m_composr_authentication"
/* The path to the PHP script that will check if a password is correct. */
password_script = "/path/to/anopr/check-password.php"
/* The path to the PHP script that will return a user's email address. */
email_script = "/path/to/anopr/get-email.php"
/* The fallback email address to use if none is found in the Composr database. */
fallback_email = "[email protected]"
/*
* If set, the reason to give the users who try to "/msg NickServ REGISTER".
* If not set, then registration is not blocked.
*/
disable_reason = "To register on this network, visit: https://example.com/join"
/*
* If set, the reason to give the users who try to "/msg NickServ SET EMAIL".
* If not set, then email changing is not blocked.
*/
disable_email_reason = "To change your email address, visit your Composr profile at: https://example.com/members/view"
}