Actions
Bug #36937
closedCustom Swift_Transport is impossible due to wrong variable
Start date:
2012-05-07
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
6.0
PHP Version:
5.3
Tags:
Complexity:
no-brainer
Is Regression:
Sprint Focus:
Description
Because of a wrong variable it is impossible to implement a custom Swift_Transport
Imagine you want to do an own Swift_Transport implementation you add
$GLOBALS['TYPO3_CONF_VARS']['MAIL']['transport'] = 'Tx_Fo_Bar';
but because of the constructor being called without any special name, it is tried to look the default one up in the TYPO3_CONF_VARS as stated in the comment
---
Swift_Transport optionally pass a transport to the constructor. By default the configured transport from $TYPO3_CONF_VARS is used
----
current code
$customTransport = t3lib_div::makeInstance($mailSettings['transport'], $mailSettings);
if ($this->transport instanceof Swift_Transport) {
$this->transport = $customTransport;
} else {
throw new RuntimeException(
$mailSettings['transport'] . ' is not an implementation of Swift_Transport,
but must implement that interface to be used as a mail transport.',
1323006478
);
}
therefore $this->transport will never be an instanceof Swift_Transport as it will be always empty at that place. needs to be of course $customTransport
Actions