Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
*.key
*.pem

# Dev venv
scripts/dev/venv/

# OS files
.DS_Store
Thumbs.db
Expand Down
22 changes: 12 additions & 10 deletions ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ This document outlines the development roadmap for ServerKit. Features are organ

### Recently Completed

- **Email Server Management** - Postfix + Dovecot + SpamAssassin + OpenDKIM + Roundcube, DNS API (Cloudflare/Route53)
- **Two-Factor Authentication (2FA)** - TOTP-based with backup codes
- **Notification Webhooks** - Discord, Slack, Telegram, generic webhooks
- **ClamAV Integration** - Malware scanning with quarantine
Expand Down Expand Up @@ -166,17 +167,18 @@ This document outlines the development roadmap for ServerKit. Features are organ

---

## Phase 13: Email Server Management (Planned)
## Phase 13: Email Server Management (Completed)

**Priority: Medium**

- [ ] Postfix mail server setup
- [ ] Dovecot IMAP/POP3 configuration
- [ ] Email account management
- [ ] Spam filtering (SpamAssassin)
- [ ] DKIM/SPF/DMARC configuration
- [ ] Webmail interface integration
- [ ] Email forwarding rules
- [x] Postfix mail server setup
- [x] Dovecot IMAP/POP3 configuration
- [x] Email account management
- [x] Spam filtering (SpamAssassin)
- [x] DKIM/SPF/DMARC configuration
- [x] Webmail interface integration (Roundcube via Docker)
- [x] Email forwarding rules
- [x] DNS API integration (Cloudflare & Route53)

---

Expand Down Expand Up @@ -275,7 +277,7 @@ This document outlines the development roadmap for ServerKit. Features are organ
| v1.0.0 | Production-ready stable release | Planned |
| v1.1.0 | Multi-server, Git deployment | Planned |
| v1.2.0 | Backups, Advanced SSL, Advanced Security | Planned |
| v1.3.0 | Email server, API enhancements | Planned |
| v1.3.0 | Email server, API enhancements | Email server completed |
| v1.4.0 | Team & permissions | Planned |
| v1.5.0 | Performance optimizations | Planned |
| v2.0.0 | Mobile app, Marketplace | Future |
Expand Down Expand Up @@ -304,5 +306,5 @@ Have a feature idea? Open an issue on GitHub with the `enhancement` label.

<p align="center">
<strong>ServerKit Roadmap</strong><br>
Last updated: January 2026
Last updated: March 2026
</p>
4 changes: 4 additions & 0 deletions backend/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,10 @@ def create_app(config_name=None):
from app.api.servers import servers_bp
app.register_blueprint(servers_bp, url_prefix='/api/v1/servers')

# Register blueprints - Email Server
from app.api.email import email_bp
app.register_blueprint(email_bp, url_prefix='/api/v1/email')

# Create database tables
with app.app_context():
db.create_all()
Expand Down
Loading