Skip to content

MailHook v0.1.0

Choose a tag to compare

@github-actions github-actions released this 26 May 09:54
· 24 commits to main since this release

Installation

Docker Compose (recommended)

curl -fsSL https://github.com/izm1chael/MailHook/releases/latest/download/docker-compose.yml -o docker-compose.yml
cp .env.example .env   # edit IMAP accounts + secrets
docker compose up -d

Debian / Ubuntu (.deb)

Requires Ubuntu 24.04+ or Debian 13+. Depends on libyara10.

# Download the .deb for your architecture (amd64 or arm64)
sudo apt-get install ./mailhook_*_amd64.deb

# Configure and start
sudo nano /etc/mailhook/config.yaml   # IMAP accounts
sudo nano /etc/mailhook/mailhook.env  # secrets
sudo systemctl start mailhook

RPM (Fedora / RHEL)

Requires YARA 4.x (dnf install yara). RHEL users need EPEL.

sudo dnf install yara
sudo rpm -i mailhook_*.x86_64.rpm

sudo nano /etc/mailhook/config.yaml
sudo nano /etc/mailhook/mailhook.env
sudo systemctl start mailhook

Bare binary

Download mailhook-linux-amd64 (or -arm64), make it executable, and run it:

chmod +x mailhook-linux-amd64
MAILHOOK_CONFIG=/path/to/config.yaml ./mailhook-linux-amd64

Checksums

See SHA256SUMS in the release assets to verify your download.

What's Changed