diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-04-26 11:26:58 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-04-26 11:26:58 +0200 |
commit | f23ef1c96859f6b01a9268c8606a22ceb719cf3d (patch) | |
tree | 7c4ea8f0c79caba006903cffdbeddb31c9154f38 /bin/indexcontacts.sh | |
parent | ddfdd8938d78b40842a984d310e3c35af30ece0a (diff) |
Fix error handling in CLI mode, use STDERR and non-empty exit code (#1489043)
Diffstat (limited to 'bin/indexcontacts.sh')
-rwxr-xr-x | bin/indexcontacts.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/bin/indexcontacts.sh b/bin/indexcontacts.sh index a9a5a952a..413dc4b3e 100755 --- a/bin/indexcontacts.sh +++ b/bin/indexcontacts.sh @@ -30,17 +30,18 @@ $RCMAIL = rcmail::get_instance(); $db = $RCMAIL->get_dbh(); $db->db_connect('w'); -if (!$db->is_connected() || $db->is_error()) - die("No DB connection\n"); +if (!$db->is_connected() || $db->is_error()) { + rcube::raise_error("No DB connection", false, true); +} // iterate over all users $sql_result = $db->query("SELECT user_id FROM " . $RCMAIL->config->get('db_table_users', 'users')." WHERE 1=1"); while ($sql_result && ($sql_arr = $db->fetch_assoc($sql_result))) { echo "Indexing contacts for user " . $sql_arr['user_id'] . "..."; - + $contacts = new rcube_contacts($db, $sql_arr['user_id']); $contacts->set_pagesize(9999); - + $result = $contacts->list_records(); while ($result->count && ($row = $result->next())) { unset($row['words']); |