Skip to content

Commit 309ba42

Browse files
committed
Merge branch '5.3' into 5.4
* 5.3: [HttpClient] Don't ignore errors from curl_multi_exec() [HttpClient] Double check if handle is complete CI for macOS [DependencyInjection] Resolve ChildDefinition in AbstractRecursivePass [Translation] [Bridge] [Lokalise] Fix push keys to lokalise. Closes #… [PropertyAccess] Fix accessing public property in Object [Process] fixed uppercase ARGC and ARGV should also be skipped [PropertyAccess] Add tests accessing public (dynamic) properties [Mailer] Update docs for sendmail -t [FrameworkBundle] Fix cache pool configuration with one adapter and one provider [FrameworkBundle] Use correct cookie domain in loginUser() Missing translations for Belarusian (be) #41032
2 parents 2823212 + bef14df commit 309ba42

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

Transport/SendmailTransport.php

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@
2323
/**
2424
* SendmailTransport for sending mail through a Sendmail/Postfix (etc..) binary.
2525
*
26-
* Supported modes are -bs and -t, with any additional flags desired.
27-
* It is advised to use -bs mode since error reporting with -t mode is not
28-
* possible.
29-
*
3026
* Transport can be instanciated through SendmailTransportFactory or NativeTransportFactory:
3127
*
3228
* - SendmailTransportFactory to use most common sendmail path and recommanded options
@@ -44,11 +40,14 @@ class SendmailTransport extends AbstractTransport
4440
/**
4541
* Constructor.
4642
*
47-
* If using -t mode you are strongly advised to include -oi or -i in the flags.
48-
* For example: /usr/sbin/sendmail -oi -t
49-
* -f<sender> flag will be appended automatically if one is not present.
43+
* Supported modes are -bs and -t, with any additional flags desired.
5044
*
5145
* The recommended mode is "-bs" since it is interactive and failure notifications are hence possible.
46+
* Note that the -t mode does not support error reporting and does not support Bcc properly (the Bcc headers are not removed).
47+
*
48+
* If using -t mode, you are strongly advised to include -oi or -i in the flags (like /usr/sbin/sendmail -oi -t)
49+
*
50+
* -f<sender> flag will be appended automatically if one is not present.
5251
*/
5352
public function __construct(string $command = null, EventDispatcherInterface $dispatcher = null, LoggerInterface $logger = null)
5453
{

0 commit comments

Comments
 (0)