X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_restrictmsg.cpp;h=b5f10eb244976a5d38cec4908266e247189cf890;hb=e6d000042ea75d4e0485bec9564b47163a3ca414;hp=12130f0a174b9d377666aeac4c86273a3ae86ff1;hpb=2e52ff280dca14d1598b84fab7a8c2e93fa30910;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_restrictmsg.cpp b/src/modules/m_restrictmsg.cpp index 12130f0a1..b5f10eb24 100644 --- a/src/modules/m_restrictmsg.cpp +++ b/src/modules/m_restrictmsg.cpp @@ -2,27 +2,15 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. - * E-mail: - * - * - * - * Written by Craig Edwards, Craig McLure, and others. + * InspIRCd: (C) 2002-2007 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits + * * This program is free but copyrighted software; see * the file COPYING for details. * * --------------------------------------------------- */ -using namespace std; - -#include -#include -#include -#include "users.h" -#include "channels.h" -#include "modules.h" - #include "inspircd.h" /* $ModDesc: Forbids users from messaging each other. Users may still message opers and opers may message other opers. */ @@ -34,7 +22,7 @@ class ModuleRestrictMsg : public Module public: ModuleRestrictMsg(InspIRCd* Me) - : Module::Module(Me) + : Module(Me) { } @@ -46,21 +34,22 @@ class ModuleRestrictMsg : public Module virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list) { - if (target_type == TYPE_USER) + if ((target_type == TYPE_USER) && (IS_LOCAL(user))) { userrec* u = (userrec*)dest; - if (*u->oper || *user->oper) + + // message allowed if: + // (1) the sender is opered + // (2) the recipient is opered + // anything else, blocked. + if (IS_OPER(u) || IS_OPER(user)) { - // message allowed if: - // (1) the sender is opered - // (2) the recipient is opered - // (3) both are opered - // anything else, blocked. return 0; } user->WriteServ("531 %s %s :You are not permitted to send private messages to this user",user->nick,u->nick); return 1; } + // however, we must allow channel messages... return 0; } @@ -80,28 +69,4 @@ class ModuleRestrictMsg : public Module } }; - -class ModuleRestrictMsgFactory : public ModuleFactory -{ - public: - ModuleRestrictMsgFactory() - { - } - - ~ModuleRestrictMsgFactory() - { - } - - virtual Module * CreateModule(InspIRCd* Me) - { - return new ModuleRestrictMsg(Me); - } - -}; - - -extern "C" void * init_module( void ) -{ - return new ModuleRestrictMsgFactory; -} - +MODULE_INIT(ModuleRestrictMsg)