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
AgeCommit message (Collapse)Author
2020-04-17Log messages generated by msgmerge and display unexpected onesBadlop
2020-04-17Fix doc content in mod_admin_extra so it can be extracted by make translationsBadlop
2020-04-17Check if mod_muc_log is enabled before setting logging option (#3215)Badlop
2020-04-17When rescode is some unexpected, probably error message, print itBadlop
2020-04-17Restart offline pop_messages when there is mismatch between select and deletePaweł Chmielowski
When another connection is inserting something to spool at this same time as we do pop_messages, it's possible that insert will happen between we fetch messages and delete them, so we effectively will delete it without delivering it to client. This change catch this situation and restart transaction, so we should always have consistent results.
2020-04-16Update mysql driver to get rid of warningPaweł Chmielowski
2020-04-16Update documentation of mod_shared_roster (#3214)Badlop
2020-04-16Make session iq response have from be set to server jidPaweł Chmielowski
It looks like old version of Smack don't accept request that are have from sent to sender jid, but are only working when jid is set to server address. This is also how it looks in old xmpp rfc examples.
2020-04-16Resending unacked stanzas should send even archived msgs if mod_offline is ↵Paweł Chmielowski
enabled Messages that are received when no c2s is active will be stored in offline, even when mam archived them, so i don't think we should be doing something different in this case.
2020-04-14Fix unused variables from previous commitBadlop
2020-04-14Update links to the ejabberd Docs page in WebAdminBadlop
2020-04-14Rename opts->name to label, to avoid confusion with the group name (#3214)Badlop
Also updated WebAdmin to show more meaningful explanations Also fixed a bug that break support for group@host in Displayed
2020-04-10Merge pull request #3132 from area-42/publisher_mssql_text_to_varcharJérôme Sautret
change PubSub publisher from text to varchar for mssql
2020-04-09Minor fixes in docBadlop
2020-04-08Copy more option explanations from ejabberd Docs siteBadlop
2020-04-08Add ejabberd version number to man pagesBadlop
2020-04-08Indicate which ejabberd version is used to produce the pageBadlop
2020-04-08Don't make commands subsections, so Docs TOC plage is cleanerBadlop
2020-04-08Fix set_loglevel example argument documentationBadlop
2020-04-08Improve formatting of mod_announce docBadlop
2020-04-07Make resumed sessions try to deliver possibly queued messages to new sessionPaweł Chmielowski
Between receiving resume request and being closed by new session, it's possible (even if not very likely) that new messages would arrive to process that is resumed. In that case try to reroute messages that were received after we sent resume reply to new process.
2020-04-07Log errors that happen when retrieving http headers in ejabberd_httpPaweł Chmielowski
It seems that ssl errors can be generated here, so lets have abily to show them instead of swallowing them silently.
2020-04-05mod_carboncopy: Bump supported XEP revisionHolger Weiss
Since mod_carboncopy supports "urn:xmpp:carbons:rules:0", it implements version 0.13.x of XEP-0280.
2020-04-03Remove bash-izm from ejabberdctl.template introduced recentlyPaweł Chmielowski
2020-04-02Limit number of atoms used by ejabberdctl ( #2977)Jerome Sautret
2020-04-02Document mod_shared_roster_ldap optionsBadlop
2020-04-02Add ejabberd_auth_http auth_opts brief descriptionBadlop
2020-04-02Document sql_prepared_statementsBadlop
2020-04-02Quick document with forward link api_permissionsBadlop
2020-04-02Document some global optionsBadlop
2020-04-02Add three missing mod_bosh optionsBadlop
2020-04-02add missing mod_mam optionsBadlop
2020-04-02Fix mod_pubsub indentationBadlop
2020-04-02Add mod_pubsub configuration documentationBadlop
2020-04-01Don't replace %25 in webadmin test on older erlangsPaweł Chmielowski
It seems that is a bug in R21+ httpc, so let's try to keep that test working with older versions
2020-04-01Make stop_ejabberd test also work without receiving </stream:stream>Paweł Chmielowski
2020-04-01Fix potential message loss in terminating c2s sessionsPaweł Chmielowski
Calling sync version of xmpp_stream_in/out:stop could lead to messages never being processed by c2s process if they were queued in p1_server. This could be reproduced by when having messages in offline storage, starting sessions, enabling stream_mgmt, sending initial presence, and then immediately </stream:stream>, messages that mod_offline would send process would not be bounced back by stream_mgmt.
2020-04-01Use different username than other tests, but still include the test charsBadlop
2020-04-01Better error reporting in pubsub testsPaweł Chmielowski
2020-04-01Make webadmin tests use different user for changepassword/unregisterPaweł Chmielowski
Using username that is shared with other tests causes login problems in other places.
2020-03-31Add more webadmin testsBadlop
2020-03-30sql_type should be taken for LServer, not LHost (#3202)Boris Chernov
sql_type option should be retrieved for the main domain, not the MUC subdomain
2020-03-26Make webadmin redirect to page that end with /Paweł Chmielowski
2020-03-26Revert "Pass base path instead of level to support URL missing slash (#3177)"Paweł Chmielowski
This reverts commit e9d1201ea813d19c6c7403c7aa883e314991d664.
2020-03-25Do not change to attribute of sent messages from bare to full jidPaweł Chmielowski
This is not correct per xmpp spec
2020-03-25Increase version to 20.3.020.03Jerome Sautret
2020-03-24Fix unsubscribe command result, handle_sync_event result, and dialyzerBadlop
How to reproduce the problems fixed by this commit: Create temporary room, other account subscribes, and owner leaves Unsubscribe that account with the command: ejabberdctl unsubscribe_room ...
2020-03-23Update changelogPaweł Chmielowski
2020-03-23Update mix.lockPaweł Chmielowski
2020-03-23Make bounce_message_queue wait for 100ms for incoming messagesPaweł Chmielowski
There is possibilty that between c2s process unregistering itself from sm and terminating, some other process could try to send something to c2s, which could result in messages to triggering mam/offline hooks, and causing them not to be stored in any way.