Travis McArthur
df4597b869
Modularize operonly (+O)
2014-06-07 19:37:25 -07:00
Bram Matthys
101d2dd6a3
Big 3.4.x commit containing bug fixes and enhancements. Modularizing
...
user & channel modes. Fixing Windows build. Etc..
2014-05-11 20:56:02 +02:00
William Pitcock
881d79e5b5
- more UID vs. non-UID translation
2013-05-25 09:52:35 +00:00
William Pitcock
afdf5d780a
- Replace ircsprintf() with bounds-checking ircsnprintf(), patch from FalconKirtaran. ( #4208 )
2013-05-21 06:26:52 +00:00
William Pitcock
61fe014771
- Remove sendto_server_butone() and friends, now everything uses sendto_server(). ( #4202 )
...
Patch from FalconKirtaran.
2013-05-20 01:21:45 +00:00
William Pitcock
b413848524
- TOK_FOO removal pass 2
2013-05-19 21:40:45 +00:00
William Pitcock
ca86485927
- Remove token parameter from CommandAdd().
2013-05-19 21:27:26 +00:00
=?UTF-8?q?Mantas=20Mikul=C4=97nas?=
3e47992755
- Remove remaining uses of sendto_serv_butone_token() from modules.
...
---
src/modules/m_chatops.c | 10 ++++------
src/modules/m_chghost.c | 4 ++--
src/modules/m_chgident.c | 5 ++---
src/modules/m_chgname.c | 4 ++--
src/modules/m_globops.c | 4 ++--
src/modules/m_join.c | 13 +++++--------
src/modules/m_kick.c | 5 ++---
src/modules/m_mode.c | 26 ++++++++++++--------------
src/modules/m_nachat.c | 4 ++--
src/modules/m_nick.c | 4 ++--
src/modules/m_oper.c | 9 ++++-----
src/modules/m_part.c | 9 ++++-----
src/modules/m_sajoin.c | 3 +--
src/modules/m_sasl.c | 20 +++++++++++---------
src/modules/m_sdesc.c | 3 +--
src/modules/m_sendsno.c | 3 +--
src/modules/m_sethost.c | 3 +--
src/modules/m_setident.c | 3 +--
src/modules/m_setname.c | 2 +-
src/modules/m_svsfline.c | 15 ++++-----------
src/modules/m_svskill.c | 3 +--
src/modules/m_svsmode.c | 12 ++++++------
src/modules/m_svsmotd.c | 10 ++++------
src/modules/m_svsnick.c | 3 +--
src/modules/m_svsnline.c | 15 ++++-----------
src/modules/m_svssilence.c | 2 +-
src/modules/m_swhois.c | 3 +--
src/modules/m_tkl.c | 10 +++++-----
src/modules/m_topic.c | 14 +++++---------
src/modules/m_vhost.c | 12 +++++-------
30 files changed, 97 insertions(+), 136 deletions(-)
2013-05-19 20:36:56 +00:00
William Pitcock
6085877aa7
- Remove TS2ts() and %B usage in formatter strings. Patch from FalconKirtaran ( #4197 , #4198 ).
2013-05-19 08:36:49 +00:00
William Pitcock
424d7afba7
- Remove all references to add_Command(). ( #3177 )
2012-12-26 19:57:35 -06:00
William Pitcock
ab5e766d9c
- Replace calls to strncpyzt() macro with more secure strlcpy().
...
This was done using Coccinelle, the semantic patch was:
@@
expression src, dst, len;
@@
- strncpyzt(src, dst, len);
+ strlcpy(src, dst, len);
2012-11-21 03:22:29 +00:00
stskeeps
f3a2d7f6a4
- #0001317 reported by thilo regarding removal of (username) being
...
appended to topics set by U:Lined servers.
2007-06-15 19:47:26 +00:00
Bram Matthys
e1dd8acd72
- Made it so undefining SHOW_SECRET (not the default) properly hides +s channels from ircops
...
(except netadmins), as it should. Reported and patch supplied by Jason (#0002965 ).
2006-07-04 10:05:18 +00:00
Bram Matthys
74c38ca2b5
- Made people with can_override able to change the topic again if not chanop and banned/+m-t,
...
reported by vonitsanet (#0002952 ).
2006-06-07 10:40:12 +00:00
Bram Matthys
abf11b8e66
- Made the "voice needed when channel is +m but -t" actually work, reported by Trystan and
...
Ron2K (#0002940 ).
2006-06-01 17:08:12 +00:00
Bram Matthys
4530ee5219
- Made it so if the channel is +m but -t, you need at least voice (+v) to change the topic.
...
Reported by aquanight (#0002233 ).
[commit accidently happened earlier btw...]
2006-04-09 20:17:25 +00:00
Bram Matthys
eee6d3c8d1
- Local opers may now use /TRACE (local only), suggested by GSF19 ( #0002365 ).
2006-04-09 18:37:38 +00:00
Bram Matthys
c9648673fd
- Made it so banned users cannot change the topic, suggested by aquanight and Stealth ( #2233 ).
2006-01-16 21:11:48 +00:00
Bram Matthys
364bf0f605
- Fixes for an amd64 crash problem, reported by Peter Laur (OpenBSD.se).
...
- Redid some net synching code to make it more efficient (#2716 ).
- Fixed spamfilter crash problem: the action 'viruschan' is now no longer incompatible
with target 'user'. Reported by Monk (#0002570 ).
2006-01-06 19:53:41 +00:00
Bram Matthys
f535167cf9
- Added 'warn' target which is basically the same as 'block' except it does not block ;).
...
It also sends a numeric to the user saying the command has been processed, but a copy
has been sent to ircops. I feel this is a good idea for privacy reasons (anti-spy),
though I don't know how users will react to this. If you are using this on your network
and get users bothering you about it (or before that ;p), it's probably a good idea
to explain it somewhere on your site or FAQ :).
Example usage:
/spamfilter add p warn - Testing_mirc_decode_filter \$decode\(.*\)
[WARNING] The numeric text is likely to change in the next few weeks (early-cvs-commit).
- If a class block was removed and any other blocks would be referencing the class block
(such as: allow::class, oper::class, link::class), then this would cause a crash.
Reported by Mike_ (#0002646 ).
2005-09-25 21:49:19 +00:00
Bram Matthys
1a655c11ca
- Added spamfilter topic support ('t' in /spamfilter, or 'topic' in conf), suggested
...
by Z3l3zT (#0001929 ).
2005-02-04 01:05:42 +00:00
Bram Matthys
a573b29a0f
- Fixed a bug in individual m_*.so loading, 39 new modules were affected.
2004-02-23 23:14:05 +00:00
stskeeps
9cfc83d98d
Changes
2004-02-17 20:45:03 +00:00
Bram Matthys
01c5b99faa
- Added [OLD?] flag in /module so you can easily spot old beta* modules.
...
- Modulized: samode, sajoin, sapart, kick, topic, invite, list
2004-02-16 22:10:39 +00:00