unrealircd/doc/conf/unrealircd.remote.conf

258 lines
7.4 KiB
Plaintext
Raw Normal View History

2020-04-20 12:14:09 -07:00
admin { ""; }
alias botserv { type services; }
alias bs { target botserv; type services; }
alias chanserv { type services; }
alias cs { target chanserv; type services; }
alias hostserv { type services; }
alias hs { target hostserv; type services; }
alias nickserv { type services; }
alias ns { target nickserv; type services; }
alias operserv { type services; }
alias os { target operserv; type services; }
class clients { pingfreq 120; maxclients 100; sendq 1M; options { nofakelag; } }
class servers { pingfreq 120; maxclients 10; sendq 1M; connfreq 30; }
2022-01-14 21:16:34 -08:00
allow { mask *; class clients; maxperip 2; global-maxperip 2; }
allow { mask 127.0.0.1; class clients; maxperip 10; global-maxperip 10; }
2020-04-20 12:14:09 -07:00
2020-05-28 19:06:50 -07:00
#require authentication {
# mask *@*;
# reason "8,4 E N T E R T H E V O I D ";
#}
2020-04-20 12:14:09 -07:00
listen { ip *; port 6667; options { clientsonly; } }
listen { ip *; port 6697; options { clientsonly; tls; } }
listen { ip *; port REDACTED; options { serversonly; tls; } }
2021-06-19 08:52:51 -07:00
deny channel { channel "#dev"; reason "This channel has moved to #superbowl"; redirect "#superbowl"; }
deny channel { channel "#help"; reason "This channel has moved to #superbowl"; redirect "#superbowl"; }
2022-01-14 21:16:34 -08:00
deny channel { channel "#mensa"; reason "This channel has been closed"; redirect "#superbowl"; }
deny channel { channel "#pumpcoin"; reason "This channel has moved to #exchange"; redirect "#exchange"; }
2021-06-19 08:52:51 -07:00
2020-04-20 12:14:09 -07:00
link irc.supernets.org {
incoming { mask REDACTED; }
outgoing {
bind-ip *;
hostname REDACTED;
port REDACTED;
options { tls; autoconnect; }
}
password "REDACTED" { spkifp; }
class servers;
}
2022-01-14 21:16:34 -08:00
log {
source { error; fatal; warn; }
destination { file "ircd.log" { maxsize 10M; } }
}
log {
source { all; }
destination { channel "#REDACTED" }
}
2020-04-20 12:14:09 -07:00
tld { mask *@*; motd remote.motd; rules remote.motd; options { remote; } }
ulines { services.supernets.org; }
blacklist dronebl {
dns {
name dnsbl.dronebl.org;
type record;
reply { 3; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; }
}
action gzline;
2020-05-29 11:18:36 -07:00
ban-time 30d;
2020-04-20 12:14:09 -07:00
reason "8,4 E N T E R T H E V O I D ";
}
blacklist efnetrbl {
dns {
name rbl.efnetrbl.org;
type record;
reply { 1; 4; 5; }
}
action gzline;
2020-05-29 11:18:36 -07:00
ban-time 30d;
2020-04-20 12:14:09 -07:00
reason "8,4 E N T E R T H E V O I D ";
}
blacklist torbl {
dns {
name torexit.dan.me.uk;
type record;
reply { 100; }
}
action gzline;
2020-05-29 11:18:36 -07:00
ban-time 30d;
2020-04-20 12:14:09 -07:00
reason "8,4 E N T E R T H E V O I D ";
}
set {
2021-06-20 07:00:58 -07:00
kline-address "enterthevoid@supernets.org";
gline-address "enterthevoid@supernets.org";
2021-01-15 16:15:07 -08:00
modes-on-connect "+iIpTx";
modes-on-oper "+Hq";
2022-01-14 21:16:34 -08:00
snomask-on-oper "+bBcCfksSoO";
2021-02-13 11:42:01 -08:00
modes-on-join "+ns";
2020-04-20 12:14:09 -07:00
level-on-join "op";
2020-05-29 11:18:36 -07:00
restrict-usermodes "ips";
2021-01-15 16:15:07 -08:00
restrict-channelmodes "nLpPs";
2020-04-20 12:14:09 -07:00
restrict-commands {
2022-01-14 21:16:34 -08:00
channel-message { connect-delay 60; exempt-identified yes; exempt-reputation-score 100; }
channel-notice { connect-delay 60; exempt-identified yes; exempt-reputation-score 100; }
invite { connect-delay 300; exempt-identified yes; exempt-reputation-score 100; }
join { connect-delay 15; exempt-identified yes; exempt-reputation-score 100; }
list { connect-delay 30; exempt-identified yes; exempt-reputation-score 100; }
private-message { connect-delay 300; exempt-identified yes; exempt-reputation-score 100; }
private-notice { connect-delay 300; exempt-identified yes; exempt-reputation-score 100; }
2020-04-20 12:14:09 -07:00
}
2022-01-14 21:16:34 -08:00
auto-join "#superbowl";
2020-04-20 12:14:09 -07:00
static-quit "EMO-QUIT";
static-part "EMO-PART";
nick-length 20;
maxchannelsperuser 10;
channel-command-prefix "`!@$.";
options { hide-ulines; flat-map; identd-check; }
network-name "SuperNETs";
default-server "irc.supernets.org";
services-server "services.supernets.org";
sasl-server "services.supernets.org";
2021-06-20 07:00:58 -07:00
help-channel "#superbowl";
2020-04-20 12:14:09 -07:00
cloak-method ip;
cloak-keys {
"REDACTED";
"REDACTED";
"REDACTED";
}
hiddenhost-prefix "SUPER";
plaintext-policy {
user warn;
oper deny;
server deny;
2022-01-14 21:16:34 -08:00
user-message "4WARNING: You are not on a secure TLS connection";
oper-message "Network operators must be on a secure TLS connection";
2020-04-20 12:14:09 -07:00
}
outdated-tls-policy {
user warn;
oper deny;
server deny;
user-message "4WARNING: You are using an outdated SSL/TLS protocol or cipher";
2022-01-14 21:16:34 -08:00
oper-message "Network operators must be using an up-to-date SSL/TLS protocol & cipher";
2020-04-20 12:14:09 -07:00
}
anti-flood {
2021-06-19 08:52:51 -07:00
everyone {
connect-flood 3:300;
handshake-data-flood {
amount 4k;
ban-action gzline;
ban-time 1h;
}
2022-01-14 21:16:34 -08:00
#target-flood {
# channel-notice 15:5;
# channel-privmsg 45:5;
# channel-tagmsg 15:5;
# private-notice 10:5;
# private-privmsg 30:5;
# private-tagmsg 10:5;
#}
2021-06-19 08:52:51 -07:00
}
known-users {
away-flood 3:300;
invite-flood 3:300;
join-flood 3:300;
knock-flood 3:300;
nick-flood 3:300;
max-concurrent-conversations {
users 5;
new-user-every 60s;
}
2022-01-14 21:16:34 -08:00
lag-penalty 10; # update?
lag-penalty-bytes 0;
2020-05-28 19:06:50 -07:00
}
2021-06-19 08:52:51 -07:00
unknown-users {
away-flood 3:300;
invite-flood 3:300;
join-flood 3:300;
knock-flood 3:300;
nick-flood 3:300;
max-concurrent-conversations {
users 3;
new-user-every 60s;
}
2022-01-14 21:16:34 -08:00
lag-penalty 1000;
lag-penalty-bytes 90;
}
2020-04-20 12:14:09 -07:00
}
2020-05-28 19:06:50 -07:00
default-bantime 30d;
modef-default-unsettime 5;
2020-04-20 12:14:09 -07:00
spamfilter {
ban-time 1d;
ban-reason "8,4 E N T E R T H E V O I D ";
except "#anythinggoes";
}
2021-01-15 16:15:07 -08:00
max-targets-per-command { kick 1; part 1; privmsg 1; }
2020-04-20 12:14:09 -07:00
hide-ban-reason yes;
reject-message {
gline "8,4 E N T E R T H E V O I D ";
kline "8,4 E N T E R T H E V O I D ";
password-mismatch "8,4 E N T E R T H E V O I D ";
server-full "8,4 E N T E R T H E V O I D ";
too-many-connections "8,4 E N T E R T H E V O I D ";
unauthorized "8,4 E N T E R T H E V O I D ";
}
antimixedutf8 {
2021-06-19 08:52:51 -07:00
score 8;
2020-04-20 12:14:09 -07:00
ban-action block;
ban-reason "8,4 E N T E R T H E V O I D ";
}
connthrottle {
2022-01-14 21:16:34 -08:00
known-users { minimum-reputation-score 25; sasl-bypass yes; }
new-users { local-throttle 20:60; global-throttle 30:60; }
disabled-when { reputation-gathering 1w; start-delay 3m; }
2020-04-20 12:14:09 -07:00
}
history {
channel {
2022-01-14 21:16:34 -08:00
playback-on-join { lines 1000; time 1d; }
2021-06-19 08:52:51 -07:00
max-storage-per-channel {
2022-01-14 21:16:34 -08:00
registered { lines 1000; time 1d; }
unregistered { lines 100; time 1h; }
2021-06-19 08:52:51 -07:00
}
2020-04-20 12:14:09 -07:00
}
}
2022-01-14 21:16:34 -08:00
hide-idle-time { policy always; }
whois-details {
basic { everyone full; }
modes { everyone none; self full; oper full; }
realhost { everyone none; self full; oper full; }
registered-nick { everyone full; }
channels { everyone limited; self full; oper full; }
server { everyone full; }
away { everyone full; }
oper { everyone limited; self full; oper full; }
secure { everyone limited; self full; oper full; }
bot { everyone full; }
services { everyone full; }
reputation { everyone none; self none; oper full; }
geo { everyone none; self none; oper full; }
certfp { everyone full; }
shunned { everyone none; self none; oper full; }
account { everyone full; }
swhois { everyone full; }
idle { everyone limited; self full; oper full; }
}
2020-04-20 12:14:09 -07:00
}
hideserver {
disable-map yes;
disable-links yes;
2022-01-14 21:16:34 -08:00
map-deny-message "8,4 E N T E R T H E V O I D ";
links-deny-message "8,4 E N T E R T H E V O I D ";
2021-06-19 08:52:51 -07:00
}
security-group known-users {
identified yes;
2022-01-14 21:16:34 -08:00
reputation-score 25;
2020-04-20 12:14:09 -07:00
}