Merge pull request #4607 from samuelsov/CRM-15637
[civicrm-core.git] / bin / deprecated / civimail.cronjob.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
f5721b07 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26*/
27
28/**
29 * A PHP cron script to run the outstanding and scheduled CiviMail jobs
30 * initiated by Owen Barton from a mailing sent by Lobo to crm-mail
31 *
c206647d 32 * The structure of the file is set to mimic soap.php which is a stand-alone
6a488035
TO
33 * script and hence does not have any UF issues. You should be able to run
34 * this script using a web url or from the command line
35 */
36function run() {
37 session_start();
38
39 if (!function_exists('drush_get_context')) {
40 require_once '../civicrm.config.php';
41 }
42
43 require_once 'CRM/Core/Config.php';
44 $config = CRM_Core_Config::singleton();
45
46 // this does not return on failure
47 CRM_Utils_System::authenticateScript(TRUE);
48
49 // we now use DB locks on a per job basis
50 require_once 'CRM/Mailing/BAO/Mailing.php';
51 CRM_Mailing_BAO_Mailing::processQueue();
52}
53
54// you can run this program either from an apache command, or from the cli
55if (php_sapi_name() == "cli") {
56 require_once ("bin/cli.php");
57 $cli = new civicrm_cli();
58
59 require_once 'CRM/Mailing/BAO/Mailing.php';
60 CRM_Mailing_BAO_Mailing::processQueue();
61
62 // from the webserver
63}
64else {
65 run();
66}
67