Messer
Messer copied to clipboard
Autoresponder
I would love for this to be capable of automatically responding to incoming messages.
I like it 👍 Could specify it per-person aswell
For now I have done this by hard-coding the message I want, and adding a call to reply in the receive method.
I just wrote a quick and dirty reply script, it has to be combined to messer with socat (there is still a bug, it send the response 2 times...i will have a look later): socat EXEC:/usr/local/bin/messer EXEC:./reply.sh
Here the reply.sh script: #!/bin/bash while read lg do echo received: "$lg" >> reply.log if [[ "$lg" != "ERROR" ]] then echo r "YOUR REPLY TEST HERE" fi sleep 1s done