Delivery mail server for the AgentJ stack
2.1K
This is the Docker stack to set up a fully functional AgentJ antispam system at a glance.
The AgentJ Docker stack is composed of the following services:
All you have to do is to clone the repository
git clone https://github.com/Probesys/agentj.git
then, cd to the cloned repository to configure a few variables:
cd agentj
Variables are defined in the .env.example. This file is just a template, you must copy and rename it to .env:
cp .env.example .env
Then the following runtime variables must be configured in the .env file:
| Variable | Default | Use |
|---|---|---|
| VERSION | this AgentJ latest prod version | |
| COMPOSE_PROJECT_NAME | local | this AgentJ instance name |
| DB_ROOT_PASSWORD | secret | the MariaDB instance root password |
| DB_NAME | agentj | the AgentJ database name |
| DB_USER | agentj | the AgentJ database user name |
| DB_PASSWORD | secret | the AgentJ database password |
| IPV4_NETWORK | 172.42.42 | the AgentJ Docker default network |
| MAIL_HOSTNAME | aj.example.com | the mailname used in postfix configuration |
| MAIL_DOMAINNAME | example.com | the domain name used in relay configuration |
| SUPER_ADMIN_USERNAME | admin | default super admin login |
| SUPER_ADMIN_PASSWORD | Sup3rZECR37 | default super admin password |
| TZ | Europe/Paris | the containers default timezone |
| PROXY_PORT | 8090 | default listening port for web interface |
| PROXY_LISTEN_ADDR | 127.0.0.1 | default listening address for web interface |
| SMTP_PORT | 25 | default listening port for smtp server |
| SMTP_LISTEN_ADDR | 0.0.0.0 | default listening address for smtp server |
| OAUTH_AZURE_CLIENT_SECRET | secret | client secret if using Azure auth |
| OAUTH_AZURE_CLIENT_ID | secret | client ID if using Azure auth |
| ENABLE_AZURE_OAUTH | false | enable Azure OAuth |
| TRUSTED_PROXIES | 172.24.42.1 | default stack gateway |
| CLAMAV_AUTOSTART | true | use the ClamAV instance of this stack |
| CLAMAV_TCPADDRESS | 0.0.0.0 | remote ClamAV server IP address |
| CLAMAV_TCPPORT | 3310 | remote ClamAV server TCP port |
The AgentJ antispam stack has its own Docker bridge and IPv4 subnet which defaults to 172.24.42.0/24 (configurable, see variables table above).
It is not recommended to launch the stack as root. We recommend you to create a dedicated docker user (make sure it belongs to the docker group). After you have set the above variables, you can start the stack with following commands:
docker-compose up -d
The Web UI will be available at http://hostname:8090.
The default login is admin and the default password is Sup3rZECR37.
When started, the AgentJ stack will create the following volumes:
| from ↓ \ to → | amavis | app | db | relay | smtp | syslog |
|---|---|---|---|---|---|---|
| amavis (10024/tcp) | - | - | ? → 3306/tcp | - | ? → 10025/tcp | ? → 514/udp |
| app (8090/tcp) | ? → 9998/tcp | - | ? → 3306/tcp | ??? | ? → 514/udp | - |
| db (3306/tcp) | - | - | - | - | - | ? → 514/udp |
| relay 25/tcp) | - | - | - | - | - | ? → 514/udp |
| stmp (25/tcp 10025/tcp) | ? → 10024/tcp | - | ? → 3306/tcp | ? → 25/tcp | ? → 514/udp | - |
| syslogng (514/udp) | - | - | - | - | - | ? → 514/udp |
Please read the dedicated documentation as well as releases notes before upgrading.
Generally speaking, the upgrade processes consists in the following:
docker-compose down
# Change VERSION variable in your `.nev` file
docker-compose up -d
This work is made available under the GNU Affero General Public License v3.0.
AgentJ is a Probesys project.
Content type
Image
Digest
sha256:47705364c…
Size
38.5 MB
Last updated
over 1 year ago
docker pull probesys38/agentj_relay