comparison mod_muc_inject_mentions/README.markdown @ 4161:032e1c79d039

mod_muc_inject_mentions: Add new configuration setting to look for mentions even if the client sent some already
author Seve Ferrer <seve@delape.net>
date Tue, 29 Sep 2020 17:05:14 +0200
parents 9626d5d1adc4
children 320f6d374b5d
comparison
equal deleted inserted replaced
4160:9626d5d1adc4 4161:032e1c79d039
50 ``` 50 ```
51 51
52 If none or both are found, all rooms in the muc component will have mentions enabled. 52 If none or both are found, all rooms in the muc component will have mentions enabled.
53 53
54 54
55 By default, if a message contains at least one mention,
56 the module does not do anything, as it believes all mentions were already sent by the client.
57 In cases where it is desired the module to inspect the message and try to find extra mentions
58 that could be missing, the following setting can be added:
59
60 ```
61 muc_inject_mentions_append_mentions = true
62 ```
63
64
55 It is also possible to modify how this module detects mentions. 65 It is also possible to modify how this module detects mentions.
56 In short, the module will detect if a mention is actually a mention 66 In short, the module will detect if a mention is actually a mention
57 if the nickname (with or without affixes) is between spaces, new lines, or at the beginning/end of the message. 67 if the nickname (with or without affixes) is between spaces, new lines, or at the beginning/end of the message.
58 This can be changed using: 68 This can be changed using:
59 69