mirror of
https://github.com/moparisthebest/xeps
synced 2024-11-21 16:55:07 -05:00
changed the deny value of the otr attribute to never
git-svn-id: file:///home/ksmith/gitmigration/svn/xmpp/trunk@165 4b5297f7-1745-476d-ba37-a9c6900126ab
This commit is contained in:
parent
1f7e517744
commit
eef7721346
10
xep-0136.xml
10
xep-0136.xml
@ -40,7 +40,7 @@
|
||||
<version>0.11</version>
|
||||
<date>2006-11-03</date>
|
||||
<initials>ip</initials>
|
||||
<remark><p>Changed the try otr attribute value to prefer</p></remark>
|
||||
<remark><p>Changed the try and deny otr attribute values to prefer and never</p></remark>
|
||||
</revision>
|
||||
<revision>
|
||||
<version>0.10</version>
|
||||
@ -161,7 +161,7 @@
|
||||
<p>Note: Support for the 'all' value is optional and, to conserve bandwidth and storage space, it is RECOMMENDED that client implementations do not specify the 'all' value.</p>
|
||||
<p>Note: When archiving <em>locally</em> a client MAY save the full XML content of each <message/> element even if the Save Mode is 'body'.</p>
|
||||
<p>Each <default/> or <item/> element in the response whose 'save' attribute is not set to 'false' is RECOMMENDED to also include an 'expire' attribute which indicates how many seconds after messages are archived that the server SHOULD delete them.</p>
|
||||
<p>Each <default/> or <item/> element in the response MUST include an 'otr' attribute, whose value MAY be 'deny' (if <link url='#otr'>Off The Record</link> is <em>required</em> by the contact the client MUST send no messages), 'allow' (the client MAY save messages unless the contact requests OTR), 'prefer' (the client MUST try to negotiate OTR with the contact) or 'require' (the client MUST send no messages unless the contact explicitly agrees to OTR).</p>
|
||||
<p>Each <default/> or <item/> element in the response MUST include an 'otr' attribute, whose value MAY be 'never' (if <link url='#otr'>Off The Record</link> is <em>required</em> by the contact the client MUST send no messages), 'allow' (the client SHOULD save messages unless the contact <em>requests</em> or requires OTR), 'prefer' (the client MUST do its best to negotiate OTR with the contact) or 'require' (the client MUST send no messages unless the contact explicitly agrees to OTR).</p>
|
||||
<p>Note: If the OTR Mode is 'require' then the Save Mode MUST be 'false'.</p>
|
||||
<p>The server MUST also include <method/> elements that reflect the user's preferences for each of the possible archiving methods. There MUST be at least three such elements for local file archiving (type "local"), automatic archiving by the user's server (type "auto"), and manual archiving to a server (type "manual"). The 'use' attribute of each <method/> element MUST be set to "prefer", "allow" or "never" - indicating which archiving methods the user's clients SHOULD, MAY (if it does not support any preferred method) or MUST NOT use.</p>
|
||||
<p>The server MUST also include an <auto/> element reflecting the current <link url='#auto'>Automated Archiving</link> settings for <em>this stream</em>.</p>
|
||||
@ -170,7 +170,7 @@
|
||||
<pref xmlns='http://jabber.org/protocol/archive'>
|
||||
<default save='body' otr='allow' expire='31536000'/>
|
||||
<item jid='romeo@montague.net' save='false' otr='require'/>
|
||||
<item jid='benvolio@montague.net' save='all' expire='630720000' otr='deny'/>
|
||||
<item jid='benvolio@montague.net' save='all' expire='630720000' otr='never'/>
|
||||
<method type='auto' use='never'/>
|
||||
<method type='local' use='allow'/>
|
||||
<method type='manual' use='prefer'/>
|
||||
@ -1061,7 +1061,7 @@
|
||||
<xs:simpleType>
|
||||
<xs:restriction base='xs:NCName'>
|
||||
<xs:enumeration value='allow'/>
|
||||
<xs:enumeration value='deny'/>
|
||||
<xs:enumeration value='never'/>
|
||||
<xs:enumeration value='prefer'/>
|
||||
<xs:enumeration value='require'/>
|
||||
</xs:restriction>
|
||||
@ -1102,7 +1102,7 @@
|
||||
<xs:simpleType>
|
||||
<xs:restriction base='xs:NCName'>
|
||||
<xs:enumeration value='allow'/>
|
||||
<xs:enumeration value='deny'/>
|
||||
<xs:enumeration value='never'/>
|
||||
<xs:enumeration value='prefer'/>
|
||||
<xs:enumeration value='require'/>
|
||||
</xs:restriction>
|
||||
|
Loading…
Reference in New Issue
Block a user