You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
QA/tests/p_exim/_helper_exim_helo.expect

20 lines
460 B

#!/usr/bin/expect -f
# Author: Christoph Galuschka <tigalch@tigalch.org>
set timeout 1
spawn telnet localhost 25
expect "220 *"
send -- "helo localhost\n"
expect -- "250*Hello\ localhost*"
sleep 1
send -- "mail from: root@localhost\n"
expect -- "250\ OK"
send -- "rcpt to: eximtest@localhost\n"
expect -- "250\ Accepted"
send -- "data\n"
expect -- "354*"
send -- "t_functional test\n.\n"
expect -- "250\ OK*"
send -- "quit\n"
expect "221*closing\ connection"