summaryrefslogtreecommitdiff
path: root/scripts/publicqueuehandler.php
diff options
context:
space:
mode:
authorRobin Millette <millette@controlyourself.ca>2009-04-17 17:04:05 +0000
committerRobin Millette <millette@controlyourself.ca>2009-04-17 17:04:05 +0000
commite5094c3359fb74caeea474f8e08eb0d15b477652 (patch)
tree9d60785414e80a5bad75e3e45ab542a0c9f0352b /scripts/publicqueuehandler.php
parent55d7bb4701ca39fb8f4b859b19defdfc7af0142c (diff)
parent2eb1eb86838b47af7305dbd21a181e63bcd58418 (diff)
fix merge conflict 0.7.x 0.8.x in util.php and register.php.
Diffstat (limited to 'scripts/publicqueuehandler.php')
-rwxr-xr-xscripts/publicqueuehandler.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/publicqueuehandler.php b/scripts/publicqueuehandler.php
index 5075c12df..b0fa22d43 100755
--- a/scripts/publicqueuehandler.php
+++ b/scripts/publicqueuehandler.php
@@ -52,6 +52,13 @@ class PublicQueueHandler extends XmppQueueHandler
}
}
+// Abort immediately if xmpp is not enabled, otherwise the daemon chews up
+// lots of CPU trying to connect to unconfigured servers
+if (common_config('xmpp','enabled')==false) {
+ print "Aborting daemon - xmpp is disabled\n";
+ exit();
+}
+
ini_set("max_execution_time", "0");
ini_set("max_input_time", "0");
set_time_limit(0);