From a0b6ebdd2d8e40ff8694a89bbec1c86c05b2235c Mon Sep 17 00:00:00 2001 From: CiaranG Date: Thu, 14 Aug 2008 04:38:56 -0400 Subject: [PATCH] Bounce oversized XMPP messages back to user (Ticket #112) darcs-hash:20080814083856-f6e2c-0e56895260fb96dedaa6a663db7e906fee2f7b05.gz --- scripts/xmppdaemon.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/scripts/xmppdaemon.php b/scripts/xmppdaemon.php index e067fdcdb2..ea5c29dbfb 100755 --- a/scripts/xmppdaemon.php +++ b/scripts/xmppdaemon.php @@ -138,11 +138,6 @@ class XMPPDaemon extends Daemon { $this->log(LOG_INFO, 'Ignoring OTR from ' . $from); return; } else { - $len = mb_strlen($pl['body']); - if($len > 140) { - $this->from_site($from, 'Message too long - maximum is 140 characters, you sent ' . $len); - return; - } $this->add_notice($user, $pl); }