Kim Alvefur
1796f20abc
mod_csi_simple: Bypass importance event in active mode ( fixes #1249 )
2018-11-27 19:05:11 +01:00
Kim Alvefur
0db6c3f669
mod_csi_simple: Don't set <delay> stamps on <iq> stanzas ( fixes #1248 )
2018-11-27 18:56:22 +01:00
Kim Alvefur
6f941bbc64
Merge 0.10->0.11
2018-11-26 19:48:07 +01:00
Kim Alvefur
ad38cc8fbe
mod_csi_simple: Use the same event name when firing as when hooking ( fixes #1245 )
2018-11-25 14:47:36 +01:00
Kim Alvefur
7093d062f7
mod_proxy65: Check what port is used at the time of the query
...
Could have changed between startup and time of request
2018-11-25 13:16:17 +01:00
Kim Alvefur
25b9a621a3
mod_proxy65: Return an error if no port is open ( fixes #1240 )
2018-11-25 13:14:05 +01:00
Kim Alvefur
38498588b4
MUC: Fix traceback on muc#admin query with missing <item> child ( #1242 )
...
Caused by a missing return statement introduced in 494938dec5d8
2018-11-25 13:04:37 +01:00
Kim Alvefur
8e68b0dd1a
mod_csi_simple: Use write locks in net.server if available
2018-11-24 02:25:44 +01:00
Kim Alvefur
ee0fd8f1d9
sessionmanager: Split byte-level sending into separate session.rawsend
2019-03-24 08:18:19 +00:00
Kim Alvefur
5ba20f8a9b
util.x509: Add function that extracts usable names from a certificate
2019-01-04 10:20:51 +01:00
Kim Alvefur
170c49b52d
mod_storage_memory: Fix copypaste mistake
2019-03-23 22:05:42 +01:00
Kim Alvefur
9b96017ca9
mod_storage_memory: Implement archive summary API
2019-03-23 22:05:08 +01:00
Kim Alvefur
a32b5ceb45
mod_storage_sql: Implement archive summary API
2019-02-25 15:51:55 +01:00
Kim Alvefur
582fa3f46f
mod_storage_internal: Implement a summary API returning message counts per contact
2019-02-25 15:48:28 +01:00
Matthew Wild
3c50aa4902
util.queue: Update :items() to consistently use private data directly
...
It will perform better this way, and we were accessing private variables
already within the iterator.
2019-03-23 08:52:57 +00:00
Matthew Wild
a274eacbbc
util.queue: Add 'consume()' convenience iterator
2019-03-23 08:47:55 +00:00
Kim Alvefur
95314bb2be
doc/coding_style: The codebase uses semicolons
2019-03-23 04:00:55 +01:00
Kim Alvefur
7aab0c40a4
doc/coding_style: Trim trailing whitespace
2019-03-23 03:56:55 +01:00
Maxime “pep” Buquet
24581c47db
doc/coding_style: remove superfulous bracket in example
2019-03-23 02:27:45 +00:00
Maxime “pep” Buquet
dc241cf18e
net/server_event: fix typo in comment
2019-03-23 01:57:12 +00:00
Kim Alvefur
8cc789c796
mod_storage_sql: No archive item limit by default
2019-03-22 16:30:53 +01:00
Kim Alvefur
5bb703f07f
mod_storage_internal: Include store name when reporting quota status
2019-03-22 02:24:48 +01:00
Kim Alvefur
2fed4a88c2
mod_mam: On quota hit, separately delete by time and by item count
...
This is to work around a possible SQL issue where offsets and time
stamps don't interact correctly.
2019-03-22 02:22:21 +01:00
Kim Alvefur
9393931a25
mod_storage_sql: Return cached count if only this is queried for
2019-03-22 02:18:54 +01:00
Kim Alvefur
5029870d3e
mod_storage_sql: Cache total count if it's calculated as part of the current query
2019-03-22 02:13:27 +01:00
Kim Alvefur
56a9e395ad
mod_storage_sql: Skip cache write
...
This would cause the cache to be wrong in case the the later INSERT
fails and the transaction is aborted.
2019-03-22 02:12:02 +01:00
Kim Alvefur
61edbdb90f
mod_storage_sql: Fix to use currently queried store
...
Was using the previously queried store due to this being cached in an
upvalue.
2019-03-22 02:10:46 +01:00
Kim Alvefur
3e5243f2d2
mod_storage_sql: Don't increment counter twice (fixes accounting error)
2019-03-22 02:09:38 +01:00
Kim Alvefur
c4b5bfdc5f
mod_storage_internal: Increase default quota to 10 000
...
Performance doesn't seem great but 10k should be far enough from limits
inherited by the Lua parser. 1000 messages seemed pretty close to what
an active user might produce in one week.
2019-03-22 02:04:34 +01:00
Kim Alvefur
0681ffe606
mod_storage_memory: Add support for archive item limits
2019-03-20 12:14:45 +01:00
Matthew Wild
83cf41ab78
Added tag 0.11.0 for changeset 83f3a05c1b1b
2018-11-18 15:40:24 +00:00
Matthew Wild
6af619e67b
CHANGES: Update with release date
2018-11-18 14:52:53 +00:00
Matthew Wild
b1afa00429
prosody.cfg.lua.dist: Tidy up some comments
2018-11-18 15:05:15 +00:00
Matthew Wild
c2c1bc2a97
prosody.cfg.lua.dist: Add https_certificate option
2018-11-18 14:57:29 +00:00
Kim Alvefur
589010b407
net.server_select: Fix IP validation to use correct variable (thanks quest)
...
Copy-paste mistake most likely. Not caught because server_select is ignored by luacheck.
2018-11-17 16:26:40 +01:00
Kim Alvefur
3d3e0fa082
mod_csi_simple: Consider non-stanza objects important
...
Most cases are for keepalive or stream closing, where it needs to be
flushed anyways.
2018-11-17 15:36:10 +01:00
Kim Alvefur
23be1afef6
mod_csi_simple: Skip delay tags on objects other than stanzas (thanks quest)
...
This may be triggered by sending strings, eg as done by mod_c2s for
keepalives, stream errors, "</stream>".
2018-11-17 15:28:49 +01:00
Kim Alvefur
50f6335501
util.stanza: Validate input to clone() (with brief tests)
2018-11-17 15:26:11 +01:00
Matthew Wild
813f69fd2b
mod_storage_sql: Catch errors during schema upgrade (thanks Nothing4You)
2018-11-15 21:55:16 +00:00
Matthew Wild
66bad36147
MUC: Use defaults from config in create_room() if no config provided
2018-11-15 10:25:48 +00:00
Matthew Wild
8ebaee9c3d
net.http.server: Move event formation to avoid traceback on missing Host header
2018-11-13 15:03:24 +00:00
Kim Alvefur
4c07742fbb
spec/scansion/prosody.cfg.lua: Add comment about mod_scansion_record
...
This was accidentally included in a previous commit, but having it here
makes it easier to enable when making new test cases.
2018-11-12 22:49:54 +01:00
Kim Alvefur
cdf083b8d4
MUC: Add scanison test case for #1230
2018-11-12 18:25:40 +01:00
Kim Alvefur
e3164afc4a
mod_scansion_record: Split stanzas into multiple lines
...
Not perfect but should improve readability somewhat
2018-11-12 17:15:41 +01:00
Kim Alvefur
b85188f938
mod_scansion_record: Discard from/to where these are implicitly the sessions full JID
...
Makes it easier to clean up recordings and change JIDs etc
2018-11-12 16:32:43 +01:00
Kim Alvefur
1086a1325d
util.sql: Switch from hacky multi-arg xpcall implementation to util.xpcall
2018-11-11 02:26:40 +01:00
Kim Alvefur
60aa42033a
MUC: Allow anyone read access to all affiliation lists in non-anonymous rooms ( fixes #1230 )
2018-11-09 18:49:45 +01:00
Kim Alvefur
a13259451a
MUC: Clarify condition with parenthesis
2018-11-09 18:40:13 +01:00
Kim Alvefur
8226d6de4c
net.http: Manually merge settings ( fixes #1231 )
...
Metatable table indexing is done raw, so metatables can't be chained
2018-11-09 15:59:32 +01:00
Kim Alvefur
f014ba0feb
mod_storage_memory: Support the purge driver method
2018-11-07 20:30:21 +01:00