xmpp-webhook

webhook to xmpp gateway (clone of https://github.com/opthomas-prime/xmpp-webhook/ with my own mods)
git clone https://git.e1e0.net/xmpp-webhook.git
Log | Files | Refs | README | LICENSE

commit e1aab5bbd8dedcd6233e8184314c07cde1d9bef3
parent 6ad06bd237802e018f06f9ae9fdd82dcacdb024b
Author: Paco Esteban <paco@onna.be>
Date:   Mon, 15 Jul 2019 18:12:34 +0200

add for unautorized contact attempts

Diffstat:
Mmain.go | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/main.go b/main.go @@ -96,6 +96,8 @@ func main() { Body: m.Body, Type: "chat", } + } else { + log.Printf("%s tried to contact and is not on XMPP_RECEIVERS\n", m.From) } } }