aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge 0.8->trunkMatthew Wild2011-01-074-36/+57
|\|
| * prosody.cfg.lua.dist: Update to include storage configuration and examples ↵Matthew Wild2011-01-071-0/+12
| | | | | | | | for SQL
| * prosody.cfg.lua.dist: Add note about the require_encryption optionsMatthew Wild2011-01-071-1/+6
| |
| * storagemanager, mod_storage_internal: Split out default driver to ↵Matthew Wild2011-01-072-35/+36
| | | | | | | | mod_storage_internal, and greatly simplify storagemanager's error handling and fallback code
| * prosody.cfg.lua.dist: Add motd pluginMatthew Wild2011-01-071-0/+1
| |
| * mod_motd: Process value to strip any indentation from the configMatthew Wild2011-01-071-0/+2
| |
* | Merge 0.8->trunkMatthew Wild2011-01-073-674/+0
|\|
| * ejabberdstore.lib.lua: Remove now needless libraryMatthew Wild2011-01-071-190/+0
| |
| * ejabberd_init.lib.lua: Remove now needless libraryMatthew Wild2011-01-071-252/+0
| |
| * mod_storage_sql_ejabberd: Remove (moving to prosody-modules)Matthew Wild2011-01-071-232/+0
| |
* | Merge 0.8->trunkMatthew Wild2011-01-060-0/+0
|\|
| * storagemanager: Fix log message (s/internal/null/)Matthew Wild2011-01-061-1/+1
| |
| * storagemanager: Add new "null" provider to get used when loading a driver or ↵Matthew Wild2011-01-061-4/+20
| | | | | | | | opening a store fails, instead of falling back to the default driver
| * storagemanager: Log host in message when loading storage provider failsMatthew Wild2011-01-061-1/+1
| |
| * net.server_event: Log interface and port number when binding failsMatthew Wild2011-01-061-1/+1
| |
| * mod_storage_sql: Catch Lua errors during SQL transactions, and rollback.Waqas Hussain2011-01-051-13/+30
| |
| * net.httpserver: Removed unused import and variables.Waqas Hussain2011-01-051-2/+0
| |
| * net.httpserver: Changed an unnecessary global access.Waqas Hussain2011-01-051-1/+1
| |
| * mod_storage_sql: Removed unnecessary initialization of a variable.Waqas Hussain2011-01-051-1/+1
| |
| * net.httpserver: Decode percent-encoded characters in URL path.Waqas Hussain2011-01-051-0/+1
| |
| * modulemanager: Removed an unused variable.Waqas Hussain2011-01-051-2/+0
| |
| * configmanager: Added rawget().Waqas Hussain2011-01-051-0/+9
| |
| * mod_bosh: Fix for miscalculating inactivity, causing disconnects under a ↵Matthew Wild2011-01-041-5/+6
| | | | | | | | steady stream of traffic
| * prosody, prosodyctl: Filter out relative paths from package.(c)path when ↵Matthew Wild2011-01-042-4/+28
| | | | | | | | installed
| * prosody, prosodyctl: Create prosody object as a local before exporting as a ↵Matthew Wild2011-01-042-4/+4
| | | | | | | | global
| * mod_register: Small code cleanupMatthew Wild2011-01-041-5/+2
| |
| * mod_register: Change to use new delete_user auth provider methodMatthew Wild2011-01-041-7/+10
| |
| * mod_register: Add registration_compat config option to allow account remove ↵Matthew Wild2011-01-041-2/+15
| | | | | | | | requests addressed to='host' (defaults to true)
| * mod_auth_internal_*: Support for delete_user methodMatthew Wild2011-01-042-0/+8
| |
| * usermanager: Add delete_user methodMatthew Wild2011-01-041-0/+4
| |
| * usermanager: Have methods not implemented in the active provider fall back ↵Matthew Wild2011-01-041-1/+3
| | | | | | | | to the null provider (later we can add support for chains of providers)
| * usermanager: Change dummy provider method to return an error string also ↵Matthew Wild2011-01-041-2/+4
| | | | | | | | (method not implemented)
| * net.adns: Log the DNS server that a query is sent toMatthew Wild2011-01-041-1/+4
| |
| * MUC: Fix a pair of missing :up()Kim Alvefur2011-01-031-2/+2
| |
| * util.sasl: Cache the calculated mechanisms set for SASL profiles ↵Waqas Hussain2010-12-291-5/+9
| | | | | | | | (profile.mechanisms table).
| * prosody: Don't add a datamanager callback when anonymous_login=true ↵Waqas Hussain2010-12-281-6/+0
| | | | | | | | (mod_auth_anonymous does this now).
| * hostmanager: Don't set host.disallow_s2s when anonymous_login=true ↵Waqas Hussain2010-12-281-3/+0
| | | | | | | | (mod_auth_anonymous does this now).
| * mod_saslauth: Remove special handling for SASL ANONYMOUS, and let ↵Waqas Hussain2010-12-281-29/+2
| | | | | | | | mod_auth_anonymous handle it.
| * usermanager: Assume authentication="anonymous" when anonymous_login=true.Waqas Hussain2010-12-271-0/+2
| |
| * util.sasl.*, mod_auth_*, mod_saslauth: Pass SASL handler as first parameter ↵Waqas Hussain2010-12-278-12/+12
| | | | | | | | to SASL profile callbacks.
| * mod_storage_sql: Use util.json instead of util.serialization.Waqas Hussain2010-12-271-4/+4
| |
| * util.json: Initial commit.Waqas Hussain2010-12-271-0/+356
| |
| * mod_storage_sql: Log an error on query failure.Waqas Hussain2010-12-271-1/+1
| |
| * mod_storage_sql: Remove the subkey column from the Prosody table, and make ↵Waqas Hussain2010-12-271-30/+21
| | | | | | | | the map store compatible with the key-value store.
| * mod_storage_sql: Dynamically replace backquotes with double quotes when ↵Waqas Hussain2010-12-271-2/+6
| | | | | | | | connecting to PostgreSQL...
| * mod_storage_sql: Call commit() after all SQL statements, including SELECT, ↵Waqas Hussain2010-12-271-3/+3
| | | | | | | | to get SQLite to drop its locks.
| * mod_storage_sql: Quote identifiers in SQL with backquotes, and use the empty ↵Waqas Hussain2010-12-271-15/+15
| | | | | | | | string for NULL, and '=' instead of 'IS' for comparison, to work with MySQL's limitations...
| * Don't check priority in mod_offlineRobert Hoelz2010-12-091-13/+11
| |
| * mod_message, mod_offline: Change message/offline/store -> message/offline/handleRobert Hoelz2010-12-092-2/+2
| |
| * mod_offline: Make sure mod_offline's store handler reports success vs failure.Robert Hoelz2010-12-091-1/+1
| |