removed Notifying Owners use case

git-svn-id: file:///home/ksmith/gitmigration/svn/xmpp/trunk@2167 4b5297f7-1745-476d-ba37-a9c6900126ab
This commit is contained in:
Peter Saint-Andre 2008-08-20 19:18:03 +00:00
parent 10bfd99295
commit 5569bdec3d
1 changed files with 0 additions and 24 deletions

View File

@ -4452,30 +4452,6 @@ And by opposing end them?
<pubsub xmlns='http://jabber.org/protocol/pubsub'>
<subscription node='princely_musings' jid='polonius@denmark.lit' subscription='none'/>
</pubsub>
</message>
]]></example>
</section3>
<section3 topic='Notifying Owners' anchor='owner-affiliations-notifyowners'>
<p>If the node is configured to support the "pubsub#notify_sub" option, the service MUST send to the node owners notifications regarding new subscribers, SHOULD send notifications regarding unsubscribe actions, and MAY send notifications regarding other subscription changes. The relationship between these notifications and the retrieval of the subscriptions list as described under <link url='#owner-subscriptions-retrieve'>Retrieve Subscriptions List</link> is similar to the relationship between a "roster get" and a "roster push" as described in &xmppim;.</p>
<p>In particular, the notification consists of a &MESSAGE; stanza containing a &lt;pubsub/&gt; element qualified by the 'http://jabber.org/protocol/pubsub#owner' namespace, which contains a &lt;subscriptions/&gt;l element whose 'node' attribute specifies the NodeID of the relevant node; this &lt;subscriptions/&gt; element in turn contains one &lt;subscription/&gt; element whose 'jid' attribute specifies the address of the subscriber and whose 'subscription' attribute specifies the suubscription state.</p>
<p>For instance, the following example shows a new subscriber notification.</p>
<example caption='Service sends new subscriber notification to owner'><![CDATA[
<message from='pubsub.shakespeare.lit' to='hamlet@denmark.lit'>
<pubsub xmlns='http://jabber.org/protocol/pubsub#owner'>
<subscriptions node='princely_musings'>
<subscription jid='polonius@denmark.lit' subscription='subscribed'/>
</subscriptions>
</pubsub>
</message>
]]></example>
<p>The following example shows an unsubscribe notification.</p>
<example caption='Service sends unsubscribe notification to owner'><![CDATA[
<message from='pubsub.shakespeare.lit' to='hamlet@denmark.lit'>
<pubsub xmlns='http://jabber.org/protocol/pubsub#owner'>
<subscriptions node='princely_musings'>
<subscription jid='polonius@denmark.lit' subscription='none'/>
</subscriptions>
</pubsub>
</message>
]]></example>
</section3>