You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
I would love for this to be capable of automatically responding to incoming messages.
The text was updated successfully, but these errors were encountered: