From 158d743bf539399e48c64044639b90e5c1705ac1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Sun, 4 Mar 2018 22:18:58 +0100 Subject: Remove the virtual channel feature altogether --- CHANGELOG.rst | 2 ++ 1 file changed, 2 insertions(+) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index bcddc11..c6052a1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,8 @@ Version 8.0 =========== - Add a complete='true' in MAM’s iq result when appropriate +- The “virtual” channel with an empty name (for example + %irc.freenode.net@biboumi) has been entirely removed. Version 7.2 - 2018-01-24 ======================== -- cgit v1.2.3 From bb476f4a0d60bbc41393a86a370aa94ab405b081 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Mon, 12 Mar 2018 01:00:17 +0100 Subject: Allow to override the addresses used to connect to an IRC network fix #3273 --- CHANGELOG.rst | 3 +++ 1 file changed, 3 insertions(+) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c6052a1..b4f5f3e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,9 @@ Version 8.0 - Add a complete='true' in MAM’s iq result when appropriate - The “virtual” channel with an empty name (for example %irc.freenode.net@biboumi) has been entirely removed. +- Add an “Address” field in the servers’ configure form. This lets + the user customize the address to use when connecting to a server. + See https://lab.louiz.org/louiz/biboumi/issues/3273 for more details. Version 7.2 - 2018-01-24 ======================== -- cgit v1.2.3 From 8f74d4dd400becc92558e35d8b09c940b4f068eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Sun, 18 Mar 2018 19:42:11 +0100 Subject: Update the changelog with this latest feature --- CHANGELOG.rst | 1 + 1 file changed, 1 insertion(+) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b4f5f3e..8f8d057 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,6 +7,7 @@ Version 8.0 - Add an “Address” field in the servers’ configure form. This lets the user customize the address to use when connecting to a server. See https://lab.louiz.org/louiz/biboumi/issues/3273 for more details. +- Messages id are properly reflected to the sender Version 7.2 - 2018-01-24 ======================== -- cgit v1.2.3 From d7427fc9ca4c06fda458e4951559f57163d90b94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Mon, 19 Mar 2018 00:16:16 +0100 Subject: Re-connect to postgresql when the connection is lost fix #3336 --- CHANGELOG.rst | 3 +++ 1 file changed, 3 insertions(+) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8f8d057..ee31f7d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -8,6 +8,9 @@ Version 8.0 the user customize the address to use when connecting to a server. See https://lab.louiz.org/louiz/biboumi/issues/3273 for more details. - Messages id are properly reflected to the sender +- We now properly deal with a PostgreSQL server restart: whenever the + connection is lost with the server, we try to reconnect and re-execute the + query once. Version 7.2 - 2018-01-24 ======================== -- cgit v1.2.3 From 619c991a691a455efee2baa4e1fe96e64d27ff64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Mon, 19 Mar 2018 20:08:35 +0100 Subject: Add a nick field in the IRC server configuration form fix #3317 --- CHANGELOG.rst | 2 ++ 1 file changed, 2 insertions(+) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ee31f7d..bf25e52 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -11,6 +11,8 @@ Version 8.0 - We now properly deal with a PostgreSQL server restart: whenever the connection is lost with the server, we try to reconnect and re-execute the query once. +- A Nick field has been added in the IRC server configuration form, to let + the user force a nickname whenever a channel on the server is joined. Version 7.2 - 2018-01-24 ======================== -- cgit v1.2.3 From 857c7d3972a03cbeebf730d99b924d3710dee6a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Tue, 10 Apr 2018 23:33:59 +0200 Subject: Use a different Date data type MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- CHANGELOG.rst | 2 ++ 1 file changed, 2 insertions(+) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index bf25e52..7ccbc88 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,8 @@ Version 8.0 =========== +- Changed the data type used to store the dates in the database. This + requires an automatic migration on the first start. - Add a complete='true' in MAM’s iq result when appropriate - The “virtual” channel with an empty name (for example %irc.freenode.net@biboumi) has been entirely removed. -- cgit v1.2.3 From b70136b96e579e8d38a30a298f885899cb80514c Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sat, 31 Mar 2018 16:57:47 +0200 Subject: Add a note about multiple admins in the ChangeLog --- CHANGELOG.rst | 1 + 1 file changed, 1 insertion(+) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7ccbc88..dfb909a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -15,6 +15,7 @@ Version 8.0 query once. - A Nick field has been added in the IRC server configuration form, to let the user force a nickname whenever a channel on the server is joined. +- Multiple admins can now be listed in the admin field, separated with a colon. Version 7.2 - 2018-01-24 ======================== -- cgit v1.2.3 From 61de6b1dac4ef29627f3bdb9ce11b6c0d06f4a24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Tue, 24 Apr 2018 19:19:06 +0200 Subject: Revert "Use a different Date data type" This reverts commit 857c7d3972a03cbeebf730d99b924d3710dee6a0. --- CHANGELOG.rst | 2 -- 1 file changed, 2 deletions(-) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index dfb909a..432248b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,8 +1,6 @@ Version 8.0 =========== -- Changed the data type used to store the dates in the database. This - requires an automatic migration on the first start. - Add a complete='true' in MAM’s iq result when appropriate - The “virtual” channel with an empty name (for example %irc.freenode.net@biboumi) has been entirely removed. -- cgit v1.2.3 From 1236b8a03bee403fcaa59d882d8e7fb9058b2280 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Tue, 24 Apr 2018 20:24:58 +0200 Subject: Only use the ID to order archives fix #3343 --- CHANGELOG.rst | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 432248b..889321c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,11 @@ Version 8.0 =========== - Add a complete='true' in MAM’s iq result when appropriate +- The archive ordering now only relies on the value of the ID, not the + date. This means that if you manually import archives in your database (or + mess with it somehow), biboumi will not work properly anymore, if you + don’t make sure the ID of everything in the muclogline table is + consistent. - The “virtual” channel with an empty name (for example %irc.freenode.net@biboumi) has been entirely removed. - Add an “Address” field in the servers’ configure form. This lets -- cgit v1.2.3 From d887baa064318fdb350fb6c3f7b8e2104a644fcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Sat, 28 Apr 2018 13:55:35 +0200 Subject: Fix a crash when botan policy does not allow any available ciphersuite --- CHANGELOG.rst | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8fdafe9..338b6ac 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,9 @@ +Version 7.3 +=========== + +- Fix an uncaught exception with botan, when policy does not allow any + available ciphersuite. + Version 7.2 - 2018-01-24 ======================== -- cgit v1.2.3 From 7592d966e684410f603942e34413375c8d98ac9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Sun, 29 Apr 2018 01:40:46 +0200 Subject: Missing fields in a data-form response are now interpreted as an empty value --- CHANGELOG.rst | 3 +++ 1 file changed, 3 insertions(+) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4966a3c..f24faf4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -19,6 +19,9 @@ Version 8.0 - A Nick field has been added in the IRC server configuration form, to let the user force a nickname whenever a channel on the server is joined. - Multiple admins can now be listed in the admin field, separated with a colon. +- Missing fields in a data-form response are now properly interpreted as + an empty value, and not the default value. Gajim users were not able to + empty a field of type text-multi because of this issue. Version 7.3 =========== -- cgit v1.2.3 From 0887be6eef24929fd594239e9569fc5cee54aba0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Sun, 29 Apr 2018 19:45:43 +0200 Subject: Next version will just be 8.0, not 7.3 --- CHANGELOG.rst | 4 ---- 1 file changed, 4 deletions(-) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f24faf4..09e5636 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -22,10 +22,6 @@ Version 8.0 - Missing fields in a data-form response are now properly interpreted as an empty value, and not the default value. Gajim users were not able to empty a field of type text-multi because of this issue. - -Version 7.3 -=========== - - Fix an uncaught exception with botan, when policy does not allow any available ciphersuite. -- cgit v1.2.3 From 3e29dd39a2d0e6aa95bf92e163fefc7739ba6393 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Wed, 2 May 2018 19:43:14 +0200 Subject: Add a missing changelog entry --- CHANGELOG.rst | 3 +++ 1 file changed, 3 insertions(+) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 09e5636..a70da9c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -24,6 +24,9 @@ Version 8.0 empty a field of type text-multi because of this issue. - Fix an uncaught exception with botan, when policy does not allow any available ciphersuite. +- When the connection gets desynchronized and tries to re-join while + biboumi thinks it has never left, biboumi now sends the whole standard + join sequence (history, user-list, etc). Version 7.2 - 2018-01-24 ======================== -- cgit v1.2.3 From 063cfcfb72fd502a2a41d70d974d91cf0264ad0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Wed, 2 May 2018 19:48:01 +0200 Subject: Add a changelog entry for gcc 5.0 --- CHANGELOG.rst | 1 + 1 file changed, 1 insertion(+) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a70da9c..d9416b0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,7 @@ Version 8.0 =========== +- GCC 4.9 or lower are not supported anymore. The minimal version is 5.0 - Add a complete='true' in MAM’s iq result when appropriate - The archive ordering now only relies on the value of the ID, not the date. This means that if you manually import archives in your database (or -- cgit v1.2.3 From 08fabd0a10f01dab3971398768a32e6fef177434 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Wed, 2 May 2018 19:44:59 +0200 Subject: Release version 8.0 --- CHANGELOG.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d9416b0..194c75c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,5 +1,5 @@ -Version 8.0 -=========== +Version 8.0 - 2018-05-02 +======================== - GCC 4.9 or lower are not supported anymore. The minimal version is 5.0 - Add a complete='true' in MAM’s iq result when appropriate -- cgit v1.2.3 From edcd80cca12b45bd79a631f6c421a6cfce9c17f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Wed, 2 May 2018 20:22:48 +0200 Subject: Start version 9.0 --- CHANGELOG.rst | 3 +++ 1 file changed, 3 insertions(+) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 194c75c..63b594f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,6 @@ +Version 9.0 +=========== + Version 8.0 - 2018-05-02 ======================== -- cgit v1.2.3 From ed36c26598892c60c6d2c9a096f536cc1f4705cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Sun, 6 May 2018 12:11:51 +0200 Subject: Also handle SIGHUP to reload the configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Because that’s what is typically done on other deamons, and we don’t want to suprise users. --- CHANGELOG.rst | 2 ++ 1 file changed, 2 insertions(+) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 63b594f..5f65bfc 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,8 @@ Version 9.0 =========== +- SIGHUP is now caught and reloads the configuration like SIGUSR1 and 2. + Version 8.0 - 2018-05-02 ======================== -- cgit v1.2.3 From 1c4620d992d64e585c028659b0001b5f8ba94235 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Tue, 15 May 2018 19:50:41 +0200 Subject: Release version 8.1 --- CHANGELOG.rst | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 194c75c..1385f40 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,8 @@ +Version 8.1 - 2018-05-14 +======================== + +- Fix a crash on a raw NAMES command + Version 8.0 - 2018-05-02 ======================== -- cgit v1.2.3 From d3eda68761d6b5f4394c41248ae95915d6e90ae2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Wed, 23 May 2018 01:12:31 +0200 Subject: Release version 8.2 --- CHANGELOG.rst | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1385f40..cd7c4a1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,9 @@ +Version 8.2 - 2018-05-23 +======================== + +- The users are not able to bypass the fixed mode by just configuring a + different Address for the IRC server anymore. + Version 8.1 - 2018-05-14 ======================== -- cgit v1.2.3 From 760076a33aa50c700bc0d825e5cb9d0fa9d5bd17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Fri, 1 Jun 2018 12:29:04 +0200 Subject: Make the global ad-hoc configure command available in fixed mode fix #3360 --- CHANGELOG.rst | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cd7c4a1..379841c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,9 @@ +Version 8.3 +=========== + +- The global ad-hoc configure command is now available on biboumi’s JID in + fixed_irc_server mode. + Version 8.2 - 2018-05-23 ======================== -- cgit v1.2.3 From ac8cd7082b070eb74ccd3d5b669c419941fc29ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Fri, 1 Jun 2018 12:43:34 +0200 Subject: Release version 8.3 --- CHANGELOG.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 379841c..45c13bd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,5 +1,5 @@ -Version 8.3 -=========== +Version 8.3 - 2018-06-01 +======================== - The global ad-hoc configure command is now available on biboumi’s JID in fixed_irc_server mode. -- cgit v1.2.3 From 21a79b7bad51e755cee2890aa6d0bec5dd45f901 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Tue, 19 Jun 2018 21:31:11 +0200 Subject: Reject messages from unjoined resources, with an error fix #3346 --- CHANGELOG.rst | 3 +++ 1 file changed, 3 insertions(+) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 942465e..8d00fb6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,9 @@ Version 9.0 =========== - SIGHUP is now caught and reloads the configuration like SIGUSR1 and 2. +- Messages from unjoined resources are now rejected instead of being accepted. + This helps clients understand that they are not in the room (because of + some connection issue for example). Version 8.3 - 2018-06-01 ======================== -- cgit v1.2.3 From 09b10cc80146c1ac2a0d5c53c6c8469b934189f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Mon, 25 Jun 2018 22:54:32 +0200 Subject: Throttle all commands sent to IRC servers fix #3354 --- CHANGELOG.rst | 3 +++ 1 file changed, 3 insertions(+) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8d00fb6..d668d57 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,9 @@ Version 9.0 - Messages from unjoined resources are now rejected instead of being accepted. This helps clients understand that they are not in the room (because of some connection issue for example). +- All commands sent to IRC servers are now throttled to avoid being + disconnected for excess flood. The limit value can be customized using the + ad-hoc configuration form on a server JID. Version 8.3 - 2018-06-01 ======================== -- cgit v1.2.3 From a43fb352c85e1a0b428e6fba4c01093c8cd13a98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Sun, 22 Jul 2018 14:51:24 +0200 Subject: Document verify_certificate_policy --- CHANGELOG.rst | 2 ++ 1 file changed, 2 insertions(+) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d668d57..0a1df61 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -8,6 +8,8 @@ Version 9.0 - All commands sent to IRC servers are now throttled to avoid being disconnected for excess flood. The limit value can be customized using the ad-hoc configuration form on a server JID. +- Add a verify_certificate policy option that lets the admin disable + certificate validation per-domain. Version 8.3 - 2018-06-01 ======================== -- cgit v1.2.3 From 7a4cea426d0a07d577753ee008416e19eca6260d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Tue, 24 Jul 2018 23:14:35 +0200 Subject: Reflect messages to XMPP only when they are actually sent --- CHANGELOG.rst | 2 ++ 1 file changed, 2 insertions(+) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0a1df61..8d5b106 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -10,6 +10,8 @@ Version 9.0 ad-hoc configuration form on a server JID. - Add a verify_certificate policy option that lets the admin disable certificate validation per-domain. +- Messages reflections are now properly cut if the body was cut before + being to sent to IRC Version 8.3 - 2018-06-01 ======================== -- cgit v1.2.3 From 64a393ebadf0723e7bf4f4a9d3323f6c94ae4ffa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Thu, 23 Aug 2018 11:16:22 +0200 Subject: Create subsections in the CHANGELOG fix #3374 --- CHANGELOG.rst | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'CHANGELOG.rst') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8d5b106..f6b0c01 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,17 +1,22 @@ Version 9.0 =========== -- SIGHUP is now caught and reloads the configuration like SIGUSR1 and 2. +For users +--------- +- Messages reflections are now properly cut if the body was cut before + being to sent to IRC - Messages from unjoined resources are now rejected instead of being accepted. This helps clients understand that they are not in the room (because of some connection issue for example). - All commands sent to IRC servers are now throttled to avoid being disconnected for excess flood. The limit value can be customized using the ad-hoc configuration form on a server JID. + +For admins +---------- +- SIGHUP is now caught and reloads the configuration like SIGUSR1 and 2. - Add a verify_certificate policy option that lets the admin disable certificate validation per-domain. -- Messages reflections are now properly cut if the body was cut before - being to sent to IRC Version 8.3 - 2018-06-01 ======================== -- cgit v1.2.3