Bonjour à toutes et à tous
J'ai installé Drupal.
Congiguration : Windows XP SP3. WampServer 2.0
Quand je lance localhost/drupal je ne peux pas créer de nouveau compte car en retour de : "Créer un nouveau compte" le message d'erreur :

warning: mail() [function.mail]: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in C:\wamp\www\drupal\includes\mail.inc on line 193.
Or php.ini contient bien SMTP = localhost et smtp_port = 25.
Le fichier www\drupal\includes\mail.inc contient des lignes 186 à 196 :

$tag = FALSE; // Odd/even counter (tag or no tag) $casing = NULL; // Case
conversion function $output = ''; $indent = array(); // All current indentation
string chunks $lists = array(); // Array of counters for opened lists foreach
($split as $value) { $chunk = NULL; // Holds a string ready to be formatted and
output.

// Process HTML tags (but don't output any literally). if ($tag) {
list($tagname) = explode(' ', strtolower($value), 2); switch ($tagname) { //
List counters case 'ul': array_unshift($lists, '*'); break; case 'ol':
array_unshift($lists, 1); break; case '/ul': case '/ol': array_shift($lists);
$chunk = ''; // Ensure
Merci pour votre aide.