答案1
当然可以。使用授权部分中的策略语言更改用户名
authorize {
# This is a policy which ships with the server
# It breaks the incoming username into
# - Stripped-User-Name
# - Stripped-User-Domain
split_username_nai
if (&Stripped-User-Domain) {
update request {
User-Name := "123user@%{Stripped-User-Domain}"
}
}
}