Feature #22504
closedSend email hook has been removed
0%
Description
We need user not to reset but to send passwords as it was possible in newloginbox.
It would be nice to have a hook (in further versions) like this (placed in main() of class.tx_felogin_pi1.php):
// Hook (used by xwave <christian.juerges@xwave.ch> to show old send password function)
if (is_array($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['felogin']['forgotEmail'])) {
$_params = array (
'conf' => $this->conf,
'template' => $this->template
);
foreach($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['felogin']['forgotEmail'] as $funcRef) {
$content .= t3lib_div::callUserFunction($funcRef, $_params, $this);
}
} else {
$content .= $this->showForgot();
}
(issue imported from #M14192)
Updated by Jigal van Hemert almost 13 years ago
- Status changed from New to Needs Feedback
- Target version deleted (
0) - TYPO3 Version set to 4.5
Do you have a use case where sending a password is the only usable solution? There are a few arguments against sending a password:
- in many cases the plain text password isn't stored, but instead a hash is stored (which is used to validate the password the user entered); since TYPO3 4.6 saltedpasswords/rsaauth are activated by default
- even if the plain text password is stored the result after the password recovery action is the same: the user knows which password to use in the future.
Updated by Jigal van Hemert over 11 years ago
- Status changed from Needs Feedback to Closed
Closed because no feedback was received in over 90 days.