Anope IRC Services

Please login or register.

Login with username, password and session length
Advanced search  

News:

Pages: 1 ... 3 4 [5] 6 7 ... 10
 41 
 on: March 26, 2023, 11:09:12 AM 
Started by Stefan - Last post by The Myth Lives
- In your UnrealIRCd oper block, the mask item is totally wrong. It should look like the following:
Code: [Select]
oper Klapvogn {
class opers;
mask *; /* if you want to permit any IP. */
password "XXXX!";
operclass netadmin-with-override;
swhois "is a Network Administrator";
vhost netadmin.xxx.pw;
}
If you really want to force opers to use TLS and be identified to services before being able to oper-up, just add the following on the oper block (if service are down they can't oper up due to need +r):
Code: [Select]
require-modes "zr";
- On Anope side, your host is also wrong. It should look like the following:
Code: [Select]
oper
{
name = "Klapvogn"
type = "Services Root"
password = "XXXXX"
require_oper = yes
host = "*@*"
}

Cheers

 42 
 on: March 26, 2023, 10:59:10 AM 
Started by Stefan - Last post by The Myth Lives
It is possible to achieve this goal, but you need to do some extra steps.

- You need to set the set::oper-auto-join (https://www.unrealircd.org/docs/Set_block#set::oper-auto-join) to all the channels you'd like any oper to auto join when they oper up.
- You need to set #services as an invite-only channel with an invex (invite exception) to a specific operclass. Something like:
Code: [Select]
/mode services +iI ~O:*admin*- The command above will only allow opers with admin on their operclass to join
- You need to adjust the operclass blocks, oper blocks, etc to fit your needs.
- Feel free to stop by #unreal-support @ irc.unrealircd.org  if you need further help.
- Be sure to also set "opers" channels to be +P.

Cheers

 43 
 on: March 25, 2023, 11:02:51 PM 
Started by Stefan - Last post by Lord255
not sure about your answer.
ircd and anope's oper are two different things.
changing class in ircd's class, irrelevant i think.
as an oper you should not use a clients class btw.

 44 
 on: March 25, 2023, 10:59:08 PM 
Started by Amine - Last post by Lord255
hey.
look around here:
https://github.com/anope/anope/blob/e68a41a91ee9d80ea4c245da3583d27f923eda65/data/operserv.example.conf#L624-L643

 45 
 on: March 25, 2023, 02:40:20 PM 
Started by Amine - Last post by Amine
hello,

when I use: /msg OperServ SET SUPERADMIN on I get this message: The super admin cannot be set because it is not enabled in the config.

help pleaaaaase  :-\ :-\

 46 
 on: March 25, 2023, 01:35:54 PM 
Started by Stefan - Last post by Stefan
Hi,

Im new to this world. but wen i do :
Code: [Select]
OPERSERV LOGIN XXXXXI get:
Code: [Select]
Password accepted
But when I do :
Code: [Select]
/os oper listI get
Code: [Select]
Access denied
My user in anope service.conf
Code: [Select]
oper
{
name = "Klapvogn"
type = "Services Root"
password = "XXXXX"
require_oper = yes
host = "@"
}

What do I do wrong ?

I think I have answered my own question :D

in unrealircd.conf i had
Code: [Select]
oper Klapvogn {
class opers;
mask {
tls yes;
identified yes;
}
password "XXXX!";
operclass netadmin-with-override;
swhois "is a Network Administrator";
vhost netadmin.xxx.pw;
}

I changed the class:
Code: [Select]
oper Klapvogn {
class clients;
mask {
tls yes;
identified yes;
}
password "XXXX!";
operclass netadmin-with-override;
swhois "is a Network Administrator";
vhost netadmin.xxx.pw;
}

Now I can /os oper list

 47 
 on: March 24, 2023, 10:43:29 PM 
Started by Stefan - Last post by Lord255
hi Stefan.
this question belong to ircd, but i don't think its possible.
sorry.

 48 
 on: March 24, 2023, 09:28:56 PM 
Started by Stefan - Last post by Stefan
Hi,

Im new to unrealircd and anope.

It it possible to make it like:

net-admin joins #services per auto
and other operclass does not join #services
?

 49 
 on: March 23, 2023, 10:57:43 PM 
Started by Me - Last post by Me
Good evening,

Is it possible to increase the possible size of a memoserv message?
If yes how to do it?
Because sometimes they are cut before the end if they are a little too long.

Thank you.

 50 
 on: March 11, 2023, 05:01:35 PM 
Started by Rene - Last post by Rene
How can I transfer previous bans that I have set using /mode #chan1 +b etc to another channel e.g. #chan2 without having to re-enter every /mode command for #chan2?.

I tried /cs clone #chan1 #chan2 all - but the default bans from #chan1 were not transferred to #chan2.

Solution?

Pages: 1 ... 3 4 [5] 6 7 ... 10