From bb2db515dbeba6f2ece3aee3c8d5a81f385fd2e0 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Sun, 8 Dec 2019 20:43:56 -0500 Subject: Don't send self-PMs to the server --- client.c | 1 + pounce.1 | 8 +++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/client.c b/client.c index 9be5a62..45ab179 100644 --- a/client.c +++ b/client.c @@ -209,6 +209,7 @@ static void handlePrivmsg(struct Client *client, struct Message *msg) { size_t diff = ringDiff(client->consumer); ringProduce(line); if (!diff) ringConsume(NULL, client->consumer); + if (!strcmp(msg->params[0], stateNick())) return; serverFormat("%s %s :%s\r\n", msg->cmd, msg->params[0], msg->params[1]); } diff --git a/pounce.1 b/pounce.1 index 6cb4180..eceb714 100644 --- a/pounce.1 +++ b/pounce.1 @@ -1,4 +1,4 @@ -.Dd November 18, 2019 +.Dd December 8, 2019 .Dt POUNCE 1 .Os . @@ -302,6 +302,12 @@ is supported: .Sy multi-prefix , .Sy userhost-in-names . . +.Pp +Private messages and notices +sent to the user's own nickname +are relayed only to other clients, +not to the server. +. .Ss Configuring SASL EXTERNAL .Bl -enum .It -- cgit 1.4.1