]> git.donarmstrong.com Git - roundcube.git/blobdiff - bin/indexcontacts.sh
New upstream version.
[roundcube.git] / bin / indexcontacts.sh
index d552be61f8f7b7bf30d6a3b18ca4902bc6eb21f3..cbeffe96b5353814d5f5f37665ebd6c82bd7ba41 100755 (executable)
  | Author: Thomas Bruederli <roundcube@gmail.com>                        |
  +-----------------------------------------------------------------------+
 
- $Id: indexcontacts.sh 4623 2011-03-28 06:49:02Z alec $
+ $Id: indexcontacts.sh 5307 2011-10-05 09:28:25Z alec $
 
 */
 
 define('INSTALL_PATH', realpath(dirname(__FILE__) . '/..') . '/' );
 
 require_once INSTALL_PATH.'program/include/clisetup.php';
-
+ini_set('memory_limit', -1);
 
 // connect to DB
 $RCMAIL = rcmail::get_instance();
@@ -47,7 +47,7 @@ while ($sql_result && ($sql_arr = $db->fetch_assoc($sql_result))) {
         unset($row['words']);
         $contacts->update($row['ID'], $row);
     }
-    
+
     echo "done.\n";
 }