diff -u email_verify/email_verify.info email_verify-new/email_verify.info
--- email_verify/email_verify.info	2007-06-22 23:05:04.000000000 -0400
+++ email_verify-new/email_verify.info	2008-02-29 23:50:02.000000000 -0500
@@ -4,7 +4,8 @@
 
 
 ; Information added by drupal.org packaging script on 2007-06-23
-version = "5.x-2.0"
+version = "6.x-1.x"
+core = "6.x"
 project = "email_verify"
 datestamp = "1182567904"
 
diff -u email_verify/email_verify.install email_verify-new/email_verify.install
--- email_verify/email_verify.install	2007-06-22 22:26:37.000000000 -0400
+++ email_verify-new/email_verify.install	2008-02-29 23:54:37.000000000 -0500
@@ -18,15 +18,15 @@
 
   $host = 'drupal.org';
   // What SMTP servers should we contact?
-  $mxHosts = array();
-  if (! getmxrr($host, $mxHosts)) {
+  $mx_hosts = array();
+  if (! getmxrr($host, $mx_hosts)) {
     // When there is no MX record, the host itself should be used
-    $mxHosts[] = $host;
+    $mx_hosts[] = $host;
   }
 
   // Try to connect to one SMTP server
-  foreach ($mxHosts as $smtpServer) {
-    $connect = @fsockopen($smtpServer, 25, $errno, $errstr, 15);
+  foreach ($mx_hosts as $smtp_server) {
+    $connect = @fsockopen($smtp_server, 25, $errno, $errstr, 15);
     if (!$connect) {
       continue;
     }
diff -u email_verify/email_verify.module email_verify-new/email_verify.module
--- email_verify/email_verify.module	2007-06-11 12:34:41.000000000 -0400
+++ email_verify-new/email_verify.module	2008-02-29 23:58:21.000000000 -0500
@@ -12,9 +12,9 @@
    @param section which section of the site we're displaying help
    @return help text for section
 */
-function email_verify_help($section = '') {
+function email_verify_help($path = '', $arg = array()) {
   $output = '';
-  switch ($section) {
+  switch ($path) {
     case '':
       $output = '';
       break;
@@ -62,23 +62,24 @@
   }
 
   // What SMTP servers should we contact?
-  $mxHosts = array();
-  if (! getmxrr($host, $mxHosts)) {
+  $mx_hosts = array();
+  if (! getmxrr($host, $mx_hosts)) {
     // When there is no MX record, the host itself should be used
-    $mxHosts[] = $host;
+    $mx_hosts[] = $host;
   }
 
   // Try to connect to one SMTP server
-  foreach ($mxHosts as $smtpServer) {
+  foreach ($mx_hosts as $smtp_server) {
 
-    $connect = @fsockopen($smtpServer, 25, $errno, $errstr, 15);
+    $connect = @fsockopen($smtp_server, 25, $errno, $errstr, 15);
 
     if (!$connect) continue;
 
     if (ereg("^220", $out = fgets($connect, 1024))) {
       // OK, we have a SMTP connection
       break;
-    } else {
+    } 
+    else {
       // The SMTP server probably does not like us
       // (dynamic/residential IP for aol.com for instance)
       // Be on the safe side and accept the address, at least it has a valid
@@ -138,11 +139,11 @@
 
 function email_verify_menu() {
   $items = array();
-  $items[] = array('path' => 'email_verify',
-		   'title' => t('Verify user emails'),
-		   'callback' => 'email_verify_checkall',
-		   'access' => user_access('access content'),
-		   'type' => MENU_CALLBACK);
+  $items['email_verify'] = array('title' => 'Verify user emails',
+                   'page callback' => 'email_verify_checkall',
+                   'access callback' => 'user_access',
+                   'access arguments' => array('access content'),
+                   'type' => MENU_CALLBACK);
   return $items;
 }
 
@@ -160,7 +161,7 @@
 
       $content .= "<tr><td><a href='?q=user/$row->uid/edit'>$row->name</a><td>$row->mail";
 
-      if(++$found>=100) break;
+      if (++$found>=100) break;
     }
   }
 
Common subdirectories: email_verify/po and email_verify-new/po
