Skip to content

Commit

Permalink
fix(smtp-server): listen on all interfaces by default
Browse files Browse the repository at this point in the history
This is the same behaviour as when using v1 configuration. Unlike the
web server which is proxied, most people are going to need this so having
the default remain seems like the easiest path for upgrades.

see #2852
  • Loading branch information
adamcooke committed Mar 6, 2024
1 parent 33513a7 commit d1e5b68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/postal/config_schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ module Postal

string :default_bind_address do
description "The default bind address the SMTP server should listen on unless overriden by the BIND_ADDRESS environment variable"
default "127.0.0.1"
default "::"
end

integer :default_health_server_port do
Expand Down

0 comments on commit d1e5b68

Please sign in to comment.