https://github.com/buggregator/smtp-server
SMTP server plugin for RoadRunner
https://github.com/buggregator/smtp-server
buggregator php8 roadrunner roadrunner-plugin
Last synced: 3 months ago
JSON representation
SMTP server plugin for RoadRunner
- Host: GitHub
- URL: https://github.com/buggregator/smtp-server
- Owner: buggregator
- Created: 2025-11-03T18:19:30.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-11-22T14:34:25.000Z (7 months ago)
- Last Synced: 2025-11-22T16:23:26.561Z (7 months ago)
- Topics: buggregator, php8, roadrunner, roadrunner-plugin
- Language: Go
- Homepage: https://buggregator.dev/
- Size: 104 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RoadRunner SMTP Plugin
SMTP server plugin for profiling and debugging email traffic in development environments.
## Features
- Accepts SMTP connections on configurable port
- Captures authentication attempts without verification
- Parses emails with attachments
- Forwards complete email data to PHP workers
- Designed for Buggregator integration
## Configuration
```yaml
smtp:
addr: "127.0.0.1:1025"
hostname: "buggregator.local"
read_timeout: "60s"
write_timeout: "10s"
max_message_size: 10485760
attachment_storage:
mode: "memory"
temp_dir: "/tmp/smtp-attachments"
cleanup_after: "1h"
pool:
num_workers: 4
max_jobs: 0
allocate_timeout: 60s
destroy_timeout: 60s
```
## Status
Work in progress - Step 1 complete (configuration & skeleton)