Skip to content

Commit 9af0ac9

Browse files
committed
fix(mail): correct default SMTP host IP address
1 parent 85f24b5 commit 9af0ac9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/mail/src/mail.config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
'smtps' => SmtpScheme::SMTPS,
2121
'smtp' => SmtpScheme::SMTP,
2222
},
23-
host: env('MAIL_SMTP_HOST', default: '127.0.0.0'),
23+
host: env('MAIL_SMTP_HOST', default: '127.0.0.1'),
2424
port: env('MAIL_SMTP_PORT', default: 2525),
2525
username: env('MAIL_SMTP_USERNAME', default: ''),
2626
password: env('MAIL_SMTP_PASSWORD', default: ''),

0 commit comments

Comments
 (0)