commit | author | age
|
3e2637
|
1 |
#!/usr/bin/env php |
T |
2 |
<?php |
|
3 |
/* |
|
4 |
+-----------------------------------------------------------------------+ |
|
5 |
| bin/indexcontacts.sh | |
|
6 |
| | |
|
7 |
| This file is part of the Roundcube Webmail client | |
|
8 |
| Copyright (C) 2011, The Roundcube Dev Team | |
7fe381
|
9 |
| | |
T |
10 |
| Licensed under the GNU General Public License version 3 or | |
|
11 |
| any later version with exceptions for skins & plugins. | |
|
12 |
| See the README file for a full license statement. | |
3e2637
|
13 |
| | |
T |
14 |
| PURPOSE: | |
|
15 |
| Update the fulltext index for all contacts of the internal | |
|
16 |
| address book. | |
|
17 |
+-----------------------------------------------------------------------+ |
|
18 |
| Author: Thomas Bruederli <roundcube@gmail.com> | |
|
19 |
+-----------------------------------------------------------------------+ |
|
20 |
*/ |
|
21 |
|
0ea079
|
22 |
define('INSTALL_PATH', realpath(__DIR__ . '/..') . '/' ); |
3e2637
|
23 |
|
T |
24 |
require_once INSTALL_PATH.'program/include/clisetup.php'; |
4aafd9
|
25 |
ini_set('memory_limit', -1); |
3e2637
|
26 |
|
e76208
|
27 |
rcmail_utils::indexcontacts(); |
3e2637
|
28 |
|
T |
29 |
?> |