diff options
author | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-11-20 16:56:49 +0000 |
---|---|---|
committer | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-11-20 16:56:49 +0000 |
commit | a56511755538e48c2e4588b641f4bcf4033f8bb5 (patch) | |
tree | a814d2b08942fd3adf519a1ce8891f8f474aa9f5 | |
parent | 18cfa4226c5b1f01fde5bdaf6810b4006fde8c05 (diff) |
BUILD : 1.7.6 (454) BUGS : 225 NOTES : MS CHECK now checks if the nick is forbidden.
git-svn-id: svn://svn.anope.org/anope/trunk@454 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@308 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 9 | ||||
-rw-r--r-- | src/memoserv.c | 5 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 15 insertions, 5 deletions
@@ -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 |