Aleksander Machniak
2015-08-12 6b31846c438dc19cca0f2a01582bdf47dff61f81
commit | author | age
42de33 1 #!/usr/bin/env php
TB 2 <?php
3 /*
4  +-----------------------------------------------------------------------+
5  | bin/gc.sh                                                             |
6  |                                                                       |
7  | This file is part of the Roundcube Webmail client                     |
8  | Copyright (C) 2013, The Roundcube Dev Team                            |
9  |                                                                       |
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.                     |
13  |                                                                       |
14  | PURPOSE:                                                              |
15  |   Trigger garbage collecting routines manually (e.g. via cronjob)     |
16  |                                                                       |
17  +-----------------------------------------------------------------------+
18  | Author: Thomas Bruederli <roundcube@gmail.com>                        |
19  +-----------------------------------------------------------------------+
20 */
21
0ea079 22 define('INSTALL_PATH', realpath(__DIR__ . '/..') . '/' );
42de33 23
TB 24 require INSTALL_PATH.'program/include/clisetup.php';
25
26 $rcmail = rcube::get_instance();
ee73a7 27 $rcmail->gc();