David Schultz
1608b0e70e
m_shedding: user shedding module based on oftc-hybrid
2023-05-18 14:44:23 -05:00
Aaron Jones
1548c14021
extensions/umode_hide_idle_time: mask times for hidden sources ( #373 )
...
If the user performing a WHOIS has hidden their idle time (is umode +I),
also prevent them from seeing other user's idle times, even if said users
are not themselves umode +I.
Suggested-by: @Unit193
2022-10-21 08:01:41 +00:00
David Schultz
0ea108fcee
chm_regmsg: fix typo in description
2022-10-02 19:00:16 -04:00
Stephen Bennett
8d67f0605c
Make +R play nicely with +z
2022-10-01 17:04:25 -04:00
vulpine
1f8c7ce5ca
remove old reference to the unsupported directory
...
the unsupported directory was removed by charybdis a while ago
2022-09-26 00:47:33 -04:00
David Schultz
01fb744c40
Add umode +I to allow users to hide their idle time ( #220 )
2022-08-30 16:49:43 -04:00
Doug Freed
860187d028
chm_regmsg: don't duplicate nick in 415
...
sendto_one_numeric already includes the nick, so there's no need to
duplicate it. OFTC does not.
2022-07-11 23:35:25 -04:00
Matthew Martin
5c01fc8bd7
Cast time_t to long long when printing
2022-07-01 03:43:36 -04:00
Jess Porter
9d2e66c08d
ERROR instead of NOTICE for failed WEBIRC
2022-07-01 00:02:53 +01:00
Matthew Martin
57aa79acb8
Normalize snprintf size to use sizeof where possible
2022-06-24 01:42:08 -04:00
Jess Porter
042218080e
don't subject remote users to chm_nonotice
2022-01-16 18:06:53 +00:00
Ed Kellett
54f05581ab
helpops: show opernames to opers
2021-10-17 01:56:49 +01:00
jess
78825899cd
explicitly show IP in SNO_BANNED snotes
2021-10-09 22:45:22 +01:00
Ed Kellett
7b4a1198c5
extb_canjoin: Ignore exemptions
2021-09-22 15:28:36 +01:00
Eric Mertens
981a94c3c9
chm_regmsg: actually check channel mode ( #271 )
2021-08-23 19:52:18 -07:00
jesopo
a8457d98e5
switch sasl_usercloak.c to use SNO_BANNED
2021-08-20 18:38:05 +01:00
Eric Mertens
82436efb60
hook_fn casts were hiding UB ( #265 )
2021-08-19 20:09:40 -07:00
Ed Kellett
b6b40dda24
Make new_local_user hooks handle dead clients
2021-08-19 20:58:36 +01:00
jailbird777
8f0c3422e7
Remove Windows support
2021-07-30 14:17:47 -04:00
Ed Kellett
883ac66b20
kick,remove: don't confuse source and target membership
2021-07-13 23:50:03 +01:00
jesopo
d24434edb7
add override /invite
2021-07-06 22:52:53 +01:00
David Schultz
ef7a99cdb0
Add solanum.chat/oper
capablity ( #217 )
2021-06-26 16:30:30 +01:00
David Schultz
e62ec6f17c
Show account name in cliconn snotes when SASL is used ( #135 )
...
Show account name in cliconn snotes when SASL is used
2021-06-12 11:30:50 -07:00
Mike Quin
bb10433ec5
Port m_invex_regonly from ircd-seven ( #178 )
...
Port m_invex_regonly from ircd-seven
This module allows +I to be used to bypass +r (registered only) as
well as +i (invite only).
Co-authored-by: Doug Freed <dwfreed@mtu.edu>
Co-authored-by: Ed Kellett <e@kellett.im>
2021-06-12 11:22:42 -07:00
Ariadne Conill
3fc0499e77
Mailmap and copyright update for Ariadne
2021-06-01 12:40:02 -04:00
Ed Kellett
788e1a98f0
Remove $x's magical powers
2021-04-26 17:51:55 +01:00
Ed Kellett
d58de35b83
Remove redundant param to update_session_deadline
2021-04-26 17:45:49 +01:00
Ed Kellett
0abb79b706
Manage override sessions properly
2021-04-26 17:45:49 +01:00
jesopo
72b1dbd4bf
"KDX-Line active for" is now L_NETWIDE, so remove sno_globalkline
2021-04-10 15:12:40 +01:00
Eric Mertens
0ba1da5910
Add +R channel mode module requiring services account to chat ( #102 )
...
* Add +R channel mode module requiring services account to chat
* Use void* in hook argument
* move chm_regmsg from modules to extensions
* generate error message when module fails to load
2021-01-24 05:13:03 -08:00
Doug Freed
41729935d0
extensions: remove m_roleplay
2020-11-22 17:32:43 -05:00
Doug Freed
8783544360
m_findforwards: refactor to use multiline
...
Fixes #57
2020-11-12 19:18:01 -05:00
jess
a922755512
make more snotes L_NETWIDE
2020-11-08 14:30:41 -05:00
Eric Mertens
d295a3986d
Stop using chm_nosuch as a sentinel value ( #53 )
...
Remove chmode compat modules
This removes the need for chm_nosuch as well. Unknown mode detection happens in mode parsing now.
2020-11-08 09:50:17 -08:00
Eric Mertens
92c6e47b4a
Clean up duplication in ChannelModeFunc prototypes ( #52 )
2020-11-07 16:45:12 -08:00
Ed Kellett
04952c32ad
Rework channel mode handling
...
Incoming MODE processing is split into a parsing step and an execution
step, instead of a mode's effector function being involved in its own
parsing. Modes can no longer use custom logic to control their parsing,
and instead supply a combination of CHM_* flags to the parser. As a
result, we know before we try to effect any mode changes what all of
them will be.
The reauthorize hack for override is no longer necessary. A side effect
of its introduction was that `MODE #foo b x!y@z` no longer worked; in
removing it we restore that behaviour.
We gain the ability to reject various invalid inputs that:
- mutate or query unknown modes
- supply excess mode arguments
- query modes that can't be queried
In each case, whether we *should* reject it is an open question; for now
I'm rejecting the first one.
2020-11-08 00:26:27 +00:00
Ed Kellett
861a544541
m_webirc: Blow away ident if we've got it
...
Previously, anyone on the WEBIRC gateway would get its ident if it
advertised one, which seems wrong to me.
This allows ident to be used with WEBIRC while still letting users send
their own ~username in band.
2020-11-02 19:59:29 +00:00
Ed Kellett
f57d88bc71
Remove shared blocks
2020-11-01 04:20:44 +00:00
Ed Kellett
35eccf4930
Rename UMODE_SSLCLIENT, IsSSLClient
2020-10-31 16:00:02 +00:00
Ed Kellett
bbdc439aa3
Replace IsInsecure with IsSecure
2020-10-31 16:00:02 +00:00
Ed Kellett
26c3681f7c
Delete extensions/spy_*,sno_whois
2020-10-28 21:19:36 +00:00
Ed Kellett
0f8ec93849
helpops: change umode char to h
2020-10-27 13:53:01 +00:00
Ed Kellett
8a776ce65c
cap_realhost: neaten oper IP tag check
2020-10-24 16:19:52 +01:00
Ed Kellett
272e4a7d33
cap_realhost: Don't send realhost to non-opers
...
If they can see it it's already in the message source
2020-10-24 16:19:52 +01:00
Ed Kellett
3b4731951f
Implement oper realhost view via a hidden cap
2020-10-24 16:19:52 +01:00
Ed Kellett
0862875dd8
Add extensions/cap_realhost
2020-10-24 16:19:52 +01:00
Ed Kellett
e8a8d7a440
Refactor common channel iteration
2020-10-19 20:15:26 +01:00
Ed Kellett
5e413b1372
Use linear channel list comparisons
2020-10-19 20:15:26 +01:00
Ed Kellett
d6b9005892
extb_canjoin: disable inside +e
2020-10-19 01:07:16 +01:00
Ed Kellett
a7bd528f61
extb_hostmask: handle banstr == NULL
2020-10-18 19:45:51 +01:00