Fix a config for postfix in the docs.

This commit is contained in:
maxking
2017-06-14 17:54:50 -07:00
parent b16e4aae82
commit 8247dbdffd

View File

@@ -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;
}