aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | s2smanager: Add incoming_s2s to the prosody objectMatthew Wild2009-10-171-0/+1
| |
* | hostmanager: deactivate() now accepts a reason, closes s2s connections as ↵Matthew Wild2009-10-171-6/+37
| | | | | | | | well as disconnecting users, and unloads modules for the host
* | hostmanager: Add return _M;Matthew Wild2009-10-171-0/+1
| |
* | tests: Fix stanza_router tests to work with the new routing code, finally ↵Matthew Wild2009-10-171-26/+32
| | | | | | | | all tests pass again \o/
* | tests: More environment magic to help get stuff working in a sandboxMatthew Wild2009-10-171-5/+8
| |
* | stanza_router: Localize hosts, full_sessions and bare_sessions, and take ↵Matthew Wild2009-10-171-1/+4
| | | | | | | | from the prosody object instead of _G
* | componentmanager: Handle missing prosody object (helps us pass some tests)Matthew Wild2009-10-171-2/+4
| |
* | prosody: Move global protection earlier (to before modules are loaded, etc.)Matthew Wild2009-10-171-1/+1
| |
* | prosody: Require new require :)Matthew Wild2009-10-171-1/+1
| |
* | prosody: Require some core/util libraries which core modules depend upon, C ↵Matthew Wild2009-10-171-0/+5
| | | | | | | | modules and other modules which write to _G
* | prosody: Rename global net_activate_ports -> prosody.net_activate_portsMatthew Wild2009-10-171-6/+6
| |
* | util.require: A replacement for Lua's require/module that doesn't load into ↵Matthew Wild2009-10-171-0/+237
| | | | | | | | the global environment by default (C modules still get past this)
* | util.helpers: Add copyright headerMatthew Wild2009-10-171-0/+7
| |
* | tests: Have fake module() set _M to satisfy some modulesMatthew Wild2009-10-161-1/+1
| |
* | s2smanager: Fix access of 'config' global without requiring configmanagerMatthew Wild2009-10-161-1/+1
| |
* | tests: Add tests for new modulemanager load_modules_for_host codeMatthew Wild2009-10-162-0/+49
| |
* | modulemanager: Re-organise module loading to still work when no global ↵Matthew Wild2009-10-161-13/+16
| | | | | | | | modules_enabled is defined in the config (thanks hoelzro for accidentally discovering this one)
* | util.helpers: Add get_upvalue(function, name) helperMatthew Wild2009-10-161-0/+9
| |
* | util.dataforms: Incorporate slightly modified patch for list-single type ↵Matthew Wild2009-10-161-1/+11
| | | | | | | | from Florob
* | mod_vcard: Hide me from the trailing-whitespace policeMatthew Wild2009-10-161-1/+1
| |
* | mod_vcard: Add vcard_compatibility option to handle vcard stanzas routed to ↵Matthew Wild2009-10-151-35/+49
| | | | | | | | the full JID by ejabberd MUC rooms
* | Merge with 0.5Matthew Wild2009-10-151-1/+1
|\ \
| * | xmppserver_listener: Fix typo (thanks Jorj)Matthew Wild2009-10-151-1/+1
| | |
* | | Merge with 0.5Matthew Wild2009-10-142-7/+12
|\| |
| * | net.server: Better handling of closing sockets during sendMatthew Wild2009-10-141-6/+9
| | |
| * | xmppserver_listener: More forcefully close s2s connections (fixes fd leak)Matthew Wild2009-10-141-0/+3
| | |
* | | Merge with 0.5Matthew Wild2009-10-131-2/+5
|\| |
| * | net.dns: Remove sockets from socketset when closing them, fixes a leakMatthew Wild2009-10-131-2/+5
| | |
* | | Merge with 0.5Waqas Hussain2009-10-131-3/+3
|\| |
| * | rostermanager: Fixed a traceback on roster save.Waqas Hussain2009-10-131-3/+3
| | |
* | | modulemanager: Changed api:get_host_items to include items from the global ↵Waqas Hussain2009-10-131-0/+8
| | | | | | | | | | | | host in its result.
* | | util.dataforms: Small fix to allow generating forms without specifying any ↵Matthew Wild2009-10-101-1/+1
| | | | | | | | | | | | input data
* | | util.dataforms: Support for jid-single field type especially for Florob :)Matthew Wild2009-10-101-0/+3
| | |
* | | mod_tls: Don't try to start TLS if we can't actually do it (thanks Florob)Matthew Wild2009-10-091-1/+1
| | |
* | | componentmanager: Auto-load mod_tls for components #hackMatthew Wild2009-10-091-0/+1
| | |
* | | componentmanager: Remove FIXMEMatthew Wild2009-10-091-1/+0
| | |
* | | componentmanager: Fix oops in pattern for matching subdomainMatthew Wild2009-10-091-1/+1
| | |
* | | componentmanager: Use ssl_ctx of 'parent' host (should fix TLS for components)Matthew Wild2009-10-081-1/+12
| | |
* | | mod_tls: Catch s2s-stream-features and add starttls feature if possibleMatthew Wild2009-10-081-5/+4
| | |
* | | mod_dialback: Catch s2s-stream-features and add dialback featureMatthew Wild2009-10-081-0/+5
| | |
* | | s2smanager: Make s2s-stream-features a per-host eventMatthew Wild2009-10-081-1/+6
| | |
* | | util.stanza: Remove silly dependency on util.loggerMatthew Wild2009-10-081-2/+0
| | |
* | | util.array: Oh no it isn't!Matthew Wild2009-10-081-1/+0
| | |
* | | modulemanager: Bump log level of unhandled non-default-namespace elements, ↵Matthew Wild2009-10-061-1/+2
| | | | | | | | | | | | and log their full XML
* | | util.stanza: Soften dependency on util.termcoloursMatthew Wild2009-10-061-2/+9
| | |
* | | util.stanza: Make xml_escape publicly accessibleMatthew Wild2009-10-061-3/+6
| | |
* | | s2smanager: Don't send version=1.0 in reply to incoming stream tag if they ↵Matthew Wild2009-10-061-1/+1
| | | | | | | | | | | | didn't advertise 1.0 (makes happy some old ejabberd versions)
* | | sessionmanager: Mark client streams as opened sooner to avoid wrapping ↵Paul Aurich2009-10-061-9/+10
| | | | | | | | | | | | errors in unnecessary stream tags
* | | s2smanager: Improve log message on missing to/from in stream headerMatthew Wild2009-10-061-1/+3
| | |
* | | mod_console: Add a space before '(encrypted)' in s2s:show()Matthew Wild2009-10-061-2/+2
| | |