summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes9
-rw-r--r--src/memoserv.c5
-rw-r--r--version.log6
3 files changed, 15 insertions, 5 deletions
diff --git a/Changes b/Changes
index 27f108df4..6c2359869 100644
--- a/Changes
+++ b/Changes
@@ -7,10 +7,11 @@ Provided by Anope Dev. <dev@anope.org> - 2004
Provided by Trystan <trystan@nomadirc.net> - 2004
11/19 A Added anope_cmd_ctcp() to code API, for sending CTCP messages [ #00]
-11/20 F Removing Sqline on bot nicks change if the nick was registered [#224]
-11/19 F normalizeBuffer() now strips control character 1 [ #00]
-11/19 F CTCP Ping replies when UsePrivmsg is enabled [ #00]
-11/19 F Some config options could overflow strtol() [ #00]
+09/27 F MS CHECK now checks if the nick is forbidden. [#225]
+11/20 F Removing Sqline on bot nicks change if the nick was registered. [#224]
+11/19 F normalizeBuffer() now strips control character 1. [ #00]
+11/19 F CTCP Ping replies when UsePrivmsg is enabled. [ #00]
+11/19 F Some config options could overflow strtol(). [ #00]
11/16 F NickTracking could allow usage of forbidden nick in some cases. [ #00]
diff --git a/src/memoserv.c b/src/memoserv.c
index 7ef69f975..f2da8bab2 100644
--- a/src/memoserv.c
+++ b/src/memoserv.c
@@ -1388,6 +1388,11 @@ static int do_memocheck(User * u)
return MOD_CONT;
}
+ if ((na->status & NS_VERBOTEN)) {
+ notice_lang(s_MemoServ, u, NICK_X_FORBIDDEN, recipient);
+ return MOD_CONT;
+ }
+
mi = &na->nc->memos;
/* Okay, I know this looks strange but we wanna get the LAST memo, so we
diff --git a/version.log b/version.log
index 8d0b85e2d..e19e6b40f 100644
--- a/version.log
+++ b/version.log
@@ -8,10 +8,14 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="6"
-VERSION_BUILD="453"
+VERSION_BUILD="454"
# $Log$
#
+# BUILD : 1.7.6 (454)
+# BUGS : 225
+# NOTES : MS CHECK now checks if the nick is forbidden.
+#
# BUILD : 1.7.6 (453)
# BUGS : 224
# NOTES : Removing Sqline on bot nicks change if the nick was registered