gostfix is simple go-based mail-manager for postfix with web interface
Alexey Edelev 9bfee89ced Add service watcher and admin panel | vor 2 Jahren | |
---|---|---|
auth | vor 2 Jahren | |
common | vor 2 Jahren | |
config | vor 2 Jahren | |
db | vor 2 Jahren | |
sasl | vor 2 Jahren | |
scanner | vor 2 Jahren | |
service | vor 2 Jahren | |
setup | vor 2 Jahren | |
utils | vor 2 Jahren | |
web | vor 2 Jahren | |
.gitignore | vor 2 Jahren | |
LICENSE | vor 4 Jahren | |
README.md | vor 4 Jahren | |
build.sh | vor 2 Jahren | |
go.mod | vor 2 Jahren | |
go.sum | vor 2 Jahren | |
main.go | vor 2 Jahren | |
views | vor 2 Jahren |
gostfix is simple go-based mail-manager for postfix with web interface
Supported features:
gostfix only works on Linux-like operating systems
TODO: Will be described later
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;