# exim mit Homebrew, apk, dnf, MacPorts, Nix, pacman, zypper installieren

Prüfe Installationswege, Executables, Metadaten und Sicherheitshinweise für exim in AI-Agent-Workflows.

## Installation

```sh
sudo av install brew:exim
```

Weitere Installationsbefehle:

### macOS

- Homebrew (100%):

```sh
brew install exim
```

  Evidenz: local Homebrew formula metadata

- MacPorts (94%):

```sh
sudo port install exim
```

  Evidenz: MacPorts ports tree: mail/exim/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1

### Linux

- apk (92%):

```sh
sudo apk add exim
```

  Evidenz: Alpine Linux edge package indexes: exim from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz

- dnf (92%):

```sh
sudo dnf install exim
```

  Evidenz: Fedora Rawhide package metadata: exim from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst

- Nix (92%):

```sh
nix profile install nixpkgs#exim
```

  Evidenz: nixpkgs package indexes: pkgs/by-name/ex/exim/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1

- pacman (92%):

```sh
sudo pacman -S exim
```

  Evidenz: Arch Linux sync databases: exim from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz

- zypper (92%):

```sh
sudo zypper install exim
```

  Evidenz: openSUSE Tumbleweed package metadata: exim from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst

## Paketfakten

- **Paketschlüssel:** brew:exim
- **Paketmanager:** Homebrew
- **Version:** 4.99.5
- **Quellzusammenfassung:** Complete replacement for sendmail
- **Homepage:** <https://exim.org>
- **Zuletzt aktualisiert:** 2026-07-22T16:04:55Z
- **Generiert:** 2026-08-03T19:37:03+00:00

## Executables

- exicyclog (Alias)
- exigrep (Alias)
- exim (Alias)
- exim-4.99.5-2 (Alias)
- exim_checkaccess (Alias)
- exim_ctl (Alias)
- exim_dbmbuild (Alias)
- exim_dumpdb (Alias)
- exim_fixdb (Alias)
- exim_id_update (Alias)
- exim_lock (Alias)
- exim_msgdate (Alias)
- exim_tidydb (Alias)
- eximstats (Alias)
- exinext (Alias)
- exipick (Alias)
- exiqgrep (Alias)
- exiqsumm (Alias)
- exiwhat (Alias)

## Installationsverhalten

- Bottle: nicht verfügbar

## Version und Aktualität

- Seite generiert: 2026-08-03
- Manager-Version: 4.99.5
## Projektgeschichte und Nutzung

Exim is a Unix-oriented mail transfer agent from the University of Cambridge, built for Internet-connected hosts and distributed under the GPL. It matters in package-manager culture because it is one of the long-lived sendmail replacements that administrators can install as a real MTA, a queueing mail system, and a command-line-compatible submission tool.

### Projektgeschichte

The current Exim specification describes Exim as an MTA for Unix and Unix-like hosts, designed around permanently connected Internet systems but configurable for intermittent links. Its own introduction explicitly places it in the Smail 3 lineage: many ideas and user interfaces came from Smail, while the Exim codebase was new and later grew beyond that initial model.

Exim's documentation and distribution model are also part of its history. The project has long shipped a large reference specification, command-line man page, filter language documentation, upgrade notes, and per-release change logs. Source releases are published from exim.org, with signed tarballs and a separate public Git repository for people who want to track the source tree directly.

### Adoptionsgeschichte

An Exim 3.20 overview from 2000 already described production use at sites handling hundreds of thousands of messages per day. The current documentation points to mailing lists for announcements, user support, development, and automated VCS messages, plus independent mirror sites, which reflects the classic Unix server-project adoption pattern: distro packages, local site policy, mailing-list support, and careful upgrades.

Exim gained popularity as a sendmail-compatible replacement without requiring administrators to learn sendmail configuration. Its current manual says Exim adopts the Sendmail command-line interface so it can replace /usr/lib/sendmail or /usr/sbin/sendmail for message submission, while still producing Exim-specific output for administrative commands such as queue listings.

### Wie es verwendet wird

Exim is used to receive, queue, route, and deliver mail over SMTP and related transports. Administrators care about its runtime configuration file, router and transport model, ACLs, queue runner, logs, and privileged execution model because those determine how mail policy, local delivery, forwarding, relaying, and security boundaries behave on a server.

The package exposes a cluster of operational tools around the main exim binary, such as queue inspection, log grepping, database maintenance, and statistics commands. That shape is why it appears in package managers as a service-oriented package rather than a single-purpose CLI utility.

### Warum Paket-Nerds sich dafür interessieren

For package maintainers, Exim is a security-sensitive daemon with signed upstream releases, build-time paths, runtime privilege rules, and distro-specific defaults. The official manual notes that the runtime configuration filename is compiled in through CONFIGURE_FILE, which explains why packaged Exim builds often differ in configuration paths and default integration details.

