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

Alexey Edelev 21bb9a5484 Add checkboxes to mail list il y a 5 ans
auth 9df463a419 Implement user settings il y a 5 ans
common b55613e1be Complete registration functionality il y a 5 ans
config b3d26c62ba Use berkley db instead of plaintext files for mailbox maps il y a 5 ans
db 9df463a419 Implement user settings il y a 5 ans
sasl 5e888a0a62 Fix sasl connection reset il y a 5 ans
scanner 867f9f42d4 Fix address format in database il y a 5 ans
utils eb5a8ffe94 Add parsing of encoded subject and mailer il y a 5 ans
web 21bb9a5484 Add checkboxes to mail list il y a 5 ans
.gitignore 4940e01823 Refactor login functionality il y a 5 ans
LICENSE 4174b9f7ad Implement basic project structure il y a 5 ans
README.md baf45714fb Add websocket notifier il y a 5 ans
build.sh b3d26c62ba Use berkley db instead of plaintext files for mailbox maps il y a 5 ans
go.mod eb5a8ffe94 Add parsing of encoded subject and mailer il y a 5 ans
go.sum eb5a8ffe94 Add parsing of encoded subject and mailer il y a 5 ans
main.go 9df463a419 Implement user settings il y a 5 ans
views 74f8b32450 Add mailboxes integrity check il y a 5 ans

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;