Mercurial > prosody-modules
comparison mod_track_muc_joins/README.markdown @ 2411:e327b06b9a1b
mod_track_muc_joins/README: Mention how the 210 status code for when the room rewrites the users nickname is not yet handled
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 03 Dec 2016 15:28:22 +0100 |
parents | b426f1d46938 |
children |
comparison
equal
deleted
inserted
replaced
2410:898e70e85185 | 2411:e327b06b9a1b |
---|---|
40 session.log("info", "The message contains my nickname!"); | 40 session.log("info", "The message contains my nickname!"); |
41 end | 41 end |
42 end | 42 end |
43 end); | 43 end); |
44 ``` | 44 ``` |
45 | |
46 # Known issues | |
47 | |
48 [XEP 45 ยง 7.2.3 Presence Broadcast][enter-pres] has the following text: | |
49 | |
50 > In particular, if roomnicks are locked down then the service MUST do | |
51 > one of the following. | |
52 > | |
53 > \[...\] | |
54 > | |
55 > If the user has connected using a MUC client (...), then the service | |
56 > MUST allow the client to enter the room, modify the nick in accordance | |
57 > with the lockdown policy, and **include a status code of "210"** in | |
58 > the presence broadcast that it sends to the new occupant. | |
59 | |
60 This case is not yet handled. | |
61 | |
62 [enter-pres]: http://xmpp.org/extensions/xep-0045.html#enter-pres |