# This is the default script that smtp-server.pl uses if no other is given
# These two commands will work with each other to appear to send an entire email:
# ./smtp-server.pl -p 8026 -f scripts/basic-successful-email.txt
# ./swaks -s 127.0.0.1 -p 8026 -t foo@example.com

include("$Bin/scripts/part-banner-standard.txt");

include("$Bin/scripts/part-ehlo-basic.txt");

include("$Bin/scripts/part-mail-basic.txt");

# single recipient
include("$Bin/scripts/part-rcpt-basic.txt");

# DATA command and the actual body
include("$Bin/scripts/part-data.txt");

# receive the QUIT and acknowledge it
include("$Bin/scripts/part-close.txt");
