Skip to content

Commit 80869d1

Browse files
authored
fix(bugs): fix smtp haproxy config, allow smtp through lb firewall (#405)
1 parent 9667e46 commit 80869d1

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

pillar/base/firewall/loadbalancer.sls

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,6 @@ firewall:
3434

3535
"buildbot.python.org:worker":
3636
port: 9020
37+
38+
"bugs.python.org:smtp":
39+
port: 20025

pillar/base/haproxy.sls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ haproxy:
167167
- timeout server 86400
168168

169169
{# We can extend this for smtps/submission later #}
170-
{% for (port, service, ssl) in [(25, "smtp", False)] %}
170+
{% for (port, service, ssl) in [(20025, "smtp", False)] %}
171171
roundup-{{ service }}:
172172
bind: :{{ port }} {% if ssl %} ssl crt /etc/ssl/private/bugs.python.org.pem {% endif %}
173173
service: roundup-{{ service }}

0 commit comments

Comments
 (0)