Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-08-23 | Fix a bunch of int to unsigned int conversion warnings | louiz’ | |
2018-08-23 | MaxHistoryLength now has some sensible default value if the user set a ↵ | louiz’ | |
negative one | |||
2018-08-23 | Add two missing ref | louiz’ | |
2018-08-23 | Add a missing <string> include | louiz’ | |
2018-08-07 | Split the main() into smaller functions | louiz’ | |
That’s not really enough, but better | |||
2018-08-04 | Remove a useless fill_duration member | louiz’ | |
2018-08-04 | Fix the real_type of ThrottleLimit | louiz’ | |
2018-08-04 | Remove a bunch of useless empty lines | louiz’ | |
2018-07-27 | Rename SetDesc to set_desc, and only define it if USE_DATABASEsrcip | louiz’ | |
2018-07-27 | Make SetDesc static | Jonas Wielicki | |
2018-07-27 | Fix incorrect setting of field description in Ad-Hoc config forms | Jonas Wielicki | |
The description has to be a child element of the field, not an attribute. | |||
2018-07-24 | Reflect messages to XMPP only when they are actually sent | louiz’ | |
2018-07-22 | Remove a useless getter | louiz’ | |
2018-07-22 | add 'verify_certificate' as possible configuration token for policy files | Romain DEP | |
This lets the user configure a per-domain certificate validation policy | |||
2018-07-14 | Fix a compile error with GCC 5.x | louiz’ | |
fix #3366 | |||
2018-06-26 | Default the throttle limit to 10 if not built with database support | louiz’ | |
2018-06-25 | Fix a warning (unused variable) in some build config | louiz’ | |
2018-06-25 | Trivial syntax improvements | louiz’ | |
2018-06-25 | Throttle all commands sent to IRC servers | louiz’ | |
fix #3354 | |||
2018-06-22 | Remove an outdated TODO comment | louiz’ | |
2018-06-22 | Archive the Mode messages, except if they are received for an unjoined chan | louiz’ | |
fix #3362 | |||
2018-06-19 | Reject messages from unjoined resources, with an error | louiz’ | |
fix #3346 | |||
2018-06-17 | Channels’ disco#info includes the number of participants | louiz’ | |
fix #3311 | |||
2018-06-01 | Merge branch 'v8' | louiz’ | |
2018-06-01 | Make the global ad-hoc configure command available in fixed mode | louiz’ | |
fix #3360 | |||
2018-06-01 | Make the global ad-hoc configure command available in fixed mode | louiz’ | |
2018-05-23 | Merge branch 'v8' | louiz’ | |
2018-05-23 | Do not use (or present to the user) the Address field in fixed mode | louiz’ | |
fix #3359 | |||
2018-05-15 | Merge branch 'v8' | louiz’ | |
2018-05-15 | Handle the NAMES message for an already-joined or non-existing channel | louiz’ | |
If a user manually does a NAMES query, the result were interpreted as a user list, which is wrong. And with the special * argument, this would even cause a crash. Fix #3357 | |||
2018-05-15 | Improve the forward_server_message to concatenate everything | louiz’ | |
2018-05-14 | Empty the <command/> nodes before reusing them in our responses | louiz’ | |
fix #3356 | |||
2018-05-06 | Also handle SIGHUP to reload the configuration | louiz’ | |
Because that’s what is typically done on other deamons, and we don’t want to suprise users. | |||
2018-04-29 | mam: Send “fin complete” only when appropriate | louiz’ | |
Also simplify how we did the whole “limit + 1” And fix one bad interpretation of the XEP for the case where the query has no after or before restriction. fix #3349 | |||
2018-04-29 | Missing fields in a data-form response are now interpreted as an empty value | louiz’ | |
2018-04-28 | Merge branch 'v7' | louiz’ | |
2018-04-28 | Fix a crash when botan policy does not allow any available ciphersuitev7 | louiz’ | |
2018-04-24 | Only use the ID to order archives | louiz’ | |
fix #3343 | |||
2018-04-24 | Revert "Use a different Date data type" | louiz’ | |
This reverts commit 857c7d3972a03cbeebf730d99b924d3710dee6a0. | |||
2018-04-24 | Revert "Use the Date to find a next page in RSM, not the id" | louiz’ | |
This reverts commit 5ef7ba08028065b03d51d1dc70bb35aeb41ae19d. | |||
2018-04-16 | Use Config::is_in_list() to allow for multiple admins | Emmanuel Gil Peyrot | |
2018-04-16 | Add a Config::is_in_list() method | Emmanuel Gil Peyrot | |
2018-04-16 | Use jid.bare() instead of manual concatenation | Emmanuel Gil Peyrot | |
2018-04-14 | Use the Date to find a next page in RSM, not the id | louiz’ | |
This way, it works, whatever the order of insertion in the database was. fix #3343 | |||
2018-04-13 | one log_debug -> log_error, also some trivial indent | louiz’ | |
2018-04-13 | Remove two unused (julianday) functions | louiz’ | |
2018-04-13 | Refactor that fixes a compilation issue in Release mode | louiz’ | |
Some template specialization were not found, because they were not declared at the point they were used. We moved things around, things are less inter-dependant, and also now it works. | |||
2018-04-11 | Fix a build warning when compiling without postgres or sqlite | louiz’ | |
2018-04-11 | Use a different Date data type | louiz’ | |
PLEASE backup your database before testing this commit, and report any migration issue. In postgresql, we use timestamp with timezone. In sqlite3 we use REAL (the date is expressed as julianday) This requires a migration of the muclogline_ table: In postgresql it’s pretty simple, we convert all the integer into timestamps With sqlite3, we actually rename the table, create the new one with the correct type, then copy everything to the new table, with a conversion function for the Date_ column, and then we delete the old table. fix #3343 | |||
2018-03-31 | Send the stanza-id for messages received by other users | louiz’ | |
fix #3347 |