aboutsummaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix EDoc errors.Badlop2009-08-1714-73/+81
| | | | SVN Revision: 2494
* Update German translation (thanks to Nikolaus Polak)Badlop2009-08-171-153/+135
| | | | SVN Revision: 2493
* Display room service messages in distintive blue colour.Badlop2009-08-151-3/+7
| | | | SVN Revision: 2491
* Update Ingoing s2s connections inner state to hold domain name (thanks to ↵Badlop2009-08-151-1/+10
| | | | | | Juan Pablo Carlino)(EJAB-972) SVN Revision: 2489
* Don't allow room config to enable password protection with empty password ↵Badlop2009-08-151-1/+41
| | | | | | (EJAB-1011) SVN Revision: 2485
* If room config violates service policy, return not-acceptable instead of ↵Badlop2009-08-151-1/+1
| | | | | | bad-request. SVN Revision: 2484
* Update Ukraininan translation (thanks to Ruslan Rakhmanin)Badlop2009-08-151-107/+71
| | | | SVN Revision: 2483
* fixes disco#infoEvgeniy Khramtsov2009-08-151-1/+1
| | | | SVN Revision: 2482
* Update Galician translation (thanks to Carlos E. Lopez)Badlop2009-08-141-41/+37
| | | | SVN Revision: 2481
* Update Slovak translation (thanks to Marek Bečka)Badlop2009-08-141-84/+60
| | | | SVN Revision: 2480
* Updated Portuguese-Brazil translation (thanks to Otávio Fernandes)Badlop2009-08-131-87/+52
| | | | SVN Revision: 2479
* Update Chinese translation (thanks to Shelley Shyan and Zhan Caibao)Badlop2009-08-131-147/+122
| | | | SVN Revision: 2478
* removed unnecessary gen_server callEvgeniy Khramtsov2009-08-131-12/+6
| | | | SVN Revision: 2476
* Updated Turkish translation (thanks to Doruk Fisek)Badlop2009-08-121-90/+59
| | | | SVN Revision: 2475
* fixes fuzzy strings in Russian translationEvgeniy Khramtsov2009-08-121-28/+18
| | | | SVN Revision: 2474
* Update French translation (thanks to Nicolas Vérité)Badlop2009-08-121-42/+40
| | | | SVN Revision: 2471
* Fix port in IRC register form.Badlop2009-08-121-6/+8
| | | | SVN Revision: 2470
* updated Russian translationEvgeniy Khramtsov2009-08-121-37/+21
| | | | SVN Revision: 2469
* Update Spanish translationBadlop2009-08-122-67/+64
| | | | SVN Revision: 2468
* Update translation files again.Badlop2009-08-1223-115/+23
| | | | SVN Revision: 2467
* Fix english stringsBadlop2009-08-121-2/+2
| | | | SVN Revision: 2466
* Update translation filesBadlop2009-08-1224-7782/+10219
| | | | SVN Revision: 2465
* Add support in WebAdmin for the new listener network protocolBadlop2009-08-111-14/+33
| | | | SVN Revision: 2462
* Add stun directory to compilation processBadlop2009-08-113-3169/+2038
| | | | SVN Revision: 2461
* More documentation for STUN server.Badlop2009-08-111-0/+5
| | | | | | | | | | * Add stun listener to example config file, disabled. * Improve enumeration of listeners options * Mention STUN in release notes * Mention new STUN listener in release notes * Mention new network protocol syntax in release notes SVN Revision: 2454
* it is now possible to start TCP/UDP on the same portEvgeniy Khramtsov2009-08-112-29/+62
| | | | SVN Revision: 2452
* do not forget to close TLS socketEvgeniy Khramtsov2009-08-101-6/+5
| | | | SVN Revision: 2451
* RFC5389 (STUN) support: stand-alone server, binding usage onlyEvgeniy Khramtsov2009-08-097-13/+814
| | | | SVN Revision: 2450
* Add ejabberd command to get the current loglevel (EJAB-1004)Badlop2009-08-071-0/+8
| | | | SVN Revision: 2447
* Added port and password connection parameters (thanks to Anton ↵Badlop2009-08-072-72/+154
| | | | | | Podavalov)(EJAB-339) SVN Revision: 2446
* do not create hometree node by defaultChristophe Romain2009-08-072-4/+4
| | | | SVN Revision: 2444
* add new pubsub modules in win32 MakefileChristophe Romain2009-08-071-9/+45
| | | | SVN Revision: 2443
* mod_pubsub_odbc.erl is autogenerated by applying a patch to mod_pubsub.erlBadlop2009-08-072-3/+6
| | | | SVN Revision: 2442
* Add support for XEP-227 import/export, requires exmpp to use it (EJAB-993)Badlop2009-08-073-10/+766
| | | | SVN Revision: 2439
* typo fix on subscriptionsChristophe Romain2009-08-072-2/+2
| | | | SVN Revision: 2438
* initial merge of pubsub odbc, compilation pass okChristophe Romain2009-08-0714-57/+6941
| | | | SVN Revision: 2437
* Move functions from roster_versioning to mod_roster (EJAB-964)Badlop2009-08-064-96/+105
| | | | SVN Revision: 2429
* Support for roster versioning (EJAB-964)Pablo Polvorin2009-08-0610-32/+324
| | | | | | | | | | | | | | | | | | | | | Introduces two options for mod_roster and mod_roster_odbc: - {versioning, true | false} Enable or disable roster versioning on ejabberd. - {store_current_id, true | false} If true, the current roster version is stored on DB (internal or odbc). Otherwise it is calculated on the fly each time. Performance: Setting store_current_id to true should help in reducing the load for both ejabberd and the DB. Details: If store_current_id is false, the roster version is a hash of the entire roster. If store_current_id is true, the roster version is a hash, but of the current time (this has to do with transactional semantics; we need to perform both the roster update and the version update on the same transaction, but we don't have the entire roster when we are changing a single item on DB. Loading it there requires significant changes to be introduced, so I opted for this simpler approach). In either case, there is no difference for the clients, the roster version ID is opaque. IMPORTANT: mod_shared_roster is not compatible with the option 'store_current_id'. Shared roster and roster versioning can be both enabled, but store_current_id MUST be set to false. SVN Revision: 2428
* * src/odbc/ejabberd_odbc_sup.erl: make requests return a timeout ifJérôme Sautret2009-08-062-18/+43
| | | | | | | connections to the database cannot be established (EJABS-990). * src/odbc/ejabberd_odbc.erl: cosmetic changes. SVN Revision: 2427
* * src/ejabberd_loglevel.erl: add get/0 API function that returns current log ↵Jérôme Sautret2009-08-061-3/+14
| | | | | | level (EJAB-1004). SVN Revision: 2426
* * src/odbc/ejabberd_odbc.erl: fix keepalive query, broken by r2092.Jérôme Sautret2009-08-061-1/+2
| | | | SVN Revision: 2425
* Document the new option s2s_dns_options, expressed in seconds (EJAB-994)Badlop2009-08-031-2/+2
| | | | SVN Revision: 2417
* fix is_last_item_cache_enabled issue with PEP, and fix indentationChristophe Romain2009-07-311-125/+120
| | | | SVN Revision: 2416
* fixes incorrect substitution of an LDAP patternEvgeniy Khramtsov2009-07-311-2/+4
| | | | SVN Revision: 2414
* deny node creation if node owner is not owner of parent node as wellChristophe Romain2009-07-301-1/+1
| | | | SVN Revision: 2413
* typo fixChristophe Romain2009-07-301-3/+4
| | | | SVN Revision: 2412
* do not store item when persist_item false but send_last_published_item and ↵Christophe Romain2009-07-301-14/+21
| | | | | | last_item_cache enabled SVN Revision: 2411
* fix configuration result (EJAB-995)Christophe Romain2009-07-302-9/+8
| | | | SVN Revision: 2408
* do not crash on unmatched requestEvgeniy Khramtsov2009-07-301-1/+4
| | | | SVN Revision: 2406
* EJAB-994: Implements DNS timeouts and retries.Geoff Cant2009-07-302-5/+31
| | | | SVN Revision: 2404