diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-12-27 18:33:06 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-12-27 18:33:06 +0100 |
commit | ccc9b6abb66ebda0b91b4e21f8ec2fb2e87390f7 (patch) | |
tree | 985f9d136a981ec7cc43984c976c60e9295340d5 /tests/instrumentation/inject_emails.sh | |
parent | 7744625c18aff5990a792bb13a44b60d8c4d4fc5 (diff) | |
download | aerogramme-ccc9b6abb66ebda0b91b4e21f8ec2fb2e87390f7.tar.gz aerogramme-ccc9b6abb66ebda0b91b4e21f8ec2fb2e87390f7.zip |
add a --dev mode
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) |