Skip to content

Commit 8741c39

Browse files
Merge branch '5.0'
* 5.0: (38 commits) [Security] Check UserInterface::getPassword is not null before calling needsRehash gracefully handle missing event dispatchers Fix TokenStorage::reset not called in stateless firewall [DotEnv] Remove `usePutEnv` property default value [HttpFoundation] get currently session.gc_maxlifetime if ttl doesnt exists Set up typo fix [DependencyInjection] Handle env var placeholders in CheckTypeDeclarationsPass [Cache] fix memory leak when using PhpArrayAdapter [Validator] Allow underscore character "_" in URL username and password [TwigBridge] Update bootstrap_4_layout.html.twig [DoctrineBridge] Removed QueryBuilder type hint in getLoader() [FrameworkBundle][SodiumVault] Create secrets directory only when needed fix parsing negative octal numbers [String] implement __sleep()/__wakeup() on strings Fixed translations file dumper behavior [Routing][ObjectLoader] Remove forgotten deprecation after merge [SecurityBundle] Passwords are not encoded when algorithm set to \"true\" [DependencyInjection] Resolve expressions in CheckTypeDeclarationsPass [SecurityBundle] Properly escape regex in AddSessionDomainConstraintPass do not validate passwords when the hash is null ...
2 parents 72b6e8d + 82644dc commit 8741c39

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Transport/Smtp/EsmtpTransport.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ protected function doHeloCommand(): void
115115

116116
try {
117117
$response = $this->executeCommand(sprintf("EHLO %s\r\n", $this->getLocalDomain()), [250]);
118+
$capabilities = $this->getCapabilities($response);
118119
} catch (TransportExceptionInterface $e) {
119120
parent::doHeloCommand();
120121

0 commit comments

Comments
 (0)