summaryrefslogtreecommitdiff
path: root/xmppdaemon.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlezvous.ca>2008-06-26 03:35:30 -0400
committerEvan Prodromou <evan@controlezvous.ca>2008-06-26 03:35:30 -0400
commitcdcfdc8cb4f4b5ab0acd1eae9fcd3f5def8578ba (patch)
tree07f82c4598b7d883b8913bda876d9d42a5c4738a /xmppdaemon.php
parent06d267bd88bdc7897960afeb2342901e81b5e4b4 (diff)
confirmation code sent by web user, not xmppdaemon
darcs-hash:20080626073530-34904-e56c156737db036b0de4bd6e396833bf044cb865.gz
Diffstat (limited to 'xmppdaemon.php')
-rw-r--r--xmppdaemon.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/xmppdaemon.php b/xmppdaemon.php
index 1039407b3..94358f7ee 100644
--- a/xmppdaemon.php
+++ b/xmppdaemon.php
@@ -162,13 +162,6 @@ class XMPPDaemon {
$this->subscribed($from);
break;
case 'subscribed':
- # Are we trying to confirm this address?
- $confirm = Confirm_address::staticGet('address', $from);
- if ($confirm) {
- $this->send_confirmation_code($from, $confirm);
- }
- # Otherwise, silently ignore
- break;
case 'unsubscribe':
case 'unsubscribed':
# XXX: do we care?
@@ -217,17 +210,6 @@ class XMPPDaemon {
$this->conn->send($out);
}
- function send_confirmation_code($to, &$confirm) {
- $body = 'Someone has asked to add this Jabber ID to their ' .
- 'account on ' . common_config('site', 'name') . '. ' .
- 'If it was you, you can confirm by clicking on this URL: ' .
- common_local_url('confirmaddress', array('code' => $confirm->code)) .
- ' . (If you cannot click it, copy-and-paste it into the ' .
- 'address bar of your browser). If it wasn\'t you, ' .
- 'just ignore this message.';
-
- $this->conn->message($to, $body);
- }
}
$daemon = new XMPPDaemon();