docker-mailserver/docs/content/config/troubleshooting/faq.md

138 lines
6.0 KiB
Markdown
Raw Normal View History

2016-02-01 15:02:34 +01:00
### What kind of database are you using?
None. No *sql database required.
This image is based on config files that can be versioned.
You'll probably want to `push` your config updates to your server and restart the container to apply changes.
2016-12-17 16:29:44 +01:00
### How can I sync container with host date/time?
Share the host `/etc/localtime` using:
```
volumes:
- /etc/localtime:/etc/localtime:ro
```
2016-10-11 05:25:41 +02:00
### What is the file format?
2016-04-25 06:08:46 +02:00
2016-10-11 05:25:41 +02:00
All files are using the Unix format with `LF` line endings.
Please do not use `CRLF`.
2016-04-25 06:08:46 +02:00
2016-02-01 15:02:34 +01:00
### Where are emails stored?
Mails are stored in `/var/mail/${domain}/${username}`.
2016-02-10 09:42:22 +01:00
You should use a [data volume container](https://medium.com/@ramangupta/why-docker-data-containers-are-good-589b3c6c749e#.uxyrp7xpu) for `/var/mail` to persist data. Otherwise, your data may be lost.
2016-02-10 09:36:57 +01:00
### What about backups?
Assuming that you use `docker-compose` and a data volume container named `maildata`, you can backup your user mails like this:
docker run --rm \
--volume dockermailserver_maildata:/var/mail \
2016-02-10 09:36:57 +01:00
-v "$(pwd)":/backups \
-ti tvial/docker-mailserver \
tar cvzf /backups/docker-mailserver-`date +%y%m%d-%H%M%S`.tgz /var/mail
2016-02-01 15:02:34 +01:00
### How can I configure my email client?
Login are full email address (`user@domain.com`).
# imap
username: <user1@domain.tld>
password: <mypassword>
server: <mail.domain.tld>
imap port: 143 or 993 with ssl (recommended)
imap path prefix: INBOX
# smtp
smtp port: 25 or 587 with ssl (recommended)
username: <user1@domain.tld>
password: <mypassword>
2016-04-22 17:01:44 +02:00
Please use `STARTTLS`.
2016-02-01 15:02:34 +01:00
### How can I manage my custom Spamassassin rules?
2016-09-12 16:00:05 +02:00
Antispam rules are managed in `config/spamassassin-rules.cf`.
### Why are Spamassassin x-headers not inserted into my sample.domain.com subdomain emails?
2017-01-29 17:45:33 +01:00
In the default setup, amavis only applies Spamassassin x-headers into domains matching the template listed in the config file 05-domain_id (in the amavis defaults). The default setup @local_domains_acl = ( ".$mydomain" ); does not match subdomains. To match subdomains, you can override the @local_domains_acl directive in the amavis user config file 50-user with @local_domains_maps = ("."); to match any sort of domain template.
2016-09-12 16:00:05 +02:00
### How can I make Spamassassin learn spam?
2017-01-29 17:45:33 +01:00
Put received spams in `.Junk/` imap folder and add a cron like the following:
2016-09-12 16:00:05 +02:00
```
# Everyday 2:00AM, learn spam for this specific user
2017-01-19 21:39:20 +01:00
# This assumes you're having `ONE_DIR=1` (consolidated in `/var/mail-state`)
2017-01-05 09:06:21 +01:00
0 2 * * * docker exec mail sa-learn --spam /var/mail/domain.com/username/.Junk --dbpath /var/mail-state/lib-amavis/.spamassassin
2016-09-12 16:00:05 +02:00
```
2016-02-01 15:02:34 +01:00
2019-01-30 08:32:42 +01:00
If you run the server with docker compose on swarm, you can leverage on docker configs and the mailserver's own cron.
The following config works nicely:
```
version: "3.3"
services:
redis:
image: tvial/docker-mailserver:latest
// ...
configs:
- source: my_sa_crontab
target: /etc/cron.d/user-salearn-1
- source: my_crontab_config
target: /etc/cron.d/user-salearn-2
// ...
configs:
my_sa_crontab:
file: ./my_local_crontab.txt
my_crontab_config:
external: true
```
The config should contain the lines shown above.
2019-01-19 12:23:27 +01:00
With the default settings, Spamassassin will require 200 mails trained for spam (for example with the method explained above) and 200 mails trained for ham (using the same command as above but using `--ham` and providing it with some ham mails). Until you provided these 200+200 mails, Spamassasin will not take the learned mails into account. For further reference, see the [Spamassassin Wiki](https://wiki.apache.org/spamassassin/BayesNotWorking).
2017-01-19 22:14:17 +01:00
2016-02-01 15:02:34 +01:00
### What kind of SSL certificates can I use?
You can use the same certificates you use with another mail server.
2016-03-04 18:56:45 +01:00
The only thing is that we provide a `self-signed` certificate tool and a `letsencrypt` certificate loader.
2016-03-04 18:57:22 +01:00
### I just moved from my old mail server but "it doesn't work".
2016-03-04 18:56:45 +01:00
If this migration implies a DNS modification, be sure to wait for DNS propagation before opening an issue.
Few examples of symptoms can be found [here](https://github.com/tomav/docker-mailserver/issues/95) or [here](https://github.com/tomav/docker-mailserver/issues/97).
2016-03-04 18:59:32 +01:00
This could be related to a modification of your `MX` record, or the IP mapped to `mail.my-domain.tld`.
If everything is OK regarding DNS, please provide [formatted logs](https://guides.github.com/features/mastering-markdown/) and config files. This will allow us to help you.
2016-09-20 16:34:48 +02:00
If we're blind, we won't be able to do anything.
### Which system requirements needs my container to run `docker-mailserver` effectively?
2017-08-19 10:07:20 +02:00
1 core and 1GB of RAM + Swap partition is recommended to run `docker-mailserver` with Clamav.
Otherwise, it could work with 512M of RAM.
### Is `docker-mailserver` running in a [rancher environment](http://rancher.com/rancher/)?
2017-01-09 17:39:22 +01:00
Yes, by Adding the Environment Variable `PERMIT_DOCKER: network`.
### Common errors
```
warning: connect to Milter service inet:localhost:8893: Connection refused
# DMARC not running
# => /etc/init.d/opendmarc restart
warning: connect to Milter service inet:localhost:8891: Connection refused
# DKIM not running
# => /etc/init.d/opendkim restart
2017-08-19 10:07:20 +02:00
mail amavis[1459]: (01459-01) (!)connect to /var/run/clamav/clamd.ctl failed, attempt #1: Can't connect to a UNIX socket /var/run/clamav/clamd.ctl: No such file or directory
mail amavis[1459]: (01459-01) (!)ClamAV-clamd: All attempts (1) failed connecting to /var/run/clamav/clamd.ctl, retrying (2)
mail amavis[1459]: (01459-01) (!)ClamAV-clamscan av-scanner FAILED: /usr/bin/clamscan KILLED, signal 9 (0009) at (eval 100) line 905.
mail amavis[1459]: (01459-01) (!!)AV: ALL VIRUS SCANNERS FAILED
# Clamav is not running (not started or because you don't have enough memory)
# => check requirements and/or start Clamav
```
### What about updates
You can of course use a own script or every now and then pull && stop && rm && start the images but there are tools available for this.
There is a page in the [Update and cleanup](Update-and-cleanup) wiki page that explains how to use it the docker way.