24
2
Fork 0
xmpp.chapril.org-tools/moderation/send_server_notice.sh

9 lines
272 B
Bash
Executable File

#!/bin/bash
LIST=$(sudo -u ejabberd ejabberdctl connected_users_info | cut -f 1 | cut -d "/" -f 1 | grep $1 | uniq)
for ADDRESS in $LIST
do
sudo -u ejabberd ejabberdctl send_message headline chapril.org "$ADDRESS" "Annonce du Serveur" "$2"
echo Done with $ADDRESS
done