summaryrefslogtreecommitdiff
path: root/lib/jabber.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 /lib/jabber.php
parent06d267bd88bdc7897960afeb2342901e81b5e4b4 (diff)
confirmation code sent by web user, not xmppdaemon
darcs-hash:20080626073530-34904-e56c156737db036b0de4bd6e396833bf044cb865.gz
Diffstat (limited to 'lib/jabber.php')
-rw-r--r--lib/jabber.php15
1 files changed, 12 insertions, 3 deletions
diff --git a/lib/jabber.php b/lib/jabber.php
index 9bde914a3..4f0335f91 100644
--- a/lib/jabber.php
+++ b/lib/jabber.php
@@ -79,12 +79,21 @@ function jabber_send_presence($status=Null, $show='available', $to=Null) {
function jabber_confirm_address($code, $nickname, $address) {
- # FIXME: above arguments are unused, we start the process with a
- # subscription
- # XXX: no idea what we do if the update daemon is already subscribed.
+ # Fire off a subscription, just in case
jabber_special_presence('subscribe', $address);
+ # Hopefully this goes through if we're not already subscribed
+
+ $body = 'User "' . $nickname . '" on ' . common_config('site', 'name') .
+ 'has said that your Jabber ID belongs to them. ' .
+ 'If that\'s true, 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 that user isn\'t you, ' .
+ 'or if you didn\'t request this confirmation, just ignore this message.';
+
+ jabber_send_message($address, $body);
}
function jabber_special_presence($type, $to=NULL, $show=NULL, $status=NULL) {