https://github.com/mfa/flask-mail-dump
Get mails pushed from mailgun and save on disk
https://github.com/mfa/flask-mail-dump
Last synced: 9 months ago
JSON representation
Get mails pushed from mailgun and save on disk
- Host: GitHub
- URL: https://github.com/mfa/flask-mail-dump
- Owner: mfa
- Created: 2015-06-21T14:35:56.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-06-24T09:15:38.000Z (almost 11 years ago)
- Last Synced: 2025-02-07T14:22:36.560Z (over 1 year ago)
- Language: Python
- Size: 121 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# purpose
save emails send by mailgun via http POST to files on harddrive
# development
```
docker-compose build
docker-compose up -d
```
# production deployment
```
docker build --tag=flaskdump-prod .
docker run -d --name flaskdump flaskdump-prod
docker run --name flaskdump-nginx --link flaskdump:flaskdump -p 8080:80 -v `pwd`/nginx.conf:/etc/nginx/nginx.conf -d nginx
```