Exim is also historically interesting because major policy behavior changed over time. The official DNSBL HOWTO notes that Exim 4.00 moved incoming-mail policy checks to ACLs, making Exim 4 configuration materially different from Exim 3 for common anti-abuse setups.

### Zeitleiste

- 2000: Exim 3.20 overview documented production use at high-volume sites.
- 4.00: Incoming mail policy checks moved to ACLs.
- 4.73: Runtime configuration file permission rules were tightened.
- 4.99.4: Current specification documents the modern Exim 4 series.

### Related projects

- Smail 3 is the direct design predecessor named by Exim's own documentation.
- Sendmail is the compatibility target for Exim's message-submission command-line interface.
- DNSBL services, TLS libraries, DBM libraries, and content scanners are common integration points documented around Exim deployments.

### Quellen

- <https://www.exim.org/>
- <https://www.exim.org/exim-html-current/doc/html/spec_html/ch-introduction.html>
- <https://www.exim.org/download.html>
- <https://www.exim.org/exim-html-current/doc/html/spec_html/ch-the_exim_runtime_configuration_file.html>
- <https://www.exim.org/howto/rbl.html>
- <https://www.exim.org/exim-html-3.20/doc/html/oview.html>


## Sicherheitshinweise

generalized runtime or code generation signal.

- **Geiger-Risiko:** yellow / mittel
- generalized runtime or code generation signal

## Andere Paketmanager-Einträge

- Nix - exim: normalized package name match | nixpkgs package indexes: pkgs/by-name/ex/exim/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
- apk - exim - 4.99.5-r0: normalized package name match | Alpine Linux edge package indexes: exim from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Message Transfer Agent | https://www.exim.org/
- apk - exim-cdb - 4.99.5-r0: normalized package name match | Alpine Linux edge package indexes: exim-cdb from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | EXIM extension: cdb | https://www.exim.org/
- apk - exim-dbmdb - 4.99.5-r0: normalized package name match | Alpine Linux edge package indexes: exim-dbmdb from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | EXIM extension: dbmdb | https://www.exim.org/
- apk - exim-dnsdb - 4.99.5-r0: normalized package name match | Alpine Linux edge package indexes: exim-dnsdb from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | EXIM extension: dnsdb | https://www.exim.org/
- apk - exim-doc - 4.99.5-r0: normalized package name match | Alpine Linux edge package indexes: exim-doc from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Message Transfer Agent (documentation) | https://www.exim.org/
- apk - exim-mysql - 4.99.5-r0: normalized package name match | Alpine Linux edge package indexes: exim-mysql from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | EXIM extension: mysql | https://www.exim.org/
- apk - exim-openrc - 4.99.5-r0: normalized package name match | Alpine Linux edge package indexes: exim-openrc from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Message Transfer Agent (OpenRC init scripts) | https://www.exim.org/
- apk - exim-postgresql - 4.99.5-r0: normalized package name match | Alpine Linux edge package indexes: exim-postgresql from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | EXIM extension: pgsql | https://www.exim.org/
- apk - exim-scripts - 4.99.5-r0: normalized package name match | Alpine Linux edge package indexes: exim-scripts from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | EXIM scripts | https://www.exim.org/
- apk - exim-sqlite - 4.99.5-r0: normalized package name match | Alpine Linux edge package indexes: exim-sqlite from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | EXIM extension: sqlite | https://www.exim.org/
- apk - exim-utils - 4.99.5-r0: normalized package name match | Alpine Linux edge package indexes: exim-utils from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | EXIM utils | https://www.exim.org/
- dnf - exim - 4.99.4-4.fc45: normalized package name match | Fedora Rawhide package metadata: exim from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst | The exim mail transfer agent | https://www.exim.org/
- dnf - exim-clamav - 4.99.4-4.fc45: normalized package name match | Fedora Rawhide package metadata: exim-clamav from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst | Clam Antivirus scanner dæmon configuration for use with Exim | https://www.exim.org/
- dnf - exim-greylist - 4.99.4-4.fc45: normalized package name match | Fedora Rawhide package metadata: exim-greylist from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst | Example configuration for greylisting using Exim | https://www.exim.org/
- dnf - exim-mon - 4.99.4-4.fc45: normalized package name match | Fedora Rawhide package metadata: exim-mon from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst | X11 monitor application for Exim | https://www.exim.org/


## Combined YAML source

View the package source record on GitHub. [combined/exim.yml](https://github.com/mxcl/pkgdb/blob/main/combined/exim.yml)


## Quellen

- pkg.so package database
- Geiger risk classifier
- curated package history
- pkgdb category and tag curation
- external package-manager database matches
- cross-ecosystem install command graph
