Software /
code /
prosody-modules
File
mod_auth_external/authorize_example.sh @ 673:9dcf98018644
mod_mam: Break when the message is more recent than the range requested
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 24 May 2012 22:56:12 +0200 |
parent | 197:2686221255cf |
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