It's a webmail client for viewing emails stored on AWS S3 buckets.
The purpose of this project is to give an easy interface to browse through emails received via AWS SES and stored on S3 buckets, although it will work on any buckets containing raw emails.
There are several steps required to make s3abird work.
- creating an S3 bucket
- creating credentials that have read access to this bucket
- setting proper CORS policy
IAM policy granting read access:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowBucketRead",
"Effect": "Allow",
"Action": [
"s3:listBucket",
"s3:getObject"
],
"Resource": [
"arn:aws:s3:::<your_bucket_name>",
"arn:aws:s3:::<your_bucket_name>/*"
]
}
]
}
A sufficient CORS policy can look like this:
<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
<AllowedMethod>GET</AllowedMethod>
<AllowedHeader>*</AllowedHeader>
</CORSRule>
</CORSConfiguration>
Besides configuring an S3 bucket for reads you will probably want to configure SES so that it can store incoming messages in this bucket.
The following features are likely to be integrated soon into s3abird.
- integrate SES so that it's possible to reply to emails or write new ones
- modularise email storage and sending so that it's possible to use other providers
Feel free to submit pull requests - doesn't have to be limited to just the features on the roadmap.
If there are particular features you would like to see you can also submit a ticket.
.