diff options
Diffstat (limited to 'tests/instrumentation/inject_emails.sh')
-rwxr-xr-x | tests/instrumentation/inject_emails.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/instrumentation/inject_emails.sh b/tests/instrumentation/inject_emails.sh new file mode 100755 index 0000000..a021170 --- /dev/null +++ b/tests/instrumentation/inject_emails.sh @@ -0,0 +1,21 @@ +#!/bin/sh + +SCRIPT=$0 +USER=$1 +SUBFOLDER=$2 +cd $(dirname $SCRIPT) + +function mail_lmtp_session ( + echo -e "LHLO localhost\r" + for mail in $(find emails/$SUBFOLDER -name '*.eml' ); do + echo -e "MAIL FROM: <alex@adnab.me>\r" + echo -e "RCPT TO: $USER\r" + echo -e "DATA\r" + cat $mail + echo -e "\r" + echo -e ".\r" + done + echo -e "QUIT\r" +) + +mail_lmtp_session | tee >(nc localhost 12024) |