Document chase_referrals and rebind
[freeradius.git] / raddb / modules / always
1 # -*- text -*-
2 #
3 #  $Id$
4
5 #
6 # The "always" module is here for debugging purposes. Each
7 # instance simply returns the same result, always, without
8 # doing anything.
9 always fail {
10         rcode = fail
11 }
12 always reject {
13         rcode = reject
14 }
15 always noop {
16         rcode = noop
17 }
18 always handled {
19         rcode = handled
20 }
21 always updated {
22         rcode = updated
23 }
24 always notfound {
25         rcode = notfound
26 }
27 always ok {
28         rcode = ok
29         simulcount = 0
30         mpp = no
31 }