this is a error in the Mail Pear package and PHP 5.3 with strict error reporting enabled.
either disable strict error reporting in the php.ini file, or change line 190:
$theMailer =& Mail::factory('smtp', $paramArray);
to:
@$theMailer =& Mail::factory('smtp', $paramArray);