diff options
author | Louise Crow <louise.crow@gmail.com> | 2014-08-11 16:31:10 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2014-08-11 16:31:10 +0100 |
commit | e35426bd5adb6fb003f718f25baab73763134563 (patch) | |
tree | 5f8b1fcdad0b2cfe6bd1f0560ee2ac41d3226352 /docs/installing/email.md | |
parent | 1a076552cfbf0aff636c1b8ec100ae189b17006f (diff) |
Add better headings, start with basic configuration
Diffstat (limited to 'docs/installing/email.md')
-rw-r--r-- | docs/installing/email.md | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/docs/installing/email.md b/docs/installing/email.md index 300c20036..f62c1f3ce 100644 --- a/docs/installing/email.md +++ b/docs/installing/email.md @@ -114,15 +114,26 @@ This section shows an example of how to set up your MTA if you're using [postfix](#example-setup-on-postfix) if you're using that instead of exim4. -### Instructions +### Install exim4 Install exim4: apt-get install exim4 -We suggest you add the following to your exim configuration. -In `/etc/exim4/conf.d/main/04_alaveteli_options`, set: +### Configure exim4 + +#### Set up exim to receive mail from other servers + +Edit `/etc/exim4/update-exim4.conf.conf`. Set the following settings (use your hostname, not `example.com`): + + dc_eximconfig_configtype='internet' + dc_other_hostnames='example.com' + dc_local_interfaces='0.0.0.0 ; ::1' + dc_use_split_config='true' + +This final line tells exim to use the files in `/etc/exim4/conf.d` to configure itself. + ALAVETELI_HOME=/var/www/alaveteli ALAVETELI_USER=alaveteli |