aboutsummaryrefslogtreecommitdiffstats
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headers for 2010Matthew Wild2010-03-2215-30/+30
|
* loggingmanager: Don't use non-standard format specifier to format the timestamp.Waqas Hussain2010-03-221-1/+1
|
* s2smanager: Remove the infamous 'as per RFC' log message entirely (it ↵Matthew Wild2010-03-181-6/+0
| | | | happens too often to be useful)
* Merge 0.6.2/waqas with 0.6.2/MattJMatthew Wild2010-03-036-10/+44
|\
| * 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
| |
| * configmanager: Remove debugging code accidentally committedMatthew Wild2010-02-141-2/+0
| |
| * configmanager: Error when a component and host clash hostnamesMatthew Wild2010-02-141-2/+13
| |
| * sessionmanager, s2smanager: Fix for syntax of null_data_handler() (thanks Nolan)Matthew Wild2010-02-122-2/+2
| |
| * sessionmanager, s2smanager: Give sessions dummy data handlers that log when ↵Matthew Wild2010-02-122-0/+6
| | | | | | | | data is received by a destroyed session
| * hostmanager: Log an error if no hosts are definedMatthew Wild2010-02-121-0/+7
| |
| * 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
| |
| * sessionmanager: Added resource prepping, and invalid resource checking to ↵Waqas Hussain2010-01-111-1/+3
| | | | | | | | the bind_resource function.
| * modulemanager: Fire item-removed events on module unload.Waqas Hussain2009-12-101-0/+9
| |
| * core.sessionmanager, net.*_listener: Remove the evil collectgarbage() callsMatthew Wild2009-11-241-1/+0
| |
* | s2smanager: Use s2smanager log() if session doesn't have a logger (thanks Flo)Matthew Wild2010-02-191-1/+1
| |
* | s2smanager: Fix syntax error)Matthew Wild2010-01-301-1/+1
| |
* | s2smanager: require_s2s_encryption -> s2s_require_encryptionMatthew Wild2010-01-301-1/+1
| |
* | s2smanager: Make require_s2s_encryption do what it says on the tinMatthew Wild2010-01-301-0/+10
| |
* | s2smanager: Stamp a 'to' on the reply stream:stream. This makes prosody happy.Paul Aurich2010-01-031-1/+1
| |
* | s2smanager: Give reasons to destroy_session in more cases, including when ↵Matthew Wild2009-12-171-2/+2
| | | | | | | | DNS lookup fails
* | s2smanager: Have both destroy_session and bounce_sendq accept a reason ↵Matthew Wild2009-12-171-3/+6
| | | | | | | | string to include in bounced stanzas
* | s2smanager: Send reply stream header only after checking we serve this host ↵Matthew Wild2009-12-171-4/+4
| | | | | | | | (sorry darkrain... :) )
* | componentmanager: Set ssl_ctx[_in] for components correctly, and use global ↵Matthew Wild2009-12-041-5/+12
| | | | | | | | SSL context if available
* | Disable SSLv2 by default, it's known to be insecure.Paul Aurich2009-12-041-2/+2
| |
* | s2smanager: Don't tostring() the data before sending, sends2s already does this.Matthew Wild2009-11-211-1/+1
|/
* s2smanager: Log and fail gracefully when unable to create socket for ↵Matthew Wild2010-02-251-0/+5
| | | | outgoing s2s connection (thanks foucault)
* s2smanager: Fix for the logic SRV record priority comparison (thanks darkrain)Matthew Wild2010-02-251-1/+3
|
* core.xmlhandlers: Fixed processing of empty namespaces (which caused an ↵Waqas Hussain2009-11-281-3/+3
| | | | issue with jwchat).
* Merge with 0.6 on prosody.imvault/0.6.00.6.0Matthew Wild2009-11-252-12/+28
|\
| * sessionmanager: Added function send_to_interested_resources().Waqas Hussain2009-11-221-0/+15
| |
| * sessionmanager: Fixed and cleaned function send_to_available_resources(). ↵Waqas Hussain2009-11-221-12/+7
| | | | | | | | The 'to' attribute for presence subscription stanzas is now preserved.
| * loggingmanager: Explicitly flush log messages if the __FLUSH_LOG environment ↵Waqas Hussain2009-11-221-0/+6
| | | | | | | | variable is defined (workaround for MSVCRT buffering piped output).
* | s2smanager: Log warning when trying to send a stanza from a host we don't ↵Matthew Wild2009-11-251-0/+4
|/ | | | serve, instead of a traceback (thanks stpeter)
* s2smanager: Fail outgoing s2s connection if hostname does not pass ↵Matthew Wild2009-11-201-1/+6
| | | | idna_to_ascii(), thanks Flo + waqas
* s2smanager: Queue db:verify unless we already sent a db:result (if we had ↵Matthew Wild2009-11-201-5/+1
| | | | then it can could a dialback deadlock). Also remove some redundant code which could cause a db:result to be sent while still negotiating features (e.g. TLS) and break things. Collectively these fix a 'random' s2s failure (usually with ejabberd for some reason) - resulting in an 'unbound prefix' XML error, or 'ssl handshake failure'. Was this commit message long enough? I think so.
* Changed separator between attribute names and prefixes from '|' to '\1' ↵Waqas Hussain2009-11-121-4/+3
| | | | (optimization and cleanup).
* componentmanager: Improved logging for stanzas being bounced for unavailable ↵Waqas Hussain2009-11-121-1/+1
| | | | components.
* modulemanager: api:get_option(): Handle correctly option values of boolean ↵Matthew Wild2009-11-081-1/+8
| | | | false, don't assume value unset
* rostermanager: Fixed a global access.Waqas Hussain2009-10-221-0/+1
|
* rostermanager: Refactored roster loading to remove duplicate code.Waqas Hussain2009-10-221-17/+8
|
* rostermanager: Log a warning when a self-contact is detected.Waqas Hussain2009-10-221-3/+10
|
* rostermanager: Ensure meta-data entry is present on roster load.Waqas Hussain2009-10-221-0/+1
|
* rostermanager: Remove self-contacts from loaded rosters.Waqas Hussain2009-10-221-0/+2
|
* xmlhandlers: Reset state on error or stream close, fixes possible tracebackMatthew Wild2009-10-211-1/+2
|
* usermanager: Removed an unnecessary global access.Waqas Hussain2009-10-211-4/+1
|
* usermanager: Logged a clear warning when the 'admins' option is not a table.Waqas Hussain2009-10-211-1/+1
|
* usermanager: Changed function is_admin to allow checking for host-specific ↵Waqas Hussain2009-10-211-2/+6
| | | | admins.
* s2smanager: Use session-specific logger to log outgoing data on outgoing s2s ↵Matthew Wild2009-10-181-1/+1
| | | | connections