Browse Source

added postfix smtps

tags/v1.3.0
Robin Thoni 7 years ago
parent
commit
04b8f08ec1
2 changed files with 6 additions and 5 deletions
  1. 1
    0
      docker-compose.yml
  2. 5
    5
      postfix/config/master.cf

+ 1
- 0
docker-compose.yml View File

37
                     - postfix.mx.internal.docker
37
                     - postfix.mx.internal.docker
38
         ports:
38
         ports:
39
             - "0.0.0.0:25:25"
39
             - "0.0.0.0:25:25"
40
+            - "0.0.0.0:465:465"
40
             - "0.0.0.0:587:587"
41
             - "0.0.0.0:587:587"
41
         env_file:
42
         env_file:
42
             - env
43
             - env

+ 5
- 5
postfix/config/master.cf View File

14
   -o smtpd_sasl_auth_enable=yes
14
   -o smtpd_sasl_auth_enable=yes
15
   -o smtpd_client_restrictions=permit_sasl_authenticated,reject
15
   -o smtpd_client_restrictions=permit_sasl_authenticated,reject
16
   -o milter_macro_daemon_name=ORIGINATING
16
   -o milter_macro_daemon_name=ORIGINATING
17
-#smtps     inet  n       -       -       -       -       smtpd
18
-#  -o smtpd_tls_wrappermode=yes
19
-#  -o smtpd_sasl_auth_enable=yes
20
-#  -o smtpd_client_restrictions=permit_sasl_authenticated,reject
21
-#  -o milter_macro_daemon_name=ORIGINATING
17
+smtps     inet  n       -       -       -       -       smtpd
18
+  -o smtpd_tls_wrappermode=yes
19
+  -o smtpd_sasl_auth_enable=yes
20
+  -o smtpd_client_restrictions=permit_sasl_authenticated,reject
21
+  -o milter_macro_daemon_name=ORIGINATING
22
 #628       inet  n       -       -       -       -       qmqpd
22
 #628       inet  n       -       -       -       -       qmqpd
23
 pickup    fifo  n       -       -       60      1       pickup
23
 pickup    fifo  n       -       -       60      1       pickup
24
 cleanup   unix  n       -       -       -       0       cleanup
24
 cleanup   unix  n       -       -       -       0       cleanup

Loading…
Cancel
Save