Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | | | Get rid of outdated mod_mix module | Evgeny Khramtsov | 2018-12-10 | 1 | -323/+0 | |
| |_|_|/ |/| | | | ||||||
* | | | | Don't lose carbons on presence change or session resumption | Evgeny Khramtsov | 2018-12-10 | 3 | -28/+77 | |
| | | | | ||||||
* | | | | Change default ciphers to intermediate | Paweł Chmielowski | 2018-12-07 | 1 | -5/+6 | |
| | | | | ||||||
* | | | | Define default ciphers/protocol_option in example config | Paweł Chmielowski | 2018-12-07 | 1 | -1/+19 | |
| | | | | ||||||
* | | | | Add CHANGELOG.md file | Paweł Chmielowski | 2018-12-07 | 1 | -0/+10 | |
| | | | | ||||||
* | | | | Normalize hostname when processing host_config | Paweł Chmielowski | 2018-12-06 | 1 | -3/+5 | |
| | | | | ||||||
* | | | | Bump version of xmpp in mix.lock | Paweł Chmielowski | 2018-12-06 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Start fast_tls before pkix | Paweł Chmielowski | 2018-12-06 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Bump xmpp dep | Paweł Chmielowski | 2018-12-06 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | configure.ac: Bump required Erlang/OTP version | Holger Weiss | 2018-12-06 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Update mix packaging18.12 | Paweł Chmielowski | 2018-12-06 | 2 | -13/+16 | |
| | | | | ||||||
* | | | | mod_private: Add "bookmarks_to_pep" command | Holger Weiss | 2018-12-05 | 1 | -2/+56 | |
| | | | | | | | | | | | | | | | | | | | | The "bookmarks_to_pep" command exports the bookmarks of the specified user from private XML storage to PEP. | |||||
* | | | | mod_pubsub: Improve PEP behavior for 'whitelist' | Holger Weiss | 2018-12-05 | 1 | -2/+6 | |
| | | | | | | | | | | | | | | | | | | | | If a PEP node's access_model is set to 'whitelist' (or 'authorize'), send last PEP notifications to the node owner. | |||||
* | | | | Remove useless config file (#2665) | Christophe Romain | 2018-12-05 | 1 | -665/+0 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Config file should be generated at packaging/installation stage /ejabberd.yml.example is the default template which can be used as default configuration | |||||
* | | | | Add auth:which_user_exist to bulk checking existence of list of users | Paweł Chmielowski | 2018-12-05 | 2 | -2/+70 | |
| | | | | ||||||
* | | | | Add list types to sql_pt | Paweł Chmielowski | 2018-12-05 | 2 | -6/+38 | |
| | | | | ||||||
* | | | | Revert "Let deliver unsubscribe stanza when no roster push is required (#2598)" | Badlop | 2018-12-05 | 1 | -2/+0 | |
| | | | | | | | | | | | | | | | | This reverts commit 86048f8a25ea820113a35350936b59ea9083c59f. | |||||
* | | | | Let deliver unsubscribe stanza when no roster push is required (#2598) | Badlop | 2018-12-05 | 1 | -0/+2 | |
| | | | | ||||||
* | | | | Use tagged version of pkix dependency | Paweł Chmielowski | 2018-12-05 | 1 | -1/+2 | |
| | | | | ||||||
* | | | | Fix PostgreSQL compatibility in mod_offline_sql:remove_old_messages (#2695) | Alexey Shchepin | 2018-12-05 | 1 | -2/+11 | |
| | | | | ||||||
* | | | | Proxy protocol may send additional data after addresses | Paweł Chmielowski | 2018-12-04 | 1 | -2/+4 | |
| | | | | ||||||
* | | | | Update deps | Paweł Chmielowski | 2018-12-04 | 1 | -3/+3 | |
| | | | | ||||||
* | | | | Add support for proxy protocol | Paweł Chmielowski | 2018-12-04 | 4 | -25/+241 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This add support for version 1 and 2 of protocol specified in http://www.haproxy.org/download/1.8/doc/proxy-protocol.txt To enable it you need add option use_proxy_protocol: true to listener. | |||||
* | | | | Format list of {{name,string}, {value, _}} as json struct name/val | Paweł Chmielowski | 2018-12-03 | 1 | -0/+8 | |
| | | | | ||||||
* | | | | Make mod_http_api assume that missing args of type list are empty list | Paweł Chmielowski | 2018-12-03 | 1 | -4/+9 | |
| |_|/ |/| | | ||||||
* | | | Keep info about carbons inside session table | Evgeny Khramtsov | 2018-12-01 | 14 | -690/+93 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Accordingly, Mnesia/SQL/Riak table 'carboncopy' is not used anymore and can be safely removed. As a consequence, the commit deprecates the following options of mod_carboncopy: - ram_db_type - use_cache - cache_size - cache_missed - cache_life_time Fixes #2663 | |||||
* | | | ejabberd_s2s_in: Check for subdomain configuration | Holger Weiss | 2018-12-01 | 1 | -5/+5 | |
| | | | | | | | | | | | | | | | | | | | | | | | | If an incoming s2s connection to a subdomain such as conference.example.com is accepted, check for host-specific configuration settings for that subdomain rather than for example.com. This is for consistency with ejabberd_s2s_out, and with my previous commit. | |||||
* | | | ejabberd_s2s_in: Check for subdomain certificate | Holger Weiss | 2018-12-01 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | If an incoming s2s connection to a subdomain such as conference.example.com is accepted and a separate certificate is available for that subdomain, offer that certificate instead of the one for example.com. Thanks to Mike Kuketz for reporting the bug. | |||||
* | | | mod_register: Don't advertise IBR unconditionally | Holger Weiss | 2018-12-01 | 1 | -2/+8 | |
| | | | | | | | | | | | | | | | Don't advertise the IBR stream feature if registration is disabled in the configuration. | |||||
* | | | Apply new cache options on mod_stream_mgmt reload | Evgeny Khramtsov | 2018-11-30 | 1 | -1/+2 | |
| | | | ||||||
* | | | Keep last handled stanzas number in cache rather than session table | Evgeny Khramtsov | 2018-11-30 | 3 | -101/+74 | |
| | | | ||||||
* | | | New command unban_ip (#2620) | Badlop | 2018-11-30 | 1 | -0/+51 | |
| | | | ||||||
* | | | Update deps | Paweł Chmielowski | 2018-11-29 | 1 | -4/+4 | |
| | | | ||||||
* | | | Drop some macros related to OTP<19 | Evgeny Khramtsov | 2018-11-29 | 2 | -25/+1 | |
| | | | ||||||
* | | | Implement XEP-0410: MUC Self-Ping optimization | Evgeny Khramtsov | 2018-11-29 | 1 | -26/+40 | |
| | | | | | | | | | | | | Fixes #2630 | |||||
* | | | Advertise disco#info and disco#items by MUC room | Evgeny Khramtsov | 2018-11-29 | 1 | -1/+1 | |
| | | | | | | | | | | | | Fixes #2661 | |||||
* | | | Add xml compression to sql backend of mam | Paweł Chmielowski | 2018-11-28 | 4 | -7/+1392 | |
| | | | ||||||
* | | | Add specific Var names to CAPTCHA fallback form fields (#2672) | Badlop | 2018-11-27 | 1 | -2/+2 | |
| | | | ||||||
* | | | Revert "Upgrade Elixir to 1.6.6 (#2653)" | Christophe Romain | 2018-11-27 | 2 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit d3a9fbf62f1e505371a55629485d6c64e973733c. rebar2 (which is still used) is not able to cope with this change it should check lib/elixir/src/elixir.app.src instead of src/elixir.app.src as src/elixir.app.src moved away, currently check fails and this breaks jenkins tests. options: use rebar3, or drop rebar completely to rely only on mix. | |||||
* | | | Upgrade Elixir to 1.6.6 (#2653) | Christophe Romain | 2018-11-27 | 2 | -2/+2 | |
| | | | ||||||
* | | | Merge branch 'master' of github.com:processone/ejabberd | Evgeny Khramtsov | 2018-11-23 | 3 | -4/+6 | |
|\ \ \ | ||||||
| * | | | Fix typo in recent PR commit (#2697) | Badlop | 2018-11-23 | 1 | -2/+2 | |
| | | | | ||||||
| * | | | Bump lager version in mix as well | Christophe Romain | 2018-11-23 | 2 | -2/+2 | |
| | | | | ||||||
| * | | | Merge pull request #2697 from Snowmanko/master | badlop | 2018-11-23 | 1 | -2/+4 | |
| |\ \ \ | | | | | | | | | | | Update - fixed ejabberdctl push_roster description | |||||
| | * | | | Update - fixed ejabberdctl push_roster description | Snowman | 2018-11-22 | 1 | -2/+4 | |
| | | | | | ||||||
* | | | | | Improve tests for mod_private | Evgeny Khramtsov | 2018-11-23 | 2 | -30/+108 | |
|/ / / / | ||||||
* | | | | Fix test case for invalid language | Evgeny Khramtsov | 2018-11-23 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Only advertise conversion feature when mod_pubsub is loaded | Evgeny Khramtsov | 2018-11-23 | 1 | -6/+11 | |
| | | | | ||||||
* | | | | Bump lager version | Evgeny Khramtsov | 2018-11-23 | 1 | -2/+1 | |
| | | | | ||||||
* | | | | Support for XEP-0411: Bookmarks Conversion | Evgeny Khramtsov | 2018-11-23 | 6 | -42/+105 | |
| | | | |