mirror of
https://github.com/SebastianKrupinski/action-stalwart-install.git
synced 2026-04-11 20:55:01 +00:00
335 lines
8.8 KiB
Markdown
335 lines
8.8 KiB
Markdown
# Stalwart Mail Server Installation Action
|
|
|
|
A GitHub Action to install and configure [Stalwart Mail Server](https://stalw.art/) with optional automated setup for admin password, domains, and users.
|
|
|
|
## Features
|
|
|
|
- 🚀 **One-step installation** of Stalwart Mail Server
|
|
- 🔐 **Automated configuration** via REST API
|
|
- 🌐 **Multi-domain support** with JSON array input
|
|
- 👥 **Bulk user creation** from JSON configuration
|
|
- 🔒 **Secure handling** of passwords using GitHub Secrets
|
|
- 📦 **Cross-platform** support (Linux systemd/init.d, macOS)
|
|
|
|
## Prerequisites
|
|
|
|
- Root/sudo access (action must run as root)
|
|
- Required commands: `curl`, `jq`, `tar`
|
|
- Linux (Ubuntu, Debian, RHEL, etc.) or macOS
|
|
- Network access to download Stalwart binaries
|
|
|
|
## Quick Start
|
|
|
|
### Basic Installation (No Configuration)
|
|
|
|
```yaml
|
|
name: Install Stalwart
|
|
on: [push]
|
|
|
|
jobs:
|
|
setup:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Install Stalwart Mail Server
|
|
uses: SebastianKrupinski/action-stalwart-install@v1
|
|
```
|
|
|
|
### Full Automated Setup
|
|
|
|
```yaml
|
|
name: Install and Configure Stalwart
|
|
on: [push]
|
|
|
|
jobs:
|
|
setup:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Install and Configure Stalwart
|
|
uses: SebastianKrupinski/action-stalwart-install@v1
|
|
with:
|
|
# Use GitHub Secrets for sensitive data!
|
|
admin_password: ${{ secrets.STALWART_ADMIN_PASSWORD }}
|
|
|
|
domains: |
|
|
[
|
|
{
|
|
"name": "example.com",
|
|
"description": "Primary domain"
|
|
},
|
|
{
|
|
"name": "example.org",
|
|
"description": "Secondary domain"
|
|
}
|
|
]
|
|
|
|
users: |
|
|
[
|
|
{
|
|
"email": "admin@example.com",
|
|
"password": "${{ secrets.ADMIN_USER_PASSWORD }}",
|
|
"name": "System Administrator",
|
|
"quota": 5368709120
|
|
},
|
|
{
|
|
"email": "support@example.com",
|
|
"password": "${{ secrets.SUPPORT_USER_PASSWORD }}",
|
|
"name": "Support Team",
|
|
"quota": 2147483648
|
|
}
|
|
]
|
|
```
|
|
|
|
## Inputs
|
|
|
|
| Input | Required | Default | Description |
|
|
|-------|----------|---------|-------------|
|
|
| `domains` | No | `""` | JSON array of domains to create. See [Domain Schema](#domain-json-schema) |
|
|
| `users` | No | `""` | JSON array of users to create. See [User Schema](#user-json-schema) |
|
|
|
|
## JSON Schemas
|
|
|
|
### Domain JSON Schema
|
|
|
|
```json
|
|
[
|
|
{
|
|
"name": "example.com", // Required: domain name
|
|
"description": "Primary domain" // Optional: description
|
|
}
|
|
]
|
|
```
|
|
|
|
**Fields:**
|
|
- `name` (string, **required**): Domain name (e.g., "example.com")
|
|
- `description` (string, optional): Human-readable description
|
|
|
|
### User JSON Schema
|
|
|
|
```json
|
|
[
|
|
{
|
|
"email": "user@example.com", // Required: email address
|
|
"password": "SecurePass123!", // Required: user password
|
|
"name": "Full Name", // Optional: display name
|
|
"quota": 1073741824 // Optional: storage quota in bytes
|
|
}
|
|
]
|
|
```
|
|
|
|
**Fields:**
|
|
- `email` (string, **required**): User email address
|
|
- `password` (string, **required**): User password (use GitHub Secrets!)
|
|
- `name` (string, optional): Display name (defaults to email if not provided)
|
|
- `quota` (integer, optional): Storage quota in bytes (default: 1GB = 1073741824)
|
|
|
|
**Common quota values:**
|
|
- 1 GB = `1073741824`
|
|
- 5 GB = `5368709120`
|
|
- 10 GB = `10737418240`
|
|
- 50 GB = `53687091200`
|
|
|
|
## Usage Examples
|
|
|
|
### Example 1: Create Domains Only
|
|
|
|
```yaml
|
|
- uses: SebastianKrupinski/action-stalwart-install@v1
|
|
with:
|
|
admin_password: ${{ secrets.STALWART_ADMIN_PASSWORD }}
|
|
domains: |
|
|
[
|
|
{"name": "example.com", "description": "Main"},
|
|
{"name": "example.net", "description": "Secondary"}
|
|
]
|
|
```
|
|
|
|
### Example 2: Complete Setup with Multiple Users
|
|
|
|
```yaml
|
|
- uses: SebastianKrupinski/action-stalwart-install@v1
|
|
with:
|
|
admin_password: ${{ secrets.STALWART_ADMIN_PASSWORD }}
|
|
|
|
domains: |
|
|
[
|
|
{"name": "mycompany.com"},
|
|
{"name": "mycompany.net"}
|
|
]
|
|
|
|
users: |
|
|
[
|
|
{
|
|
"email": "ceo@mycompany.com",
|
|
"password": "${{ secrets.CEO_PASSWORD }}",
|
|
"name": "CEO",
|
|
"quota": 10737418240
|
|
},
|
|
{
|
|
"email": "team@mycompany.com",
|
|
"password": "${{ secrets.TEAM_PASSWORD }}",
|
|
"name": "Team Mailbox",
|
|
"quota": 5368709120
|
|
},
|
|
{
|
|
"email": "noreply@mycompany.com",
|
|
"password": "${{ secrets.NOREPLY_PASSWORD }}",
|
|
"name": "No Reply",
|
|
"quota": 1073741824
|
|
}
|
|
]
|
|
```
|
|
|
|
### Example 3: Using JSON from Files
|
|
|
|
Store your configuration in separate files:
|
|
|
|
```yaml
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Stalwart
|
|
uses: SebastianKrupinski/action-stalwart-install@v1
|
|
with:
|
|
admin_password: ${{ secrets.STALWART_ADMIN_PASSWORD }}
|
|
domains: ${{ readFile('.github/stalwart/domains.json') }}
|
|
users: ${{ readFile('.github/stalwart/users.json') }}
|
|
```
|
|
|
|
## Security Best Practices
|
|
|
|
## How It Works
|
|
|
|
1. **Prerequisites Check**: Validates root access and required commands (`curl`, `jq`, `tar`)
|
|
2. **Installation**: Downloads and installs Stalwart Mail Server binary
|
|
3. **Service Setup**: Creates system user and service (systemd/init.d/launchd)
|
|
4. **API Wait**: Waits for Stalwart API to become available (up to 60 seconds)
|
|
5. **Password Update**: Changes admin password if provided
|
|
6. **Domain Creation**: Creates domains via REST API
|
|
7. **User Creation**: Creates users with passwords and quotas via REST API
|
|
|
|
## Troubleshooting
|
|
|
|
### Action Fails: "Required command 'jq' not found"
|
|
|
|
Install `jq` before running the action:
|
|
|
|
```yaml
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y jq curl
|
|
|
|
- name: Install Stalwart
|
|
uses: SebastianKrupinski/action-stalwart-install@v1
|
|
```
|
|
|
|
### Action Fails: "This action must run as root"
|
|
|
|
Use `sudo` in your workflow:
|
|
|
|
```yaml
|
|
- name: Install Stalwart
|
|
run: sudo -E env "PATH=$PATH" ...
|
|
```
|
|
|
|
Or use a container that runs as root:
|
|
|
|
```yaml
|
|
jobs:
|
|
setup:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ubuntu:latest
|
|
options: --user root
|
|
```
|
|
|
|
### Stalwart API Timeout
|
|
|
|
If the API doesn't become available in 60 seconds:
|
|
- Check system resources (CPU, memory)
|
|
- Review Stalwart logs: `journalctl -u stalwart -n 50`
|
|
- Verify port 8080 is not already in use: `netstat -tuln | grep 8080`
|
|
|
|
### Domain/User Creation Fails
|
|
|
|
- Verify JSON syntax is valid (use a JSON validator)
|
|
- Check Stalwart logs for detailed errors
|
|
- Ensure domains are created before users
|
|
- Verify email addresses match created domains
|
|
|
|
### "Failed to authenticate" Error
|
|
|
|
- Installation might already be configured
|
|
- Try accessing web UI manually: `http://localhost:8080/login`
|
|
- Check if admin password was previously changed
|
|
- Review configuration script logs
|
|
|
|
## Advanced Configuration
|
|
|
|
### Custom Installation Path
|
|
|
|
The installation path is fixed at `/opt/stalwart` to match Stalwart defaults. If you need a different path, fork this action and modify `STALWART_INSTALL_PATH`.
|
|
|
|
### Running in Docker
|
|
|
|
```yaml
|
|
jobs:
|
|
setup:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ubuntu:22.04
|
|
options: --privileged
|
|
|
|
steps:
|
|
- name: Install dependencies
|
|
run: |
|
|
apt-get update
|
|
apt-get install -y curl jq sudo systemd
|
|
|
|
- name: Install Stalwart
|
|
uses: SebastianKrupinski/action-stalwart-install@v1
|
|
with:
|
|
admin_password: ${{ secrets.STALWART_ADMIN_PASSWORD }}
|
|
```
|
|
|
|
### Post-Installation Configuration
|
|
|
|
After installation, Stalwart's web admin is available at `http://localhost:8080/login`. You can:
|
|
- Configure SMTP, IMAP, POP3 settings
|
|
- Set up SSL/TLS certificates
|
|
- Configure spam filters and antivirus
|
|
- Manage additional domains and users
|
|
- View logs and statistics
|
|
|
|
## Contributing
|
|
|
|
Contributions are welcome! Please:
|
|
1. Fork the repository
|
|
2. Create a feature branch
|
|
3. Make your changes
|
|
4. Test thoroughly
|
|
5. Submit a pull request
|
|
|
|
## License
|
|
|
|
This action is licensed under the AGPL-3.0 License. See [LICENSE](LICENSE) for details.
|
|
|
|
Stalwart Mail Server is developed by [Stalwart Labs](https://stalw.art/) and is licensed under AGPL-3.0-only OR LicenseRef-SEL.
|
|
|
|
## Support
|
|
|
|
- **Stalwart Documentation**: https://stalw.art/docs
|
|
- **Issue Tracker**: https://github.com/SebastianKrupinski/action-stalwart-install/issues
|
|
- **Stalwart Community**: https://github.com/stalwartlabs/stalwart/discussions
|
|
|
|
## Acknowledgments
|
|
|
|
- Based on the official [Stalwart installation script](https://github.com/stalwartlabs/stalwart)
|
|
- Thanks to the Stalwart Labs team for creating an excellent mail server
|
|
|
|
---
|
|
|
|
**Note**: This is an unofficial GitHub Action and is not affiliated with or endorsed by Stalwart Labs.
|