gostfix is simple go-based mail-manager for postfix with web interface

Alexey Edelev baf45714fb Add websocket notifier 5 éve
auth 74f8b32450 Add mailboxes integrity check 5 éve
common baf45714fb Add websocket notifier 5 éve
config 26b7241cb8 Improve default configuration file 5 éve
db baf45714fb Add websocket notifier 5 éve
sasl baf45714fb Add websocket notifier 5 éve
scanner baf45714fb Add websocket notifier 5 éve
utils 043ee7fba7 Sasl playground 5 éve
web baf45714fb Add websocket notifier 5 éve
.gitignore 4940e01823 Refactor login functionality 5 éve
LICENSE 4174b9f7ad Implement basic project structure 5 éve
README.md baf45714fb Add websocket notifier 5 éve
build.sh 74f8b32450 Add mailboxes integrity check 5 éve
go.mod baf45714fb Add websocket notifier 5 éve
go.sum baf45714fb Add websocket notifier 5 éve
main.go baf45714fb Add websocket notifier 5 éve
views 74f8b32450 Add mailboxes integrity check 5 éve

README.md

gostfix

gostfix is simple go-based mail-manager for postfix with web interface

Supported features:

  • Web admin interface
  • Web mail interface
  • gRPC admin interface
  • POP3 inteface
  • IMAP interface

Nginx

    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;