KindOne

Results 9 comments of KindOne

Editing the ```use_ssl``` line did not work. I had to edit both the ```use_ssl``` and ```ssl_verify``` lines. ``` use_ssl = "no"; ssl_verify = "no"; ``` into ``` use_tls = "no";...

I finally did a git bisect, commit 5cb50eccd1ad8f8750415511313bdeb2723ab5b3 created this bug. ``` $ git bisect bad 5cb50eccd1ad8f8750415511313bdeb2723ab5b3 is the first bad commit commit 5cb50eccd1ad8f8750415511313bdeb2723ab5b3 Author: Alexey Sokolov Date: Wed Feb...

If I recall correctly its some bug in inspircd if the sasl module is reloaded or disabled/enable, or something else. I've had this issue for years, but only on networks...

Part of the request kinda sounds like #325

Something like this? ```diff --- a/libathemecore/services.c +++ b/libathemecore/services.c @@ -668,7 +668,7 @@ myuser_login(struct service *svs, struct user *u, struct myuser *mu, bool sendac if (is_soper(mu)) slog(LG_INFO, "SOPER: \2%s\2 as \2%s\2...

You need to ```setsource priv```. ``` [21:42:54] list [21:42:54] You have no entries. [21:42:56] add * *highlight *%nick%* [21:42:59] list [21:43:00] +----+----------+------------+----------+---------+-----+--------------------+---------------------+ [21:43:00] | Id | HostMask | Target |...

I made a mistake in the example. The ```priv``` is for private messages/ctcps. Enter this, it should fix the issue.``` setsources 1 #*``` that will make the module work on...

Here is a test for when it gets fixed. ``` $ test/integration/inttest --gtest_filter=ZNCTest.ListsocketsModule ``` ``` // https://github.com/znc/znc/issues/1910 TEST_F(ZNCTest, ListsocketsModule) { auto znc = Run(); auto ircd = ConnectIRCd(); auto client...

Add a TODO and deal with it later. ``` // TODO: Fix before Year 2100 - https://xkcd.com/1782/ // https://github.com/znc/znc/issues/1910 TEST_F(ZNCTest, ListsocketsModule) { ... ```