1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * InspIRCd: (C) 2002-2007 InspIRCd Development Team
6 * See: http://www.inspircd.org/wiki/index.php/Credits
8 * This program is free but copyrighted software; see
9 * the file COPYING for details.
11 * ---------------------------------------------------
16 /* $ModDesc: Forbids users from messaging each other. Users may still message opers and opers may message other opers. */
19 class ModuleRestrictMsg : public Module
24 ModuleRestrictMsg(InspIRCd* Me)
28 Implementation eventlist[] = { I_OnUserPreMessage, I_OnUserPreNotice };
29 ServerInstance->Modules->Attach(eventlist, this, 2);
32 void Implements(char* List)
34 List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = 1;
37 virtual int OnUserPreMessage(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
39 if ((target_type == TYPE_USER) && (IS_LOCAL(user)))
41 User* u = (User*)dest;
43 // message allowed if:
44 // (1) the sender is opered
45 // (2) the recipient is opered
46 // anything else, blocked.
47 if (IS_OPER(u) || IS_OPER(user))
51 user->WriteServ("531 %s %s :You are not permitted to send private messages to this user",user->nick,u->nick);
55 // however, we must allow channel messages...
59 virtual int OnUserPreNotice(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
61 return this->OnUserPreMessage(user,dest,target_type,text,status,exempt_list);
64 virtual ~ModuleRestrictMsg()
68 virtual Version GetVersion()
70 return Version(1,1,0,1,VF_VENDOR,API_VERSION);
74 MODULE_INIT(ModuleRestrictMsg)