Project

General

Profile

Actions

Feature #22504

closed

Send email hook has been removed

Added by Chris Juerges about 14 years ago. Updated about 11 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
felogin
Target version:
-
Start date:
2010-04-23
Due date:
% Done:

0%

Estimated time:
PHP Version:
Tags:
Complexity:
Sprint Focus:

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 <> 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)

Actions #1

Updated by Jigal van Hemert over 12 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.

Actions #2

Updated by Jigal van Hemert about 11 years ago

  • Status changed from Needs Feedback to Closed

Closed because no feedback was received in over 90 days.

Actions

Also available in: Atom PDF