From 782fe0130fe0221923cd2ec2a2b037575315e741 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 26 Aug 2008 09:18:14 -0400 Subject: optionally turn encryption on or off in the XMPP connection For identi.ca, we had some problems with the XMPP daemon getting "stuck" in I/O through the encrypted (by default) XMPP socket. Turning off encryption helped. So, now it's an option. darcs-hash:20080826131814-84dde-2c4a809c6fb666dfb4b96d0d61205fe418f4e4b4.gz --- lib/jabber.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/jabber.php') diff --git a/lib/jabber.php b/lib/jabber.php index cba7f62c4..01ec8da43 100644 --- a/lib/jabber.php +++ b/lib/jabber.php @@ -82,7 +82,8 @@ function jabber_connect($resource=NULL) { XMPPHP_Log::LEVEL_VERBOSE : NULL ); $conn->autoSubscribe(); - + $conn->useEncryption(common_config('xmpp', 'encryption')); + if (!$conn) { return false; } -- cgit v1.2.3-54-g00ecf