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

Alexey Edelev 3049216532 Add toast notifications hace 5 años
auth 9df463a419 Implement user settings hace 5 años
common b55613e1be Complete registration functionality hace 5 años
config b3d26c62ba Use berkley db instead of plaintext files for mailbox maps hace 5 años
db 9df463a419 Implement user settings hace 5 años
sasl 9df463a419 Implement user settings hace 5 años
scanner b3d26c62ba Use berkley db instead of plaintext files for mailbox maps hace 5 años
utils 9df463a419 Implement user settings hace 5 años
web 3049216532 Add toast notifications hace 5 años
.gitignore 4940e01823 Refactor login functionality hace 5 años
LICENSE 4174b9f7ad Implement basic project structure hace 5 años
README.md baf45714fb Add websocket notifier hace 5 años
build.sh b3d26c62ba Use berkley db instead of plaintext files for mailbox maps hace 5 años
go.mod 961b8c363d Migrate to own version of berkley db hace 5 años
go.sum 961b8c363d Migrate to own version of berkley db hace 5 años
main.go 9df463a419 Implement user settings hace 5 años
views 74f8b32450 Add mailboxes integrity check hace 5 años

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;