Hi. Don't know how many of you use rspamd and use it's bundled tools, like rspamc, but I write this just to be found if needed by anyone, and also maybe DA developers will consider implement it in a future release.
I used it from the time it was just a beta in DA and I'm quite happy with it. Also, I used @zEitEr 's plugin for the webui... It is doing a great job and it's highly configurable.
Some versions ago, DA added the webui proxy (https://www.directadmin.com/features.php?id=2757) which it's awesome to have, but the file worker-controller.inc added to /etc/rspamd/local.d is breaking the rspamc tool (https://rspamd.com/doc/quickstart.html#using-rspamc-console-routine), giving a connection error. The tool use network connection to localhost on port 11334.
The solution to solve the problem is to have this lines in the worker-controller.inc file.
My worry now is that an update could rewrite it
Best regards,
Dan
I used it from the time it was just a beta in DA and I'm quite happy with it. Also, I used @zEitEr 's plugin for the webui... It is doing a great job and it's highly configurable.
Some versions ago, DA added the webui proxy (https://www.directadmin.com/features.php?id=2757) which it's awesome to have, but the file worker-controller.inc added to /etc/rspamd/local.d is breaking the rspamc tool (https://rspamd.com/doc/quickstart.html#using-rspamc-console-routine), giving a connection error. The tool use network connection to localhost on port 11334.
The solution to solve the problem is to have this lines in the worker-controller.inc file.
Code:
bind_socket = "/var/run/rspamd/rspamd_controller.sock mode=0600 owner=_rspamd";
bind_socket = "localhost:11334";
My worry now is that an update could rewrite it

Best regards,
Dan