Added simple file posting bot using mgpost

This commit is contained in:
Andrew Pamment 2016-09-04 16:28:38 +10:00
parent 0f1ffe142c
commit 146924694c

26
utils/rascalbot.sh Executable file
View File

@ -0,0 +1,26 @@
#!/bin/bash
# BEGIN CONFIGURATION--------------------------------------------------
MGPOST=/home/pi/MagickaBBS/utils/mgpost/mgpost
NODE=21:1/140
AREA=/home/pi/MagickaBBS/msgs/fsxnet/fsx_bot
ORIGINTXT="Underland - telnet://andrew.homeunix.org:2023"
FROM=rascal-bot
SEMAPHORE=/home/pi/MagickaBBS/echomail.out
# END CONFIGURATION----------------------------------------------------
SUBJECT=`head -1 $1`
TMP=/tmp/$RANDOM-rascal
mkdir -p $TMP
tail -n +2 $1 | cat > $TMP/rascal.txt
echo "" >> $TMP/rascal.txt
echo "--- rascal-bot (v0.1)" >> $TMP/rascal.txt
echo " * Origin: $ORIGINTXT ($NODE)" >> $TMP/rascal.txt
$MGPOST e $TMP/rascal.txt "$AREA" "$FROM" "$SUBJECT" $NODE
touch $SEMAPHORE
rm -rf $TMP