gostfix is simple go-based mail-manager for postfix with web interface
|
|
6 år sedan | |
|---|---|---|
| auth | 6 år sedan | |
| common | 6 år sedan | |
| config | 6 år sedan | |
| db | 6 år sedan | |
| sasl | 6 år sedan | |
| scanner | 6 år sedan | |
| utils | 6 år sedan | |
| web | 6 år sedan | |
| .gitignore | 6 år sedan | |
| LICENSE | 6 år sedan | |
| README.md | 6 år sedan | |
| build.sh | 6 år sedan | |
| go.mod | 6 år sedan | |
| go.sum | 6 år sedan | |
| main.go | 6 år sedan | |
| views | 6 år sedan |
gostfix is simple go-based mail-manager for postfix with web interface
Supported features:
listen 443 ssl;
server_name mail.example.com;
# Add proxy micro-web services
location / {
proxy_pass http://localhost:65200;
}
# Add web sockets proxy
location ~ ^/m[\d]+/notifierSubscribe$ {
proxy_pass http://localhost:65200;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
# SSL configuration
ssl_certificate /path/to/cert.pem;
ssl_certificate_key /path/to/privkey.pem;