Search found 75 matches

by Valware
Fri Jan 16, 2026 6:23 pm
Forum: UnrealIRCd Webpanel and JSON-RPC
Topic: UnrealIRCd RPC → SQL Live (beta)
Replies: 3
Views: 1656

Re: UnrealRPC Tracker (beta)

Hey armyn,

Hope you're doing well. Nice project! I've starred it! Thanks for always thinking of UnrealIRCd in your projects, too.

Something I'm working on that you may be interested in... The ability to write server-side scripts in JavaScript! Here's a working example which implements an example ...
by Valware
Mon Dec 29, 2025 5:55 pm
Forum: Generic support
Topic: Handling multi-session IRC connections and reducing join flood on connect
Replies: 6
Views: 957

Re: Handling multi-session IRC connections and reducing join flood on connect

Thanks for providing a lot of information! From what you've told me, I think the slowness would be from the middleware you specified. This middleware should be in charge of properly tracking state for each user and forwarding them correctly to each user's session, instead of requesting the ...
by Valware
Sun Dec 28, 2025 7:14 pm
Forum: Generic support
Topic: Handling multi-session IRC connections and reducing join flood on connect
Replies: 6
Views: 957

Re: Handling multi-session IRC connections and reducing join flood on connect

users on my chat have been able to connect using the same IRC account (same nickname) with up to three simultaneous sessions,
This doesn't sound like UnrealIRCd at all. As far as I was aware, I had the only custom module for multi-session IRC connections, and I hadn't told anyone about it either ...
by Valware
Thu Dec 11, 2025 5:02 pm
Forum: UnrealIRCd Webpanel and JSON-RPC
Topic: WebPanel 2.0 Beta Release
Replies: 0
Views: 704

WebPanel 2.0 Beta Release

Hi everyone

Today is the day! The beta version of the next UnrealIRCd WebPanel has been released and is available for testing.

You can find a link to download from my personal repo here, with setup/installation instructions in the README , for those who would like to test.

For those who would ...
by Valware
Wed Dec 03, 2025 3:42 pm
Forum: General chat
Topic: Security Groups Tutorial to Fine-tune Your Server
Replies: 0
Views: 1214

Security Groups Tutorial to Fine-tune Your Server

Hello to everyone who runs UnrealIRCd,

I would really like to talk about the Security Groups feature and how it can help you in various ways; from fine-tuning security settings and perfecting the art of anti-spam, to managing fleets of staff members with minimal effort, and much more.

I feel this ...
by Valware
Thu Nov 27, 2025 2:23 am
Forum: Generic support
Topic: [SOLVED] Allow only operators to create channels
Replies: 2
Views: 11010

Re: Allow only operators to create channels

Update: UnrealIRCd 6 now supports blocking creation of new channels using:

Code: Select all

set {
  restrict-commands {
    channel-create;
  }
}
by Valware
Thu Nov 27, 2025 2:17 am
Forum: Generic support
Topic: [SOLVED] Turkish Characters
Replies: 1
Views: 6181

Re: Turkish Characters

This is because your client seems to not support UTF8. You should update your client.
by Valware
Thu Nov 27, 2025 2:07 am
Forum: UnrealIRCd modules (third party)
Topic: [SOLVED] request form stop connection to server for countries
Replies: 4
Views: 18641

Re: request form stop connection to server for countries

Sorry I know this is an old post, but just for anyone who stumbles on this forum, UnrealIRCd supports the `~country` extended server ban now. so you can do, for example,

Code: Select all

/gline ~country:GB 0 Great Britain people not allowed lol
by Valware
Thu Nov 27, 2025 2:00 am
Forum: Installing and getting connected
Topic: Staff and entry position For channels sop or aop
Replies: 1
Views: 8336

Re: Staff and entry position For channels sop or aop

Please could you rephrase your question in a clearer way or use a translation service
by Valware
Fri Oct 31, 2025 3:42 pm
Forum: Generic support
Topic: [SOLVED] Strange bug on channels
Replies: 3
Views: 645

Re: Strange bug on channels

Hi! That sucks. Sorry to hear that happened. Indeed a strange bug. Please would you mind making a bug report on https://bugs.unrealircd.org ?
It would be really useful if you could also share your configuration files to increase our chances of being able to reproduce it, of course redacting ...
by Valware
Thu Sep 11, 2025 6:25 pm
Forum: UnrealIRCd Webpanel and JSON-RPC
Topic: [SOLVED] Suggestion: add away in json-RPC
Replies: 6
Views: 1553

Re: Suggestion: add away in json-RPC

Note that this is just my proposed change, there is a chance it might not be accepted as-is, or at all
by Valware
Thu Sep 11, 2025 6:24 pm
Forum: UnrealIRCd Webpanel and JSON-RPC
Topic: [SOLVED] Suggestion: add away in json-RPC
Replies: 6
Views: 1553

Re: Suggestion: add away in json-RPC

The patch I suggested patches the way Client (and child) structs are converted to JSON objects, so it'll be available in any call which contains a user with detail level 2 or higher or channel with detail level of 4 or higher, which means the default calls will include them.
by Valware
Thu Sep 11, 2025 3:35 pm
Forum: UnrealIRCd Webpanel and JSON-RPC
Topic: [SOLVED] Suggestion: add away in json-RPC
Replies: 6
Views: 1553

Re: Suggestion: add away in json-RPC

Hi, thanks for your feature request.

I've added your request to the bug reports manager, you can keep track of its status here: https://bugs.unrealircd.org/view.php?id=6573

I've also make a Pull Request to the main unrealircd repository which, if accepted, will include the user's away information ...
by Valware
Mon Jul 14, 2025 9:10 pm
Forum: Installing and getting connected
Topic: Problem running unrealircd on RHEL 9
Replies: 5
Views: 1586

Re: Problem running unrealircd on RHEL 9

UnrealIRCd still has md5 with it mainly for backwards compatibility when needed by an admin, for example if you're running a mixed network for whatever reason and want to use old host-cloaking algorithm which uses md5 then you can do this without breaking bans, set oper passwords with MD5 (although ...
by Valware
Mon Jul 14, 2025 3:54 pm
Forum: Installing and getting connected
Topic: Problem running unrealircd on RHEL 9
Replies: 5
Views: 1586

Re: Problem running unrealircd on RHEL 9

It looks like the MD5 algorithm has been moved from the "default" to "legacy" provider of OpenSSL.
Here's what I found on the internet about how to enable the legacy provider: https://access.redhat.com/solutions/7052650#:~:text=By%20default%20RHEL9%20disables%20the%20legacy%20provider,However ...