Mercurial > prosody-modules
view mod_auth_external/authorize_example.sh @ 1034:a0fbe738317c
mod_muc_log: Reduce hook priority to 1 (from 500), we want to log after any plugins have filtered/modified the incoming stanza (thanks Asterix/Maranda)
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sat, 01 Jun 2013 22:14:52 +0100 |
parents | 2686221255cf |
children |
line wrap: on
line source
#!/bin/bash IFS=":" AUTH_OK=1 AUTH_FAILED=0 LOGFILE="/var/log/prosody/auth.log" USELOG=true while read ACTION USER HOST PASS ; do [ $USELOG == true ] && { echo "Date: $(date) Action: $ACTION User: $USER Host: $HOST Pass: $PASS" >> $LOGFILE; } case $ACTION in "auth") if [ $USER == "someone" ] ; then echo $AUTH_OK else echo $AUTH_FAILED fi ;; *) echo $AUTH_FAILED ;; esac done