Change SMTP listener to bind on port 587 instead of 25... to circumvent the block.
This commit is contained in:
parent
5d2f866a57
commit
1a5c2ac496
1 changed files with 3 additions and 1 deletions
|
|
@ -88,7 +88,9 @@ in {
|
|||
listener = {
|
||||
smtp = {
|
||||
protocol = "smtp";
|
||||
bind = "[::]:25";
|
||||
# Use port 587 for SMTP submission with STARTTLS, as port 25 is often blocked by ISPs for outgoing mail to prevent spam.
|
||||
# This way, you can still receive mail on port 25 but require authenticated submission on port 587.
|
||||
bind = "[::]:587"; # I am so fucking fed up this shit, this fucking ISP is sending me to early grave.
|
||||
};
|
||||
submissions = {
|
||||
bind = "[::]:465";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue