I found an error in core/lostpassword/index.php version 2.0.1
// Original
//$email = OC_Preferences::getValue($_POST['user'],
'lostpassword', 'email', '');
// Correct
$email = OC_Preferences::getValue($_POST['user'], 'settings',
'email', '');
Christian