NKMUN / postie

email delivery and tracking

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Postie

The Email Delivery Buddy

Usage

postie --help

Tracer

--tracer <url> enables email tracing, url should be an public accessible url path, which is proxied to Postie's /tracers/

--secret <secret> enables signature verification

Example

nginx config for example.com

location /tracers/ {
    proxy_pass http://localhost:8003/tracers/;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto https;   # Ignored during signature check
}

About

email delivery and tracking

License:GNU General Public License v3.0


Languages

Language:JavaScript 96.5%Language:Dockerfile 3.5%