https://github.com/junker/smtp-ses-proxy
SMTP server that convert SMTP message to AWS SES API Call
https://github.com/junker/smtp-ses-proxy
aws-ses smtp-proxy smtp-server
Last synced: 11 months ago
JSON representation
SMTP server that convert SMTP message to AWS SES API Call
- Host: GitHub
- URL: https://github.com/junker/smtp-ses-proxy
- Owner: Junker
- License: gpl-3.0
- Created: 2019-11-26T13:19:41.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-07-25T14:10:20.000Z (almost 5 years ago)
- Last Synced: 2025-06-01T23:24:43.890Z (about 1 year ago)
- Topics: aws-ses, smtp-proxy, smtp-server
- Language: Go
- Homepage:
- Size: 14.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SMTP-SES-Proxy
SMTP server that convert SMTP message to AWS SES API Call
### Build
go build smtp.go
### Arguments
```
--host HOST SMTP Host (a.g. 127.0.0.1)
--port PORT SMTP port [default: 10025]
--noauth disable SMTP authentication
--plainauth enable SMTP PLAIN authentication
--anonauth enable SMTP anonymous authentication
--user USER SMTP username
--password PASSWORD SMTP password
--region REGION AWS region (a.g. eu-west-1)
--sourcearn ARN AWS Source ARN
--fromarn ARN AWS From ARN
--returnpatharn ARN AWS Return Path ARN
--accesskey ACCESSKEY AWS Access Key
--secretkey SECRETKEY AWS Secret Key
--help, -h display this help and exit
```