diff options
Diffstat (limited to 'tests/inject_emails.sh')
-rwxr-xr-x | tests/inject_emails.sh | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/inject_emails.sh b/tests/inject_emails.sh deleted file mode 100755 index a021170..0000000 --- a/tests/inject_emails.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/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) |