Skip to content

Commit

Permalink
Merge branch '6.3' into 6.4
Browse files Browse the repository at this point in the history
* 6.3:
  [AssetMapper] Fixing import parsing from jsdelivr
  Fix htaccess sample to use index.php instead of app.php
  [SecurityBundle] Add `firewalls.logout.csrf_token_manager` to XSD
  [Form] Fix form events phpdocs
  fix(mailgun-smtp): disable tls for mailgun as it should use starttls instead
  • Loading branch information
derrabus committed Jul 23, 2023
2 parents e0c1705 + df371e4 commit 0fef6dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Transport/MailgunSmtpTransport.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class MailgunSmtpTransport extends EsmtpTransport

public function __construct(string $username, #[\SensitiveParameter] string $password, string $region = null, EventDispatcherInterface $dispatcher = null, LoggerInterface $logger = null)
{
parent::__construct('us' !== ($region ?: 'us') ? sprintf('smtp.%s.mailgun.org', $region) : 'smtp.mailgun.org', 587, true, $dispatcher, $logger);
parent::__construct('us' !== ($region ?: 'us') ? sprintf('smtp.%s.mailgun.org', $region) : 'smtp.mailgun.org', 587, false, $dispatcher, $logger);

$this->setUsername($username);
$this->setPassword($password);
Expand Down

0 comments on commit 0fef6dc

Please sign in to comment.