Kim Alvefur
e52cc0126d
mod_component: Don't return error reply for errors, fixes #1897
2025-02-22 21:48:07 +01:00
Kim Alvefur
71ad48095d
plugins: Use integer config API with interval specification where sensible
...
Many of these fall into a few categories:
- util.cache size, must be >= 1
- byte or item counts that logically can't be negative
- port numbers that should be in 1..0xffff
2023-07-17 01:38:54 +02:00
Kim Alvefur
a8b0c56f65
plugins: Use get_option_enum where appropriate
2021-01-16 21:04:58 +01:00
Kim Alvefur
98922d54b1
plugins: Prefix module imports with prosody namespace
2023-03-24 13:15:28 +01:00
Matthew Wild
a2cabe6418
mod_component: Require 'from' attribute on stanzas by default
...
The old behaviour of falling back to the component domain when it is missing
has been merged into the logic for the existing "validate_from_addresses"
option (which is strict by default).
ejabberd already rejects component stanzas with no 'from' (as the XEP
requires), and this has led to compatibility issues for components that were
seemingly working fine with Prosody.
2022-08-28 07:51:50 +01:00
Kim Alvefur
ef6cb64b9e
mod_c2s,etc: Identify stanza object with appropriate function
...
Better than duck typing, in case anyone ever passes a non-stanza table
with a 'name' field.
2021-10-24 15:17:01 +02:00
Matthew Wild
5bc8b2a379
Merge 0.11->trunk
2021-05-13 11:17:13 +01:00
Kim Alvefur
27a97b963d
mod_component: Distinguish missing stream @to from unknown local component (thanks Daniel_W)
...
Spectrum2 did not include a stream @to attribute due to a configuration
error. "nil does not match ..." is not very clear in pointing this out
and is somewhat confusing, tho it did help pinpoint what went wrong.
It's also not great leak to programming language internals like "nil"
out into user-facing strings like this.
2020-12-18 22:29:44 +01:00
Kim Alvefur
aeaad491d4
mod_component: Return extended error condition when not connected
...
This might be something to write a XEP about.
2020-04-13 02:49:19 +02:00
Kim Alvefur
2f67c339a3
mod_component: Reply with a different error when not connected
...
The wait, service-unavailable is overloaded by XEP-0045 to mean that the
room has reached the maximum number of users. See #1495 .
Bouncing errors for components is tricky since there is no way to tell
that it comes from the server hosting the component, not from the other
end of the component connection.
2020-04-13 02:46:03 +02:00
Matthew Wild
4c4e764e23
mod_c2s, mod_s2s, mod_component, mod_bosh, mod_websockets: Set default stanza size limits
...
c2s/bosh/ws streams will default to 256KB, s2s and components to 512KB.
These values are aligned with ejabberd's default settings, which should reduce
issues related to inconsistent size limits between servers on the XMPP network.
The previous default (10MB) is excessive for any production server, and allows
significant memory usage by even unauthenticated sessions.
2021-05-07 17:03:49 +01:00
Kim Alvefur
608d6dd756
mod_component: Specify an error source for Component unavailable errors
...
It is somewhat ambiguous where an error really comes from in the case of
an external component.
Setting by to the bare host at least distinguishes it from JIDs with a
node- or resourcepart.
2020-04-11 19:31:15 +02:00
Kim Alvefur
40b1e3e0ed
plugins: Remove tostring call from logging
...
Taken care of by loggingmanager now
Mass-rewrite using lua pattern like `tostring%b()`
2019-07-30 02:29:36 +02:00
Matthew Wild
f5f6460b2e
Many things: switch from hacky multi-arg xpcall implementations to a standard util.xpcall
2018-10-26 19:32:00 +01:00
Kim Alvefur
fd873fa693
Merge 0.10->trunk
2018-06-08 16:15:32 +02:00
Emmanuel Gil Peyrot
ba5f71d08b
mod_component: Fix a wrongly-placed closing parenthesis, fixes #1164 .
2018-06-08 11:53:10 +02:00
Kim Alvefur
8aa6920ff5
Merge 0.10->trunk
2018-02-04 01:40:11 +01:00
Kim Alvefur
38060a5ccf
mod_component: Advertise disco#info in fallback handling of disco#info query ( fixes #1062 )
2018-01-06 08:54:15 +01:00
Kim Alvefur
4c6c255113
Merge 0.10->trunk
2017-09-14 02:48:34 +02:00
Kim Alvefur
989c0783cb
Merge 0.9->0.10
2017-09-14 02:47:40 +02:00
Kim Alvefur
5dee36d838
mod_component, mod_s2s: Iterate over child tags instead of child nodes (can include text) in stream error (same as 176b7f4e4ac9)
2017-09-14 01:27:36 +02:00
Kim Alvefur
d99378074d
mod_component: Use typed config API
2017-04-26 16:54:58 +02:00
Kim Alvefur
9b9d6a9ba9
Merge 0.10->trunk
2017-05-17 01:06:20 +02:00
Kim Alvefur
594cd28906
Merge 0.10->trunk
2017-02-10 21:34:16 +01:00
Kim Alvefur
a586901308
mod_component: Add read timeout handler (same behaviour as c2s and s2s)
2017-02-10 21:25:12 +01:00
Kim Alvefur
c5c11c2e2e
Merge 0.10->trunk
2017-01-28 21:39:14 +01:00
Kim Alvefur
b661ee3aca
mod_component: Trim trailing whitespace
2017-01-28 21:38:47 +01:00
Matthew Wild
f4690a6063
Merge 0.10->trunk
2016-09-12 22:31:25 +01:00
Matthew Wild
cd10e4439e
mod_component: Fire 'component-disconnected' event on host, to maintain consistency - sessions with no host never authenticated. Fixes #737
2016-09-12 22:30:37 +01:00
Emmanuel Gil Peyrot
c6048a7cb4
Update every link to the documentation to use HTTPS
2016-04-16 21:08:05 +01:00
Matthew Wild
f739ed2c46
mod_component: Some cleanup [luacheck]
2016-03-18 14:03:14 +00:00
Matthew Wild
4b907ce3ff
mod_component: Fire event when component disconnects
2016-03-18 13:58:55 +00:00
Kim Alvefur
b7e3bf93ea
mod_component: Add config option for deciding what happens if a component connects while already connected ( fixes #525 )
2015-10-21 01:56:07 +02:00
Kim Alvefur
b49513cdeb
Merge 0.9->0.10
2015-08-10 22:16:05 +02:00
Kim Alvefur
e92c2042d1
mod_component: Fire an event on successful component authentication (For Goffi)
2015-08-10 22:13:02 +02:00
Matthew Wild
899b6d53ae
net.http, net.http.server, mod_c2s, mod_s2s, mod_component, mod_admin_telnet, mod_net_multiplex: Add ondetach to release connection from 'sessions' table (or equivalent)
2014-08-29 11:54:34 +01:00
Kim Alvefur
c80b30a71c
Merge 0.9->0.10
2014-09-02 22:33:11 +02:00
Kim Alvefur
e06966ee43
mod_c2s, mod_s2s, mod_component, util.xmppstream: Move all session:open_stream() functions to util.xmppstream
2014-04-10 13:13:07 +02:00
Kim Alvefur
ece61cbae1
Merge 0.9->0.10
2013-12-18 18:36:54 +01:00
Kim Alvefur
a3dab92bb3
mod_component: Enable TCP keepalives on component streams
2013-12-18 18:35:35 +01:00
Kim Alvefur
72d7753441
mod_component: Decrease priority of component auth hook
2013-12-18 18:34:22 +01:00
Florian Zeitz
1d833bb807
Remove all trailing whitespace
2013-08-09 17:48:21 +02:00
Matthew Wild
98ce253063
mod_component: Local imports for some functions, including xpcall
2013-07-08 23:59:51 +01:00
Matthew Wild
fb9838c64b
mod_component: xpcall() stanza processing, as per other listeners, preventing potentially harmful 'top-level errors'
2013-07-08 21:38:08 +01:00
Kim Alvefur
27dc3a5b9a
mod_announce, mod_auth_anonymous, mod_c2s, mod_c2s, mod_component, mod_iq, mod_message, mod_presence, mod_tls: Access prosody.{hosts,bare_sessions,full_sessions} instead of the old globals
2013-03-23 01:27:16 +01:00
Kim Alvefur
d11b41d1dd
mod_component: Look for the correct xmlns (thanks NebuK)
2013-01-27 17:11:45 +01:00
Kim Alvefur
4517552d8b
s2smanager: Generate session names used for logging the same way everywhere
2013-01-24 00:58:17 +01:00
Kim Alvefur
1e4f3fadcd
mod_component: Make listener private (thanks Ge0rG)
2013-01-17 21:57:35 +01:00
Waqas Hussain
d9d38ef125
mod_{admin_telnet,c2s,component,http,net_multiplex,s2s}: Use module:provides() instead of module:add_item().
2012-09-12 22:22:31 +05:00
Matthew Wild
c6efcf09be
mod_component: Set module status to indicate whether component is connected
2019-03-19 09:08:06 +00:00