aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* s2smanager: Only bounce real stanzas on s2s failure, not dialback and ↵Matthew Wild2010-08-031-1/+2
| | | | friends (thanks elghinn)
* util.datetime: Added implementation for function parse().Waqas Hussain2010-08-021-1/+20
|
* storage/mod_ejabberd: Reorganized some code.Waqas Hussain2010-08-021-19/+17
|
* util.sasl_cyrus: Cleanup.Waqas Hussain2010-08-021-9/+4
|
* util.sasl: Removed method:forbidden() and its side effects.Waqas Hussain2010-08-021-21/+5
|
* util.sasl_cyrus: Removed method:forbidden().Waqas Hussain2010-08-021-7/+1
|
* mod_auth_*: Fixed copyright headers.Waqas Hussain2010-08-023-3/+0
|
* util.xmppstream: Add set_session() method to change the session that a ↵Matthew Wild2010-08-021-2/+8
| | | | stream is associated with
* net.xmppclient_listener: Add associate_session(conn, session) to change the ↵Matthew Wild2010-08-021-0/+4
| | | | session a connection is associated with
* net.server_event: Remove some debug messagesMatthew Wild2010-08-021-3/+0
|
* mod_version: Leave out the os element if hide_os_type is setKim Alvefur2010-08-011-7/+6
|
* mod_version: Make the command used to get OS version configurableKim Alvefur2010-08-011-1/+1
|
* usermanager: Fix two nil global accessesMatthew Wild2010-07-311-2/+2
|
* mod_saslauth: Fixed a nil global access.Waqas Hussain2010-07-311-3/+4
|
* mod_saslauth: Check for unencrypted PLAIN auth in mod_saslauth instead of ↵Waqas Hussain2010-07-311-6/+6
| | | | the SASL handler (makes it work for Cyrus SASL).
* mod_saslauth: Move mandatory encryption enforcement to before ↵Waqas Hussain2010-07-311-3/+3
| | | | sasl_handler:select().
* storage/mod_ejabberd (and associated library): Initial commit.Waqas Hussain2010-07-312-0/+483
|
* storage/mod_xep0227: Initial commit.Waqas Hussain2010-07-311-0/+163
|
* prosody: Enable storage manager.Waqas Hussain2010-07-311-0/+1
|
* prosody.cfg.lua.dist: Fixed trailing whitespace.Waqas Hussain2010-07-311-4/+4
|
* util.pluginloader: Remove useless datamanager dependency.Waqas Hussain2010-07-311-2/+0
|
* util.pluginloader: Fix loading of plugins, plugin libraries and resources in ↵Waqas Hussain2010-07-311-9/+23
| | | | subfolders (e.g., when loading 'a/b', load 'a/mod_b.lua', and not 'mod_a/b.lua').
* util.roster: Remove, not going this route nowMatthew Wild2010-07-261-19/+0
|
* mod_message: Discard headline messages sent to offline full JIDs (to follow ↵Waqas Hussain2010-07-261-1/+1
| | | | latest spec updates).
* mod_console: Override dofile() in the console environment (this lets print() ↵Waqas Hussain2010-07-261-1/+7
| | | | print to the console session for example).
* tests: Added tests for util.sasl.scram.Hi().Waqas Hussain2010-07-262-0/+24
|
* util.sasl.scram: Made function Hi public.Waqas Hussain2010-07-261-1/+1
|
* mod_console: Added support for multiple arguments to print().Waqas Hussain2010-07-261-1/+7
|
* storagemanager: Fixed a nil access.Waqas Hussain2010-07-261-1/+1
|
* prosody.resolve_relative_path: Updated to take a parent path to resolve against.Waqas Hussain2010-07-232-6/+7
|
* storagemanager: Initial commit.Waqas Hussain2010-07-231-0/+68
|
* Merge 0.7->trunkMatthew Wild2010-07-231-2/+2
|\
| * certmanager: Don't disable LuaSec and future cert loading on failure, and ↵Matthew Wild2010-07-231-2/+3
| | | | | | | | add error messages to the no LuaSec/config cases (thanks Jakob)
* | net.server_select: Remove 'now' parameter from starttls(), and base it on ↵Matthew Wild2010-07-221-4/+4
| | | | | | | | whether the sendbuffer is empty instead
* | mod_tls: Remove extraneous flag to starttls() for s2sout connecectionsMatthew Wild2010-07-221-1/+1
| |
* | net.server_event: Fix to not call onconnect a second time after the SSL ↵Matthew Wild2010-07-221-17/+19
| | | | | | | | handshake for starttls connections (thanks Flo)
* | usermanager, mod_auth_internal_hashed, mod_legacyauth: New order of ↵Matthew Wild2010-07-213-3/+3
| | | | | | | | parameters for usermanager.test_password - username, host, password
* | mod_register: Drop useless depencency on datamanager.Waqas Hussain2010-07-201-1/+0
| |
* | MUC: Store the nick (full room JID) which set the subject, and send subject ↵Waqas Hussain2010-07-201-1/+2
| | | | | | | | to occupants from that JID.
* | util.iterators: Add skip() to skip the first n items of an iteratorMatthew Wild2010-07-201-0/+9
| |
* | mod_saslauth: Got rid of undocumented and useless 'sasl_realm' config option ↵Waqas Hussain2010-07-181-2/+1
| | | | | | | | (was only used for anonymous auth, and that didn't make sense).
* | Merge with trunk.Waqas Hussain2010-07-172-2/+1
|\ \
| * | MUC: No need to call is_admin twice now, global admins are admins on hostsMatthew Wild2010-07-171-1/+1
| | |
| * | net.server_event: Remove debug logging from dummy onstatus handlerMatthew Wild2010-07-171-1/+0
| | |
* | | mod_auth_internal_hashed: Fixed SCRAM-SHA-1 mechanism to not traceback on ↵Waqas Hussain2010-07-171-3/+5
|/ / | | | | | | non-existent users.
* | mod_saslauth: Cleaned up unused requires.Waqas Hussain2010-07-171-7/+0
| |
* | mod_saslauth: A little cleanup for anonymous_login.Waqas Hussain2010-07-171-2/+3
| |
* | configmanager: Remove dependency on eventmanager, and global 'prosody' objectMatthew Wild2010-07-171-2/+2
| |
* | s2smanager: Handle disallow_s2s for incoming streams as well as outgoingMatthew Wild2010-07-161-4/+16
| |
* | net.server_select: Ensure that onconnect is called for server sockets as ↵Matthew Wild2010-07-161-11/+13
| | | | | | | | well as clients, rather than onincoming. Fixes mod_console traceback, issue #197