hi, ..theres also an error in v2.2 policy.conf
#
# Realm begins with a dot
# e.g. "[email protected]"
#
if (User-Name !~ /@\\./) {
update reply {
Reply-Message+ = "Rejected: Realm begins with a
dot"
}
reject
}
MUST, in fact, be:
#
# Realm begins with a dot
# e.g. "[email protected]"
#
if (User-Name =~ /@\\./) {
update reply {
Reply-Message += "Rejected: Realm begins with a
dot"
}
reject
}
alan
-
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

