Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2016-07-19Fix ce0d1704c6cc167c8bc891587952f78c55f979adPablo Polvorin
Original request was to allow ejabberd sysadmin to generate tokens for specific users. JIDs must not be passed as argument when requesting the tokens.
2016-07-18jlib: Don't try to keep just one <delay/> tagHolger Weiss
It seems unclear whether XEP-0203 really mandates that stanzas may not have multiple <delay/> tags. Editing/removing existing tags doesn't seem worth the effort, especially as we'd have to take more care which tag to keep if the stanza already has more than one.
2016-07-10Omit [info] message with number of queued stanzasHolger Weiss
Just log a debug message if a stream management session times out and some stanzas weren't acknowledged.
2016-07-10Fix compilation errorEvgeniy Khramtsov
2016-07-09Use hooks instead of direct calls to mod_mamEvgeniy Khramtsov
2016-07-08mod_http_upload_quota: Depend on mod_http_uploadHolger Weiss
mod_http_upload_quota uses mod_http_upload's "docroot" option, so the mod_http_upload configuration must be parsed, first. Fixes #1025.
2016-07-08Do send last items only for subscription on current plugin typeChristophe Romain
2016-07-08Rename MUC/Sub's namespaceEvgeniy Khramtsov
2016-07-08Handle MUC/Sub subscriptions list requestEvgeniy Khramtsov
2016-07-08Advertise MUC/Sub support in MUC service disco#infoEvgeniy Khramtsov
2016-07-08Experimental MUC/Sub supportEvgeniy Khramtsov
2016-07-07Get rid of warningsEvgeniy Khramtsov
2016-07-07Warn on cyclic modules dependenciesEvgeniy Khramtsov
2016-07-06Revert "Recover fix of 907e239 lost in 9deb294 (thanks to Alexey Shchepin)" ↵Badlop
(#1183) This reverts commit 53f3a4580312ee503bfec1e2e14444ecad931fdd.
2016-07-06Make modules loading in a dependent order (#1191)Evgeniy Khramtsov
2016-07-06Add missing '/' for jid matching from commit e300f80Christophe Romain
2016-07-05Fix missed escaping in node_flat_sql.erlAlexey Shchepin
2016-07-05Quote reserver 'type' keyword for pgsql to fix e300f80Christophe Romain
2016-07-05Fix use of like parameter in sql pubsub's requestsChristophe Romain
2016-07-03mod_configure: Fix editing of access rulesHolger Weiss
2016-07-01Fix compilation issues on R19Paweł Chmielowski
2016-06-29mod_mam_mnesia: Force garbage collectionHolger Weiss
The VM fails to collect the garbage generated during MAM lookups automatically, so mod_mam_mnesia's memory usage easily goes up to several gigabytes if we don't force garbage collection.
2016-06-29mod_client_state: Throttle PEP stanzas by defaultHolger Weiss
2016-06-29Allow generation of oauth tokens from command line16.06Pablo Polvorin
Oauth tokens can be generated for commands (scopes) having admin|user|open policy. Restricted commands are not available as those are only usable from ejabberdctl command line. Four new commands are available: $ejabberdctl oauth_issue_token "stats;get_roster" Generates a token authorized to call both stats and get_roster commands. Note scopes must be separated by semicolon. $ejabberdctl oauth_list_tokens List tokens generated from the command line, with their scope and expirity time. $ejabberdctl oauth_list_scopes List scopes available $ejabberdctl oauth_revoke_token "Lbs7qdJfdKXOWzVrArgyckY055tE1xnt" Revokes the given token
2016-06-27Include correct version in stream:stream when reporting errorsPaweł Chmielowski
This fixes issue #1174
2016-06-24acl: ACLName rule should match if any part of ACLName matchesPaweł Chmielowski
2016-06-23mod_pubsub: Fix matching of set_node/1 resultHolger Weiss
nodetree_tree_sql:set_node/1 returns {result, NodeIdx} on success, not {ok, NodeIdx}. Thanks to Christophe Romain for spotting this.
2016-06-23When convertion of xmlrpc argument to type fails, report it as errorPaweł Chmielowski
2016-06-22mod_blocking_sql: Handle default list corner caseHolger Weiss
Handle the situation where a list of the name "Blocked contacts" was created by an XEP-0016 client, but no default list exists.
2016-06-22Merge pull request #1120 from anagromataf/feature/archive-id-in-message-carbonsChristophe Romain
Send unique stanza id and archived tag also in the message carbons
2016-06-22Restore get_items conditions when not using RSM (#1147)Christophe Romain
2016-06-22Set HTTP/1.0 so github accepts the request (#1157)Badlop
2016-06-22Fix PubSub RSM on get_items (#1147)Christophe Romain
2016-06-22Update supported xep versionChristophe Romain
2016-06-22Fix pgsql compatibility on delete_old_messages (#1137)Christophe Romain
2016-06-22XEP-0198: Apply cosmetic changesHolger Weiss
2016-06-21XEP-0198: Also count stanzas when socket is closedHolger Weiss
Don't forget to count stanzas received from the stream management client that are processed right after the connection was lost.
2016-06-21Use {access,shaper}_rules_validator in other places where access rules are usedPaweł Chmielowski
2016-06-21Use new access_rules_validator in couple placesPaweł Chmielowski
2016-06-21Add acl:{access,shaper}_rules_validator for use in {mod_}opt_type()Paweł Chmielowski
2016-06-21Allow {mod_}opt_type to transform values passed to it, and for better error ↵Paweł Chmielowski
reporting
2016-06-21Avoid cleanup on bag when disc_only, switch in memory (#1161)Christophe Romain
2016-06-20Fix handling of queued stanzas on session timeoutHolger Weiss
Don't fail to resend or bounce unacknowledged stanzas if the stream management session timed out. Closes #1160.
2016-06-16Allow using shaper defined by name like in in s2s_shaper: fastPaweł Chmielowski
2016-06-16Typo in option namePaweł Chmielowski
2016-06-15Add shorter version of some common access rules definitionsPaweł Chmielowski
This add conversion of - allow to - allow: all and - allow: acl_name to - allow: - acl: acl_name (this works also for deny, and number in shapers)
2016-06-15Check password with jid:resourceprep when registering account (#996)Badlop
2016-06-14mod_mam: Fix "assume_mam_usage: if_enabled"Holger Weiss
2016-06-10Recover ec6c58a which was reverted in 100827e (thanks to Alexey Shchepin)Badlop
2016-06-08push_roster must convert read strings to binaries (#1075)Badlop