stalwartlabs / smtp-server

Stalwart SMTP Server
https://stalw.art/smtp
GNU Affero General Public License v3.0
495 stars 25 forks source link

Use IPs as LMTP addresses #11

Open mhxim opened 1 year ago

mhxim commented 1 year ago

Currently, remote LMTP servers are only addressable via hostname. It would be easier if IP addresses could also be used as remote LMTP addresses.

Current config

[remote."lmtp"]
address = "mylmtpserver"
port = 11200
protocol = "lmtp"
...

Desired config

[remote."lmtp"]
address = "10.1.0.2"
port = 11200
protocol = "lmtp"
...