aboutsummaryrefslogtreecommitdiffstats
path: root/core/stanza_router.lua
Commit message (Collapse)AuthorAgeFilesLines
* modulemanager, stanza_router: Moved modulemanager.handle_stanza to ↵Waqas Hussain2010-10-161-3/+24
| | | | stanza_router, as a local function handle_unhandled_stanza. modulemanager is no longer a dependency of stanza_router.
* Merge 0.6->0.7Matthew Wild2010-03-301-7/+4
|\
| * stanza_router, s2smanager, modulemanager: Fix for handling of the default ↵Matthew Wild2010-03-301-7/+4
| | | | | | | | namespace on stanzas, causing sometimes jabber:client to be sent over s2s, and accepted
* | Merge 0.6->0.7Matthew Wild2010-03-221-2/+2
|\|
| * Update copyright headers for 2010Matthew Wild2010-03-221-2/+2
| |
| * stanza_router: Don't send error replies for stanzas of type 'error' and ↵Waqas Hussain2010-03-041-1/+3
| | | | | | | | 'result' on unbound authenticated connections.
| * stanza_router: Allow non-jabber:client elements after auth, before bind.Waqas Hussain2010-03-041-1/+1
| |
| * stanza_router: Added third parameter to core_post_stanza, to control pre-events.Waqas Hussain2010-01-291-3/+3
| |
| * stanza_router: Log the name of unhandled stanzas (thanks bear)Matthew Wild2010-01-181-1/+1
| |
* | stanza_router: Don't send error replies for stanzas of type 'error' and ↵Waqas Hussain2010-03-221-1/+3
| | | | | | | | 'result' on unbound authenticated connections. [originally fa84451e9b35 in 0.6]
* | stanza_router: Allow non-jabber:client elements after auth, before bind. ↵Waqas Hussain2010-03-221-1/+1
| | | | | | | | [originally 2c538d4bde13 in 0.6]
* | stanza_router: Make sure /self events are fired when the 'to' attribute is ↵Waqas Hussain2010-02-211-0/+1
| | | | | | | | missing.
* | stanza_router: Fire /self events for stanzas users send to their own bare JID.Waqas Hussain2010-02-131-1/+3
| |
* | stanza_router: Added third parameter to core_post_stanza, to control pre-events.Waqas Hussain2010-01-291-3/+3
| |
* | stanza_router: Log the name of unhandled stanzas (thanks bear)Matthew Wild2010-01-181-1/+1
| |
* | stanza_router: Don't log full stanzas destined for s2sMatthew Wild2009-11-221-1/+1
|/
* stanza_router: Added a compatibility workaround for missing 'id' attribute ↵Waqas Hussain2009-10-171-5/+2
| | | | in <iq/> elements.
* stanza_router: Localize hosts, full_sessions and bare_sessions, and take ↵Matthew Wild2009-10-171-1/+4
| | | | from the prosody object instead of _G
* Merge with 0.5Waqas Hussain2009-10-041-1/+5
|\
| * stanza_router: Reply to IQ requests with missing 'id' attribute with a ↵Waqas Hussain2009-10-041-1/+5
| | | | | | | | bad-request error.
* | stanza_router: Add COMPAT comment for Pidgin workaroundMatthew Wild2009-10-041-1/+1
|/
* Fixed: Possible duplicate error replies for unhandled stanzasWaqas Hussain2009-07-281-5/+1
|
* Remove version number from copyright headersMatthew Wild2009-07-101-1/+1
|
* stanza_router: Catch and log an error case which I don't think should happen ↵Matthew Wild2009-07-101-1/+4
| | | | (but sometimes seems to)
* stanza_router: Check host.disallow_s2s before routing over s2sout. you can ↵Matthew Wild2009-07-031-6/+10
| | | | haz no s2s.
* stanza_router: Removed unnecessary xmlns checkWaqas Hussain2009-06-291-1/+1
|
* stanza_router: Don't fire preprocessing events if stanza is not from full JIDWaqas Hussain2009-06-291-1/+1
|
* stanza_router: Fire events also for stanzas to componentsMatthew Wild2009-06-261-2/+2
|
* stanza_router: Remove unused variables and codeWaqas Hussain2009-06-251-16/+1
|
* stanza_router: A little refactoringWaqas Hussain2009-06-251-2/+1
|
* stanza_router: Remove unused variablesWaqas Hussain2009-06-251-6/+2
|
* stanza_router: Remove even more old routing codeWaqas Hussain2009-06-251-12/+0
|
* stanza_router: Remove some more old routing codeWaqas Hussain2009-06-251-16/+5
|
* stanza_router: Call core_post_stanza from core_route_stanza in place of old ↵Waqas Hussain2009-06-251-0/+1
| | | | routing code
* stanza_router: Removed unused function: select_best_resourcesWaqas Hussain2009-06-251-19/+0
|
* stanza_router: Removed old routing codeWaqas Hussain2009-06-251-82/+1
|
* stanza_router: Skip prepping 'to' in many common cases - #optimizationWaqas Hussain2009-06-201-9/+13
|
* stanza_router: Skip prepping 'from' on c2s origins - #optimizationWaqas Hussain2009-06-201-1/+1
|
* stanza_router: Fixed a corner case where processing could continue after an ↵Waqas Hussain2009-06-201-0/+1
| | | | error reply
* stanza_router: A little refactoringWaqas Hussain2009-06-201-8/+8
|
* stanza_router: Remove unused variablesWaqas Hussain2009-06-141-6/+0
|
* stanza_router: Remove all traces of presencemanagerWaqas Hussain2009-06-141-6/+2
|
* stanza_router: Use stanza.attr.from's host instead of origin.host when ↵Waqas Hussain2009-06-141-2/+2
| | | | routing stanzas to remote hosts (fixes problem with sending from node@host components)
* stanza_router: Remove unused s2s dialback functionsWaqas Hussain2009-06-041-3/+0
|
* stanza_router: workaround for a Pidgin bug which sets 'to' to the SRV resultWaqas Hussain2009-06-031-0/+1
|
* stanza_router: Remove the 'to' attribute when it's value is the bare JID of ↵Waqas Hussain2009-06-031-0/+3
| | | | the local user sending the stanza
* stanza_router: Reply with an error on groupchat messages to bare JIDWaqas Hussain2009-06-011-1/+1
|
* stanza_router: Don't reply with an error on invalid JIDs in error or result ↵Waqas Hussain2009-06-011-2/+6
| | | | stanzas
* stanza_router: Proper error for clients sending stanzas after auth but ↵Waqas Hussain2009-06-011-2/+3
| | | | before resource binding
* Merge backout with following commitsMatthew Wild2009-06-011-3/+3
|\