invite: remove hardcoded callerid logic

This commit is contained in:
Ariadne Conill 2020-06-26 12:49:19 -06:00
parent ac09f70838
commit 98ac35197b

View file

@ -201,30 +201,6 @@ m_invite(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source
if(MyConnect(target_p))
{
if(!IsOper(source_p) && IsSetCallerId(target_p) && !accept_message(source_p, target_p))
{
sendto_one_numeric(source_p, ERR_TARGUMODEG,
form_str(ERR_TARGUMODEG),
target_p->name);
if((target_p->localClient->last_caller_id_time +
ConfigFileEntry.caller_id_wait) < rb_current_time())
{
sendto_one_numeric(source_p, RPL_TARGNOTIFY,
form_str(RPL_TARGNOTIFY),
target_p->name);
add_reply_target(target_p, source_p);
sendto_one(target_p, form_str(RPL_UMODEGMSG),
me.name, target_p->name, source_p->name,
source_p->username, source_p->host);
target_p->localClient->last_caller_id_time = rb_current_time();
}
return;
}
hdata.chptr = chptr;
hdata.msptr = msptr;
hdata.client = source_p;