monurbox/checks/imap

11 lines
130 B
Plaintext
Raw Permalink Normal View History

2019-01-31 01:18:23 +00:00
#!/bin/bash
export SITE=$1
2019-02-07 00:42:50 +00:00
timeout 2 bash -c "</dev/tcp/${SITE}/143" > /dev/null
2019-01-31 01:18:23 +00:00
if [ $? -ne "0" ]
then
exit 1
else
exit 0
fi