Skip to content

Commit 50d5dd8

Browse files
Merge branch '4.4'
* 4.4: [ErrorRenderer] FlattenException cannot be final Fixing issue where worker-only middleware were run in all contexts [Messenger] Removing "sync" transport and replacing it with much nicer config trick Use port 465 for SES SMTP transport [DI] made the `%env(base64:...)%` processor able to decode base64url [VarDumper] improve displaying cut closures Set ReturnType of LockFactory to LockInterface [EventDispatcher] handle lazy-callable invokable
2 parents f917a50 + b375c7f commit 50d5dd8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Amazon/Transport/SesSmtpTransport.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class SesSmtpTransport extends EsmtpTransport
2525
*/
2626
public function __construct(string $username, string $password, string $region = null, EventDispatcherInterface $dispatcher = null, LoggerInterface $logger = null)
2727
{
28-
parent::__construct(sprintf('email-smtp.%s.amazonaws.com', $region ?: 'eu-west-1'), 587, true, $dispatcher, $logger);
28+
parent::__construct(sprintf('email-smtp.%s.amazonaws.com', $region ?: 'eu-west-1'), 465, true, $dispatcher, $logger);
2929

3030
$this->setUsername($username);
3131
$this->setPassword($password);

SesSmtpTransport.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class SesSmtpTransport extends EsmtpTransport
2525
*/
2626
public function __construct(string $username, string $password, string $region = null, EventDispatcherInterface $dispatcher = null, LoggerInterface $logger = null)
2727
{
28-
parent::__construct(sprintf('email-smtp.%s.amazonaws.com', $region ?: 'eu-west-1'), 587, true, $dispatcher, $logger);
28+
parent::__construct(sprintf('email-smtp.%s.amazonaws.com', $region ?: 'eu-west-1'), 465, true, $dispatcher, $logger);
2929

3030
$this->setUsername($username);
3131
$this->setPassword($password);

0 commit comments

Comments
 (0)