callerid: only check the target's accept list on their own local server
This commit is contained in:
parent
3ed61fba8c
commit
4841ad6197
1 changed files with 7 additions and 3 deletions
|
@ -154,6 +154,10 @@ send_callerid_notice(enum message_type msgtype, struct Client *source_p, struct
|
|||
static bool
|
||||
add_callerid_accept_for_source(enum message_type msgtype, struct Client *source_p, struct Client *target_p)
|
||||
{
|
||||
/* only do this on target_p's server */
|
||||
if (!MyClient(target_p))
|
||||
return true;
|
||||
|
||||
/*
|
||||
* XXX: Controversial? Allow target users to send replies
|
||||
* through a +g. Rationale is that people can presently use +g
|
||||
|
|
Loading…
Reference in a new issue