feat(ses): implement real SES inbound receipt rule action execution#288
Merged
vieiralucas merged 1 commit intomainfrom Apr 12, 2026
Merged
feat(ses): implement real SES inbound receipt rule action execution#288vieiralucas merged 1 commit intomainfrom
vieiralucas merged 1 commit intomainfrom
Conversation
The /_fakecloud/ses/inbound endpoint previously only evaluated receipt rules and returned which actions would execute, without actually executing them. Now it performs real cross-service delivery: - S3 actions: stores the email body as an object in the specified bucket with the configured key prefix - SNS actions: publishes an SES Received notification to the specified topic, with full fan-out to SQS/Lambda subscribers - Lambda actions: invokes the specified function with an SES event payload matching the real AWS format The handler is wired up with the DeliveryBus pattern used by all other cross-service integrations (SNS→SQS, S3→EventBridge, etc.). - Add bytes, md-5, uuid dependencies to fakecloud-server - Wire S3 state and delivery bus into the inbound handler - Add E2E tests verifying S3 object storage and SNS→SQS fan-out
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
/_fakecloud/ses/inboundendpoint now actually executes receipt rule actions instead of just evaluating themTest plan
cargo clippy -D warningscleanSummary by cubic
Make
/_fakecloud/ses/inboundexecute SES receipt rule actions for real, enabling cross-service delivery. S3, SNS, and Lambda actions now run and mirror AWS behavior via the DeliveryBus.New Features
/_fakecloud/ses/inbound.Dependencies
bytes,md-5, anduuidtofakecloud-server.Written for commit 28e42a0. Summary will update on new commits.