From 8247dbdffd8fcd096c01fbe43866e5a37bed9d3d Mon Sep 17 00:00:00 2001 From: maxking Date: Wed, 14 Jun 2017 17:54:50 -0700 Subject: [PATCH] Fix a config for postfix in the docs. --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 573ad1d..2e88131 100644 --- a/README.md +++ b/README.md @@ -174,10 +174,10 @@ Exim, but just for the reference, it looks like this: [mta] incoming: mailman.mta.exim4.LMTP outgoing: mailman.mta.deliver.deliver -lmtp_host: $MM_HOSTNAME +lmtp_host: $MM_HOSTNAME # IP Address of mailman-core cotainer. lmtp_port: 8024 -smtp_host: $SMTP_HOST -smtp_port: $SMTP_PORT +smtp_host: $SMTP_HOST # IP Address of host where exim is. +smtp_port: $SMTP_PORT # Port on which exim is listening. configuration: python:mailman.config.exim4 ``` @@ -213,9 +213,9 @@ To configure Mailman to use Postfix, add the following to `mailman-extra.cfg` at [mta] incoming: mailman.mta.postfix.LMTP outgoing: mailman.mta.deliver.deliver -lmtp_host: 172.19.199.3 +lmtp_host: 172.19.199.2 # IP Address of mailman-core container lmtp_port: 8024 -smtp_host: 172.19.199.1 +smtp_host: 172.19.199.1 # IP Address of host where postfix is. smtp_port: 25 configuration: /etc/postfix-mailman.cfg ``` @@ -247,8 +247,8 @@ server { location / { # First attempt to serve request as file, then - include uwsgi_params; - uwsgi_pass 172.19.199.3:8000; + include uwsgi_params; + uwsgi_pass 172.19.199.3:8000; }