Skip to content

Instantly share code, notes, and snippets.

@danmaas
Created February 15, 2018 22:36
Show Gist options
  • Save danmaas/4076eae78c7b8062c30d87f46060e331 to your computer and use it in GitHub Desktop.
Save danmaas/4076eae78c7b8062c30d87f46060e331 to your computer and use it in GitHub Desktop.
Fetch emails from Amazon S3 and feed to procmail
#!/bin/bash
# Fetch emails from Amazon S3 (deposited by the Amazon SES receiver's S3 action)
# and feed to procmail. In the spirit of fetchmail, but using S3 instead of SMTP.
BUCKET=my-bucket-name
export AWS_PROFILE=my-aws-profile
PROCMAIL="/usr/bin/procmail"
# for each object in the bucket...
for F in `aws s3 ls "s3://${BUCKET}/" | awk '{print $4;}'`; do
if [ "${F}" == "AMAZON_SES_SETUP_NOTIFICATION" ]; then
continue # ignore this object SES creates during set-up
fi
# download the object and feed it on stdin to procmail
if ! aws s3 cp "s3://${BUCKET}/${F}" - | ${PROCMAIL}; then
echo "S3->Procmail fetch of ${F} failed with status $?"
else
echo "$0 successfully fetched ${F}" >> "${HOME}/.fetchlog"
# success - delete the S3 object
aws s3 rm "s3://${BUCKET}/${F}" --quiet
fi
done
@danmaas
Copy link
Author

danmaas commented Jul 12, 2020

Thanks, glad you found the script useful!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment