mod_tls: Fix inhertinance of 'ssl' option from "parent" host to subdomain (fixes #511)
|
Kim Alvefur |
2015-09-15 |
MUC: Break a very long line
|
Kim Alvefur |
2015-09-12 |
util.dataforms: Fix interaction of required fields and empty string values (fixes #521)
|
Kim Alvefur |
2015-09-12 |
util.dataforms: Refactor parsing to reuse simple text parser instead of duplicate code
|
Kim Alvefur |
2015-09-12 |
MUC: Prevent double replies when MUC affiliation/role change requests fail.
|
Lance Stout |
2015-09-17 |
MUC: Fix traceback in request for MUC affiliation lists by non-affiliated (thanks Lance)
|
Kim Alvefur |
2015-09-15 |
Merge 0.10->trunk
|
Matthew Wild |
2015-09-04 |
tests/run_tests.sh: Let status code propagate to shell
|
Matthew Wild |
2015-09-04 |
tests: Return status code depending on whether tests passed
|
Matthew Wild |
2015-09-04 |
net/http: Use server.addclient
|
daurnimator |
2013-12-19 |
Merge 0.10->trunk
|
Kim Alvefur |
2015-09-03 |
util.stanza: Export xml_escape (missed during removal of module() calls)
|
Kim Alvefur |
2015-09-03 |
Merge 0.10->trunk
|
Matthew Wild |
2015-09-03 |
net.server_{select,event}: addclient: Use getaddrinfo to detect IP address type if no socket type argument given. (Argument must be given for non-TCP)
|
Kim Alvefur |
2013-12-23 |
net.server_{select,event}: addclient: Add argument for overriding socket type
|
Kim Alvefur |
2013-12-23 |
net/server_event: pcall require ssl rather than relying on globals
|
daurnimator |
2013-12-18 |
net/server_event: add_client should have same arguments no-matter the server backend
|
daurnimator |
2013-12-18 |
net/server_select: Fix typo
|
daurnimator |
2013-12-18 |
net/server_select: addclient: Check arguments
|
daurnimator |
2013-12-18 |
net/server_select: addclient: Check for failure correctly; remove wrapconnection call on failure
|
daurnimator |
2013-12-18 |
net/server_select: Check arguments to add_server correctly
|
daurnimator |
2013-12-18 |
Merge 0.10->trunk
|
Matthew Wild |
2015-09-02 |
configure, Makefile: Make compatible with plain Bourne shell as used on Solaris. Fixes #418 (thanks jcea)
|
Matthew Wild |
2015-09-02 |
storagemanager: Check if drivers support purging, warn otherwise
|
Kim Alvefur |
2015-09-02 |
prosody: Set a luasocket global, fixes undefined global access in loop() (pending util.startup)
|
Kim Alvefur |
2015-09-02 |
storagemanager: Export purge (fixes deleting users from usermanager) (thanks mt)
|
Kim Alvefur |
2015-09-02 |
util.sql: Export db2uri (mod_storage_sql2 command uses it) (thanks mike)
|
Kim Alvefur |
2015-09-02 |
util.sql: Log when transactions begin
|
Kim Alvefur |
2015-08-30 |
mod_carbons: Get full_ and bare_sessions from the prosody global [luacheck]
|
Kim Alvefur |
2015-08-27 |
mod_carbons: Carbon chat messages or normal messages that have a body
|
Kim Alvefur |
2015-08-26 |
util.hex: Normalize hex to lowercase and discard non-hex input
|
Kim Alvefur |
2015-08-26 |
plugins/muc/muc.lib: Fix issue #505 where unavailable presences were never used
|
daurnimator |
2015-08-24 |
MUC: Remove duplicated import of muc/persistent (4caef6d53304 and this fixes #482)
|
Kim Alvefur |
2015-08-26 |
Merge 0.10->trunk
|
Kim Alvefur |
2015-08-26 |
Merge 0.9->0.10
|
Kim Alvefur |
2015-08-26 |
ejabberd2prosody: Support password stored as SCRAM hashes
|
Kim Alvefur |
2015-08-20 |
mod_admin_adhoc: Declare local variable, don't set a global [luacheck]
|
Kim Alvefur |
2015-08-26 |
mod_admin_adhoc: Import missing util.set (fixes #518)
|
Kim Alvefur |
2015-08-26 |
Merge 0.10->trunk
|
Kim Alvefur |
2015-08-22 |
mod_websocket: Import sessionmanager (fixes traceback)
|
Kim Alvefur |
2015-08-21 |
storagemanager: Add forward declaration to fix use of open() before it's defined
|
Kim Alvefur |
2015-08-20 |
Merge 0.10->trunk
|
Kim Alvefur |
2015-08-20 |
luacheckrc: Ignore unused _ENV variable
|
Kim Alvefur |
2015-08-20 |
util-src/*.c: Invert Lua 5.2 compat to be 5.2+ by default and a macro to support 5.1
|
Kim Alvefur |
2015-04-26 |
portmanager: Add forward declarations
|
Kim Alvefur |
2015-04-07 |
rostermanager: Add forward declarations
|
Kim Alvefur |
2015-04-07 |
util.sasl.scram: Get rid of module call
|
Kim Alvefur |
2015-04-07 |
util.json: Remove use of newproxy
|
Kim Alvefur |
2015-03-13 |
prosodyctl: Import LuaSocket to a local, don't assume that a global will be set
|
Kim Alvefur |
2015-03-13 |
util.helpers: Fix order of functions using each other [fixes 00412b36166f]
|
Kim Alvefur |
2015-03-03 |
net.server_{select,event}: Don't rely on LuaSocket and LuaSec being present in the globals table
|
Kim Alvefur |
2015-02-23 |
mod_admin_telnet: Remove now broken importing of modulemanager from various commands, use upvalue defined at top of file (thanks daurnimator)
|
Kim Alvefur |
2015-02-22 |
net.*: Remove use of module() function
|
Kim Alvefur |
2015-02-21 |
core.*: Remove use of module() function
|
Kim Alvefur |
2015-02-21 |
util.dependencies: Only abort on Lua versions before 5.1, log a warning about 5.2 and above for now
|
Kim Alvefur |
2015-02-21 |
util.*: Remove use of module() function, make all module functions local and return them in a table at the end
|
Kim Alvefur |
2015-02-21 |
MUC: Fix logic error
|
Kim Alvefur |
2015-08-16 |
Merge 0.10->trunk
|
Kim Alvefur |
2015-08-11 |
Merge 0.9->0.10
|
Kim Alvefur |
2015-08-10 |
mod_component: Fire an event on successful component authentication (For Goffi)
|
Kim Alvefur |
2015-08-10 |
util.interpolation: Add support for filter functions
|
Kim Alvefur |
2015-08-07 |
util.{interpolation,prosodyctl,sql}: Trim trailing whitespace
|
Kim Alvefur |
2015-07-17 |
Merge
|
Matthew Wild |
2015-07-27 |
plugins/muc: Move loading of optional muc libraries from muc.lib.lua to mod_muc
|
daurnimator |
2015-07-27 |
mod_muc: Fix a traceback when an owner joins a room
|
Emmanuel Gil Peyrot |
2015-07-25 |
Merge 0.10->trunk
|
Matthew Wild |
2015-07-08 |
util.sql: Add safety check to ensure our chosen connection charset is actually being used (MySQL)
|
Matthew Wild |
2015-07-08 |
util.sql: Fix log level of debug message
|
Matthew Wild |
2015-07-08 |
util.sql: Log debug message when connecting to database
|
Matthew Wild |
2015-07-08 |
util.sql: Make set_encoding() return failure of SET NAMES
|
Matthew Wild |
2015-07-08 |
util.sql: Return failure if set_encoding() fails
|
Matthew Wild |
2015-07-08 |
mod_storage_sql2: Upgrade table if its charset does not match our connection's charset (thanks Zash)
|
Matthew Wild |
2015-07-08 |
util.sql: Use appropriate collation for the chosen character set - fixes MySQL silently ignoring our SET NAMES command when we use utf8mb4
|
Matthew Wild |
2015-07-08 |
util.sql: Create table with same charset as the charset we selected for our connection, also use corresponding _bin collation
|
Matthew Wild |
2015-07-08 |
util.sql: Allow onconnect callback to fail connection to the DB by returning false, err
|
Matthew Wild |
2015-07-07 |
mod_storage_sql2: Don't upgrade tables without admin intervention
|
Matthew Wild |
2015-07-07 |
mod_storage_sql2: Add prosodyctl command to upgrade tables from the command-line
|
Matthew Wild |
2015-07-07 |
mod_storage_sql2: Add missing return to upgrade_table(), so we know if an upgrade is required
|
Matthew Wild |
2015-07-07 |
mod_storage_sql2: Rename variable to avoid name clash
|
Matthew Wild |
2015-07-07 |
net.dns: Remove resolver:new(), as it needlessly and incorrectly duplicates dns.resolver()
|
Matthew Wild |
2015-07-06 |
Merge with 0.10
|
Matthew Wild |
2015-07-06 |
prosodyctl: check: Add some more known global config options
|
Kim Alvefur |
2015-07-05 |
luacheckrc: Allow plugins to implement functions under module.* (module.load, etc.)
|
Matthew Wild |
2015-06-29 |
Merge 0.10->trunk
|
Kim Alvefur |
2015-07-05 |
util.sql: Call onconnect, provide noop dummy if not set
|
Kim Alvefur |
2015-07-02 |
Remove sql.lib.lua, not used anymore
|
Kim Alvefur |
2015-06-27 |
mod_storage_sql2: Validate configuration after normalizing SQLite3 database path (fixes traceback with default config)
|
Kim Alvefur |
2015-06-27 |
Merge 0.10->trunk
|
Kim Alvefur |
2015-06-25 |
Merge 0.9->0.10
|
Kim Alvefur |
2015-06-25 |
MUC: Prevent admins from being given affiliatons other than owner
|
Kim Alvefur |
2015-06-25 |
Backed out changeset bea3862b6bde in favor of a different approach
|
Kim Alvefur |
2015-06-25 |
MUC: Remove half of monkeypatch that was supposed to make admins always be room owners, fixes #458
|
Kim Alvefur |
2015-06-16 |
Merge with 0.10
|
Matthew Wild |
2015-06-24 |
mod_storage_sql2: Break up monolithic code into functions, theoretically no functionality changes.
|
Matthew Wild |
2015-06-24 |
mod_storage_sql2: Improve logging when database read fails
|
Matthew Wild |
2015-06-24 |
mod_storage_sql2: Some reformatting and variable name improvements
|
Matthew Wild |
2015-06-24 |
mod_storage_sql2: Add some comments
|
Matthew Wild |
2015-06-24 |
util.sql: Remove built-in engine caching. This is the wrong layer to do this, and unintentionally sharing connections could cause problems (e.g. when interleaving multiple queries and result fetching)
|
Matthew Wild |
2015-06-03 |
util.sql: Expose db2uri helper function
|
Matthew Wild |
2015-06-03 |
util.sql: Rename some variable to match conventions
|
Matthew Wild |
2015-06-03 |
tests: Add tests for util.queue
|
Matthew Wild |
2015-06-03 |
util.queue: Allow optional wrap-around when pushing, overwriting oldest unread item
|
Matthew Wild |
2015-06-03 |
util.sql: Remove unused functions and unused commented code
|
Matthew Wild |
2015-05-30 |
Merge 0.10->trunk
|
Kim Alvefur |
2015-05-21 |
mod_storage_sql2: Fix argument compat thing from 41725f3df3cc, it was backwards
|
Kim Alvefur |
2015-05-21 |
Merge 0.10->trunk
|
Kim Alvefur |
2015-05-19 |
mod_storage_sql2: Add a 'caps' table for indicating support for optional features
|
Kim Alvefur |
2015-05-19 |
mod_storage_sql2: Change order of arguments to :append to be the same as return values from :find iterator
|
Kim Alvefur |
2015-05-19 |
mod_storage_sql2: Include 'with' field from iterator like some 3rd party archive-capable storage modules
|
Kim Alvefur |
2015-05-19 |
Merge with trunk
|
Matthew Wild |
2015-05-19 |
Merge 0.10->trunk
|
Matthew Wild |
2015-05-19 |
Merge 0.10->trunk
|
Kim Alvefur |
2015-05-19 |