File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -431,21 +431,21 @@ Binding to IPv4 or IPv6
431
431
432
432
.. versionadded :: 7.3
433
433
434
- The option to bind to IPv4 or IPv6 or a specific IP address was introduced in Symfony 7.3.
434
+ The option to bind to IPv4, or IPv6, or a specific IP address was introduced in Symfony 7.3.
435
435
436
- By default, the underlying SocketStream will bind to IPv4 or IPv6 depending on the available
437
- interfaces. By specifying the `` source_ip `` option, binding to either IPv4 or IPv6 can be enforced,
438
- or even to a specific address . To bind to IPv4, use::
436
+ By default, the underlying `` SocketStream `` will bind to IPv4 or IPv6 based on the
437
+ available interfaces. You can enforce binding to a specific protocol or IP address
438
+ by using the `` source_ip `` option . To bind to IPv4, use::
439
439
440
440
$dsn = 'smtp://smtp.example.com?source_ip=0.0.0.0';
441
441
442
- As per RFC2732, IPv6 addresses must be surrounded by square brackets. To bind to IPv6, use::
442
+ As per RFC2732, IPv6 addresses must be enclosed in square brackets. To bind to IPv6, use::
443
443
444
444
$dsn = 'smtp://smtp.example.com?source_ip=[::]';
445
445
446
446
.. note ::
447
447
448
- This setting only works when the ``smtp:// `` protocol is used .
448
+ This option only works when using the ``smtp:// `` protocol.
449
449
450
450
Overriding default SMTP authenticators
451
451
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
You can’t perform that action at this time.
0 commit comments