aboutsummaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Change routing APIEvgeniy Khramtsov2017-02-1642-954/+862
| | | | | | | | | | | Now 'From' and 'To' arguments must be omitted in functions and structures related to routing. The commit deprecates the following functions: ejabberd_router:route/3 in favor of ejabberd_router:route/1 ejabberd_router:route_error/4 in favor of ejabberd_router:route_error/2 ejabberd_local:route_iq/4 in favor of ejabberd_local:route_iq/2 ejabberd_local:route_iq/5 in favor of ejabberd_local:route_iq/3 The format of {route, From, To, Packet} is changed in favor of {route, Packet}
* Remove relict mod_service_logEvgeniy Khramtsov2017-02-161-105/+0
|
* Report password change in the logEvgeniy Khramtsov2017-02-141-1/+5
|
* Attach IP metadata to every stanza received from streamEvgeniy Khramtsov2017-02-143-10/+15
|
* Only use GEN_SERVER macro where appropriateEvgeniy Khramtsov2017-02-147-31/+33
|
* Attach modules to gen_mod's supervisorEvgeniy Khramtsov2017-02-1424-353/+125
|
* Merge pull request #1539 from lemenkov/use_crypto_shaEvgeny Khramtsov2017-02-144-8/+8
|\ | | | | RFE: Use crypto:hash/2 function
| * Use crypto:hash/2 functionPeter Lemenkov2017-02-134-8/+8
| | | | | | | | | | | | | | | | | | | | Use crypto:hash/2 function instead of ones from p1_sha. This function exists since commit erlang/otp@208f9ad3828313f6c659a501d53f5534ec1bdf2e and also implemented as NIF, so I believe it's safe to use it. Signed-off-by: Peter Lemenkov <lemenkov@gmail.com>
* | Improve modules start/stop proceduresEvgeniy Khramtsov2017-02-1424-196/+249
|/
* Check result of gen_mod:start/2 callback (#1534)Evgeniy Khramtsov2017-02-138-58/+44
|
* Apply SASLprep before storing/converting passwordsEvgeniy Khramtsov2017-02-123-32/+84
| | | | Fixes #996 and #1295
* Use p1_server behaviour in xmpp_stream layerEvgeniy Khramtsov2017-02-082-2/+2
|
* Accept "add_commands: admin" in commands section not only "add_commands: - ↵Paweł Chmielowski2017-02-061-0/+2
| | | | | | | admin" This fixes issue reported in #1518, and restores compatibility with what older version were accepting and what is documented.
* Don't shadow binding in matchPaweł Chmielowski2017-02-061-1/+1
|
* Add TLS support for external componentsEvgeniy Khramtsov2017-02-061-1/+22
|
* Make sure that api_permissions always have "console commands" sectionPaweł Chmielowski2017-02-031-21/+24
| | | | | If user didn't override it in config file, default version which allows executing all commands will be added
* Set subscribers nicks when recreating room (thanks to Girdhar Sojitra)(#1495)Badlop2017-01-311-11/+14
|
* Support non-JID lines in command create_rooms_fileBadlop2017-01-311-3/+8
|
* Don't warn if custom schema is not availableChristophe Romain2017-01-311-0/+3
|
* Merge pull request #1502 from lemenkov/ignore_output_valEvgeny Khramtsov2017-01-303-6/+3
|\ | | | | No need to explicitly return ok here
| * No need to explicitly return ok herePeter Lemenkov2017-01-303-6/+3
| | | | | | | | | | | | | | No need to explicitly return ok here. Return value will be ignored anyway. Signed-off-by: Peter Lemenkov <lemenkov@redhat.com>
* | More changes that are required from p1_pam -> epamPaweł Chmielowski2017-01-291-1/+1
| |
* | Do not drop default TLS optionsEvgeniy Khramtsov2017-01-262-2/+2
|/ | | | Fixes #1484
* Speedup features list when a lot of virtual hosts configuredEvgeniy Khramtsov2017-01-242-17/+18
|
* Make mod_disco handle features of mod_pingEvgeniy Khramtsov2017-01-231-16/+1
|
* Make sure only {exit, normal} is not catched when executing a hookEvgeniy Khramtsov2017-01-231-1/+1
|
* Compatibility with R17 in mod_block_strangersAlexey Shchepin2017-01-231-1/+20
|
* Check message subject in mod_block_strangersAlexey Shchepin2017-01-231-1/+2
|
* Avoid using maps:get/2 to keep compatibility with OTP 17.5Evgeniy Khramtsov2017-01-234-19/+15
|
* Fix calling to mod_offline:store_packetEvgeniy Khramtsov2017-01-231-1/+1
|
* Don't use maps:take it available in R19 onlyPaweł Chmielowski2017-01-231-4/+5
|
* Make test suite working againEvgeniy Khramtsov2017-01-2316-49/+75
|
* Make a message is not bounced if it's archivedEvgeniy Khramtsov2017-01-215-25/+33
|
* Archive message before delivering it to offline storage (#1348)Evgeniy Khramtsov2017-01-211-6/+44
|
* Send <compressed/> in correct orderEvgeniy Khramtsov2017-01-211-11/+11
|
* mod_pubsub: Fix last item cache for multiple hostsHolger Weiss2017-01-211-5/+5
| | | | | Don't let the last item cache intermix PubSub items of different virtual domains.
* Add stanza-id to every archived message (#1477)Evgeniy Khramtsov2017-01-203-53/+93
|
* Update copyright headers in new filesEvgeniy Khramtsov2017-01-2010-22/+61
|
* Merge branch 'new_stream'Evgeniy Khramtsov2017-01-2080-7638/+8342
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/cyrsasl.erl src/ejabberd_c2s.erl src/ejabberd_cluster.erl src/ejabberd_frontend_socket.erl src/ejabberd_node_groups.erl src/ejabberd_router.erl src/mod_bosh.erl src/mod_ip_blacklist.erl src/mod_muc_mnesia.erl src/mod_offline.erl src/mod_proxy65_sm.erl
| * Fix reporting dialback failuresEvgeniy Khramtsov2017-01-182-3/+3
| |
| * Don't attempt to resolve _jabber._tcp SRV recordEvgeniy Khramtsov2017-01-181-10/+4
| |
| * Better log bytestream terminationEvgeniy Khramtsov2017-01-171-1/+1
| |
| * Use crypto:exor/2 instead of hand-crafted bxorEvgeniy Khramtsov2017-01-171-11/+3
| |
| * Reset XML stream before sending SASL <success/>Evgeniy Khramtsov2017-01-171-1/+1
| |
| * Get rid of ejabberd_frontend_socketEvgeniy Khramtsov2017-01-174-475/+6
| |
| * Improve error reporting for forbidden serversEvgeniy Khramtsov2017-01-171-14/+25
| |
| * Drop only messages with <body/> in mod_block_strangersAlexey Shchepin2017-01-171-1/+2
| |
| * Stop hook on message drop in mod_block_strangersAlexey Shchepin2017-01-161-1/+1
| |
| * Use user_receive_packet hook in mod_block_strangersAlexey Shchepin2017-01-162-30/+11
| |
| * Remove stub in mob_block_strangersAlexey Shchepin2017-01-161-4/+4
| |