Software /
code /
prosody
Annotate
plugins/mod_privacy.lua @ 9089:3a7a0b9f42f3
util.dataforms: Skip all fields for the 'cancel' form type
XEP-0004 says:
> a data form of type "cancel" SHOULD NOT contain any <field/> elements.
The title and instructions don't seem to be of much value in this case
either.
I'm not aware of 'cancel' being used anywhere, so this should break
nothing. Early return is always nice.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 03 Aug 2018 21:06:59 +0200 |
parent | 8774:cac4bd0d3335 |
rev | line source |
---|---|
1522
569d58d21612
Add copyright header to those files missing one
Matthew Wild <mwild1@gmail.com>
parents:
1293
diff
changeset
|
1 -- Prosody IM |
2925 | 2 -- Copyright (C) 2009-2010 Matthew Wild |
3 -- Copyright (C) 2009-2010 Waqas Hussain | |
2496
f18b882af1d1
mod_privacy: Imported from prosody-modules.
Waqas Hussain <waqas20@gmail.com>
parents:
1522
diff
changeset
|
4 -- Copyright (C) 2009 Thilo Cestonaro |
5776
bd0ff8ae98a8
Remove all trailing whitespace
Florian Zeitz <florob@babelmonkeys.de>
parents:
5500
diff
changeset
|
5 -- |
1522
569d58d21612
Add copyright header to those files missing one
Matthew Wild <mwild1@gmail.com>
parents:
1293
diff
changeset
|
6 -- This project is MIT/X11 licensed. Please see the |
569d58d21612
Add copyright header to those files missing one
Matthew Wild <mwild1@gmail.com>
parents:
1293
diff
changeset
|
7 -- COPYING file in the source package for more information. |
569d58d21612
Add copyright header to those files missing one
Matthew Wild <mwild1@gmail.com>
parents:
1293
diff
changeset
|
8 -- |
569d58d21612
Add copyright header to those files missing one
Matthew Wild <mwild1@gmail.com>
parents:
1293
diff
changeset
|
9 |
8774
cac4bd0d3335
mod_privacy: Silence long line warning [luacheck]
Kim Alvefur <zash@zash.se>
parents:
7460
diff
changeset
|
10 -- luacheck: ignore 631 |
6346
ba7c86406d31
mod_privacy: Remove, leave a log message about being replaced by mod_blocklist and load that instead
Kim Alvefur <zash@zash.se>
parents:
5776
diff
changeset
|
11 -- COMPAT w/ pre 0.10 |
ba7c86406d31
mod_privacy: Remove, leave a log message about being replaced by mod_blocklist and load that instead
Kim Alvefur <zash@zash.se>
parents:
5776
diff
changeset
|
12 module:log("error", "The mod_privacy plugin has been replaced by mod_blocklist. Please update your config. For more information see https://prosody.im/doc/modules/mod_privacy"); |
ba7c86406d31
mod_privacy: Remove, leave a log message about being replaced by mod_blocklist and load that instead
Kim Alvefur <zash@zash.se>
parents:
5776
diff
changeset
|
13 module:depends("blocklist"); |