答え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}"
}
}
}