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

Alexey Edelev 22385e8e67 Minor improvements of mail details look and feel 5 년 전
auth 9df463a419 Implement user settings 5 년 전
common b55613e1be Complete registration functionality 5 년 전
config b3d26c62ba Use berkley db instead of plaintext files for mailbox maps 5 년 전
db 9df463a419 Implement user settings 5 년 전
sasl eb5a8ffe94 Add parsing of encoded subject and mailer 5 년 전
scanner eb5a8ffe94 Add parsing of encoded subject and mailer 5 년 전
utils eb5a8ffe94 Add parsing of encoded subject and mailer 5 년 전
web 22385e8e67 Minor improvements of mail details look and feel 5 년 전
.gitignore 4940e01823 Refactor login functionality 5 년 전
LICENSE 4174b9f7ad Implement basic project structure 5 년 전
README.md baf45714fb Add websocket notifier 5 년 전
build.sh b3d26c62ba Use berkley db instead of plaintext files for mailbox maps 5 년 전
go.mod eb5a8ffe94 Add parsing of encoded subject and mailer 5 년 전
go.sum eb5a8ffe94 Add parsing of encoded subject and mailer 5 년 전
main.go 9df463a419 Implement user settings 5 년 전
views 74f8b32450 Add mailboxes integrity check 5 년 전

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;