# Script mode will run commands as if they were entered from console.
# use can use // or # for comments, empty lines are ignored.
# warning: do emulate an empty lines use the <blank> keyword


# print the server's fingerprint
print_fingerprint


# Add a new user!
user add test
# select "Password" for authentication mode
1
# enter password and confirm password
123qweASD!
123qweASD!
# set user role : 1=Admin, 2=User, 3=Guest
2
# enter Name
John Doe
# enter email
john@doe.com
# enter description (leave blank)
<blank>
# enter allowed origins (leave black for all)
<blank>


# we are back in main menu, print the server's fingerprint again!
print_fingerprint
