-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
XEP-0501: Add pubsub#item_expire in the node configuration
- Loading branch information
Showing
1 changed file
with
11 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,6 +32,14 @@ | |
<jid>[email protected]</jid> | ||
<uri>https://edhelas.movim.eu</uri> | ||
</author> | ||
<revision> | ||
<version>0.2.0</version> | ||
<date>2024-12-20</date> | ||
<initials>tj</initials> | ||
<remark> | ||
<p>Add pubsub#item_expire in the node configuration</p> | ||
</remark> | ||
</revision> | ||
<revision> | ||
<version>0.1.0</version> | ||
<date>2024-12-19</date> | ||
|
@@ -100,14 +108,15 @@ | |
<ol> | ||
<li>The "pubsub#type" MUST be set to "urn:xmpp:pubsub-social-feed:stories:0"</li> | ||
<li>The "pubsub#access_model" SHOULD be set to "presence".</li> | ||
<li>The "pubsub#item_expire" SHOULD be set, usually 24 hours (86400).</li> | ||
</ol> | ||
</section3> | ||
</section2> | ||
</section1> | ||
|
||
<section1 topic='Business Rules' anchor='bizrules'> | ||
<p>Subscribers clients SHOULD hide the items after a specific amount of time, usually 24 hours.</p> | ||
<p>Publishers clients SHOULD retract the items after a specific amount of time, usually 24 hours. </p> | ||
<p>If the "pubsub#item_expire" value is set subscribers clients MUST hide or destroy the received items once they expire.</p> | ||
<p>If the "pubsub#item_expire" value is not set publishers clients SHOULD retract the items after a specific amount of time, usually 24 hours. </p> | ||
</section1> | ||
|
||
<section1 topic='Security Considerations' anchor='security'> | ||
|