Index: trunk/roundcubemail/program/steps/addressbook/import.inc
===================================================================
--- trunk/roundcubemail/program/steps/addressbook/import.inc	(revision 1716)
+++ trunk/roundcubemail/program/steps/addressbook/import.inc	(revision 1752)
@@ -117,5 +117,5 @@
     $IMPORT_STATS->names = array();
     $IMPORT_STATS->count = count($vcards);
-    $IMPORT_STATS->inserted = $IMPORT_STATS->skipped = $IMPORT_STATS->errors = 0;
+    $IMPORT_STATS->inserted = $IMPORT_STATS->skipped = $IMPORT_STATS->nomail = $IMPORT_STATS->errors = 0;
     
     if ($replace)
@@ -135,4 +135,9 @@
           continue;
         }
+      }
+      // skip entries without an e-mail address
+      if (empty($email)) {
+        $IMPORT_STATS->nomail++;
+        continue;
       }
       
