- #!/bin/bash
- #берем список ботов и паролей к ним и создаем или апдейтим пользователей (если уже созданы) на сервере
- python3 gen-passwords.py | while IFS=' ' read -ra line; do ejabberdctl register ${line[0]} ej.sharix-app.org ${line[1]}; done;
- python3 gen-passwords.py | while IFS=' ' read -ra line; do ejabberdctl change-password ${line[0]} ej.sharix-app.org ${line[1]}; done;
- #ejabberdctl register $username ej $password
- #ejabberdctl change-password User Host newPassword
- #ejabberdctl check_account user1 localhos
- #
- #ejabberdctl unregister badlop3 localhost
- #ejabberdctl registered_users localhost
- #ejabberdctl help registered_userst
|