晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。 林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。 见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝) 既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。 南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。
| DIR:/home/bolconlineco/public_html/PHPMailer/test/ |
| Current File : //home/bolconlineco/public_html/PHPMailer/test/fakepopserver.sh |
#!/usr/bin/env bash
# Fake POP3 server
# By Marcus Bointon <phpmailer@synchromedia.co.uk>
# Based on code by 'Frater' found at http://www.linuxquestions.org/questions/programming-9/fake-pop3-server-to-capture-pop3-passwords-933733
# Does not actually serve any mail, but supports commands sufficient to test POP-before SMTP
# Can be run directly from a shell like this:
# mkfifo fifo; nc -l 1100 <fifo |./fakepopserver.sh >fifo; rm fifo
# It will accept any user name and will return a positive response for the password 'test'
# Licensed under the GNU Lesser General Public License: http://www.gnu.org/copyleft/lesser.html
# Enable debug output
#set -xv
export PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin
LOGFOLDER=/tmp
LOGFILE=${LOGFOLDER}/fakepop.log
LOGGING=1
DEBUG=1
TIMEOUT=60
POP_USER=
POP_PASSWRD=test
LINES=1
BREAK=0
write_log () {
if [ ${LINES} -eq 1 ] ; then
echo '---' >>${LOGFILE}
fi
let LINES+=1
[ ${LOGGING} = 0 ] || echo -e "`date '+%b %d %H:%M'` pop3 $*" >>${LOGFILE}
}
ANSWER="+OK Fake POP3 Service Ready"
while [ ${BREAK} -eq 0 ] ; do
echo -en "${ANSWER}\r\n"
REPLY=""
#Input appears in $REPLY
read -t ${TIMEOUT}
ANSWER="+OK "
COMMAND=""
ARGS=""
TIMEOUT=30
if [ "$REPLY" ] ; then
write_log "RAW input: '`echo "${REPLY}" | tr -cd '[ -~]'`'"
COMMAND="`echo "${REPLY}" | awk '{print $1}' | tr -cd '\40-\176' | tr 'a-z' 'A-Z'`"
ARGS="`echo "${REPLY}" | tr -cd '\40-\176' | awk '{for(i=2;i<=NF;i++){printf "%s ", $i};printf "\n"}' | sed 's/ $//'`"
write_log "Command: \"${COMMAND}\""
write_log "Arguments: \"${ARGS}\""
case "$COMMAND" in
QUIT)
break
;;
USER)
if [ -n "${ARGS}" ] ; then
POP_USER="${ARGS}"
ANSWER="+OK Please send PASS command"
fi
;;
AUTH)
ANSWER="+OK \r\n."
;;
CAPA)
ANSWER="+OK Capabilities include\r\nUSER\r\nCAPA\r\n."
;;
PASS)
if [ "${POP_PASSWRD}" == "${ARGS}" ] ; then
ANSWER="+OK Logged in."
AUTH=1
else
ANSWER="-ERR Login failed."
fi
;;
LIST)
if [ "${AUTH}" = 0 ] ; then
ANSWER="-ERR Not authenticated"
else
if [ -z "${ARGS}" ] ; then
ANSWER="+OK No messages, really\r\n."
else
ANSWER="-ERR No messages, no list, no status"
fi
fi
;;
RSET)
ANSWER="+OK Resetting or whatever\r\n."
;;
LAST)
if [ "${AUTH}" = 0 ] ; then
ANSWER="-ERR Not authenticated"
else
ANSWER="+OK 0"
fi
;;
STAT)
if [ "${AUTH}" = 0 ] ; then
ANSWER="-ERR Not authenticated"
else
ANSWER="+OK 0 0"
fi
;;
NOOP)
ANSWER="+OK Hang on, doing nothing"
;;
esac
else
echo "+OK Connection timed out"
break
fi
done
echo "+OK Bye!\r\n"
|