Compiling
On this page
Overview
Compiling Stalwart IMAP from the source has the main advantage that binaries are built with optimizations specific to your hardware which may result in better performance. Another advantage is that you may enable or disable features to suit your needs.
To compile Stalwart IMAP you need the latest version of Rust.
Install Rust
The fastest way to install rust is with rustup
. On Unix systems run the following in your terminal, then follow the onscreen instructions
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
If you are running Windows 64-bit, download and run rustup‑init.exe, then follow the onscreen instructions.
Clone Repo
Clone the Stalwart IMAP repository:
git clone https://github.com/stalwartlabs/imap-server.git
cd imap-server
Compile
Compile Stalwart IMAP by executing:
cargo build --release
Once the compilation process is completed, the Stalwart IMAP
binary will be available under target/release/stalwart-imap
.