aboutsummaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* allow storage of emojis in archive on mssqlChristoph Scholz2019-12-271-29/+64
|
* Fix case clause error regarding admin_generated password (#3122)Badlop2019-12-241-1/+2
|
* Add ability to hookup config transformerPaweł Chmielowski2019-12-161-4/+10
|
* Fix mod_muc_log skipping non-Latin messages (thanks to Yandrey)(#3115)Badlop2019-12-161-5/+3
|
* Improve compatibility with CockroachDB (#3074)Alexey Shchepin2019-12-164-45/+50
|
* Improve compatibility with CockroachDB (#3074)Alexey Shchepin2019-12-112-22/+27
|
* Improve send_message commandEvgeny Khramtsov2019-11-291-14/+20
|
* Make convert_to_scram work with all backendsPaweł Chmielowski2019-11-273-53/+25
|
* Merge branch 'pg_prepared_statements' of ↵Alexey Shchepin2019-11-263-7/+45
|\ | | | | | | | | | | | | | | https://github.com/sabudaye/ejabberd into sabudaye-pg_prepared_statements Conflicts: ejabberd.yml.example src/ejabberd_sql.erl
| * Added option to disable prepared statements (postgresql only)s.budaev2016-10-051-1/+10
| |
* | Fix previous commitEvgeny Khramtsov2019-11-241-1/+3
| |
* | Check also 'access' rule on account removalEvgeny Khramtsov2019-11-241-2/+6
| | | | | | | | | | | | According to the documentation we should not allow account removal when it's forbidden by the rule from 'access' option.
* | Make sure IQ result is correctly routed on account removalEvgeny Khramtsov2019-11-241-3/+15
| | | | | | | | Thanks to Philipp Hörist for spotting this
* | Fix acl reloadingEvgeny Khramtsov2019-11-151-25/+28
| |
* | Preserve order of grouped duplicatesEvgeny Khramtsov2019-11-081-7/+12
| |
* | Also group duplicated list-like options inside host_config/append_host_configEvgeny Khramtsov2019-11-073-39/+35
| |
* | Group all duplicated list-like options into a single optionEvgeny Khramtsov2019-11-071-19/+13
| |
* | Fix loading of third-party modules at startupEvgeny Khramtsov2019-11-072-10/+18
| | | | | | | | Fixes #3019
* | Allow multiple `modules` sectionEvgeny Khramtsov2019-11-061-1/+3
| | | | | | | | Fixes processone/ejabberd-contrib#282
* | Accept a list in c2s_ciphers/s2s_ciphers optionsEvgeny Khramtsov2019-11-051-9/+15
| |
* | Fix unicode string formattingEvgeny Khramtsov2019-11-051-1/+1
| | | | | | | | Fixes #3066
* | Revert "Escape 'family' field in SQL requests"Evgeny Khramtsov2019-10-301-4/+4
| | | | | | | | | | This reverts commit f51ba687e213cdc4136138cba39bb8bc022097ab. Fixes #3072
* | Fix race condition in Redis/SQL supervisors startupEvgeny Khramtsov2019-10-292-2/+8
| |
* | Escape 'family' field in SQL requestsEvgeny Khramtsov2019-10-281-4/+4
| | | | | | | | | | This is needed for compatibility with CockroachDB, because 'FAMILY' is a reserved keyword in this database.
* | Merge pull request #3069 from nosnilmot/jwt-custom-jid-fieldEvgeny Khramtsov2019-10-263-4/+13
|\ \ | | | | | | Add option for JWT field name containing JID
| * | Add option for JWT field name containing JIDStu Tomlinson2019-10-253-4/+13
| | |
* | | Improve jwt_key validatorEvgeny Khramtsov2019-10-252-2/+4
| | |
* | | Don't lowercase first letter in reason stringEvgeny Khramtsov2019-10-251-2/+1
| | |
* | | Handle the case when JWT key file contains JWK setAlexey Shchepin2019-10-252-1/+11
| | |
* | | Introduce 'gc' ejabberdctl commandEvgeny Khramtsov2019-10-251-0/+8
| | | | | | | | | | | | | | | The command forces garbage collection of all running Erlang processes. The return is always success.
* | | Stop SASL application in ejabberd_logger:flush()Evgeny Khramtsov2019-10-252-2/+2
|/ /
* | Avoid calling to logger module on OTP<22Evgeny Khramtsov2019-10-254-3/+13
| |
* | Use lager on OTP<22.0Evgeny Khramtsov2019-10-254-24/+183
| | | | | | | | This also lowers Erlang/OTP minimum version requirement back to 19.3
* | Limit result set of disco#items for mod_pubsubEvgeny Khramtsov2019-10-246-49/+101
| | | | | | | | | | | | | | The size of a list of nodes returned for disco#items request is now controlled by option 'max_nodes_discoitems'. The default value is 100. The name and the default value of the option is chosen to be consistent with mod_muc's 'max_rooms_discoitems' option.
* | Fix logger initialization on OTP<21.3Evgeny Khramtsov2019-10-231-2/+2
| |
* | Report errors in logger initializationEvgeny Khramtsov2019-10-231-13/+26
| |
* | Log path to third-party configuration fileEvgeny Khramtsov2019-10-201-0/+4
| | | | | | | | | | This should prevent confusions like the one described at https://stackoverflow.com/q/58353491/2610053
* | Fix error reporting in configuration related admin commandsEvgeny Khramtsov2019-10-191-3/+3
| |
* | Log supervisor reports in debug loglevelEvgeny Khramtsov2019-10-181-3/+18
| |
* | Replace lager with built-in new logging APIEvgeny Khramtsov2019-10-1812-246/+153
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change requires Erlang/OTP-21.0 or higher. The commit also deprecates the following options: - log_rotate_date - log_rate_limit Furthermore, these options have no effect. The logger now fully relies on log_rotate_size, that cannot be 0 anymore. The loglevel option now accepts levels in literal formats. Those are: none, emergency, alert, critical, error, warning, notice, info, debug. Old integer values (0-5) are still supported and automatically converted into literal format.
* | Flatten strings in ejabberd_xmlrpc error resultsBadlop2019-10-181-0/+4
| |
* | Convert oauth_expire option to accept timeout valuesPaweł Chmielowski2019-10-153-5/+5
| |
* | Fix dialyzer warning in #oauth_ctxAlexey Shchepin2019-10-111-1/+1
| |
* | Implement X-OAUTH2 authentication for mod_mqttEvgeny Khramtsov2019-10-111-18/+40
| | | | | | | | | | | | | | | | | | This will only work for MQTT 5.0 connections. A client MUST set "Authentication Method" property of CONNECT packet to "X-OAUTH2" and MUST set the token in "Authentication Data" property of the same CONNECT packet. The server responses as usual with CONNACK.
* | Verify http host in web admin only if authentication is missing hostPaweł Chmielowski2019-10-091-32/+32
| | | | | | | | | | This should allow access to web admin through ip address or just served from domain not defined in ejabberd hosts
* | Update ejabberd_xmlrpc to handle binaries in restuple result (#3048)Badlop2019-10-031-1/+1
| |
* | Check redirect_uri for OAUTH implicit grantAlexey Shchepin2019-10-033-69/+144
| |
* | Update Guide links in WebAdmin to website, as local file isn't includedBadlop2019-10-021-24/+0
| |
* | Support custom base path in WebAdmin by using relative URLs (#3043)Badlop2019-10-023-73/+93
| |
* | Fix startup of supervisors for listening modulesEvgeny Khramtsov2019-10-011-0/+1
| |