From 6dec69d3f9ef02e85ba860f60d6b305c613c8e3a Mon Sep 17 00:00:00 2001 From: Thomas VIAL Date: Mon, 1 Feb 2016 15:02:34 +0100 Subject: [PATCH] Initial FAQ --- docs/content/config/troubleshooting/faq.md | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 docs/content/config/troubleshooting/faq.md diff --git a/docs/content/config/troubleshooting/faq.md b/docs/content/config/troubleshooting/faq.md new file mode 100644 index 00000000..61dabcdf --- /dev/null +++ b/docs/content/config/troubleshooting/faq.md @@ -0,0 +1,34 @@ +# FAQ + +### 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. + +### Where are emails stored? +Mails are stored in `/var/mail/${domain}/${username}`. +You should use a data volume container for `/var/mail` for data persistence. Otherwise, your data may be lost. + +### How can I configure my email client? +Login are full email address (`user@domain.com`). +Both login and password are managed in `postfix/accounts.cf` file. +Please have a look to the `README` in order to manage users and aliases. + + # imap + username: + password: + server: + imap port: 143 or 993 with ssl (recommended) + imap path prefix: INBOX + + # smtp + smtp port: 25 or 587 with ssl (recommended) + username: + password: + +### How can I manage my custom Spamassassin rules? +Antispam rules are managed in `spamassassin/rules.cf`. + +### What kind of SSL certificates can I use? +You can use the same certificates you use with another mail server. +The only thing is that we provide a `self-signed` certificate tool and a `letsencrypt` certificate loader.