From c1be388208adea8b1700bfa42ea777f6f33beee8 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Mon, 29 Nov 2021 15:45:14 -0500 Subject: [PATCH] Changed the reject message to be identical to the one used by Mailman so we can steal their translations later --- citadel/modules/smtp/serv_smtp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/citadel/modules/smtp/serv_smtp.c b/citadel/modules/smtp/serv_smtp.c index 549a29165..6bed1547a 100644 --- a/citadel/modules/smtp/serv_smtp.c +++ b/citadel/modules/smtp/serv_smtp.c @@ -720,7 +720,7 @@ void smtp_rcpt(void) { && (SMTP->message_originated_locally == 0) // ...and also inbound Internet mail... && (is_email_subscribed_to_list((char *)ChrPtr(SMTP->from), valid->recp_room) == 0) // ...and not a subscriber ) { - cprintf("551 <%s> - This mailing list only accepts messages from subscribers.\r\n", ChrPtr(SMTP->OneRcpt)); + cprintf("551 <%s> - The message is not from a list member\r\n", ChrPtr(SMTP->OneRcpt)); free_recipients(valid); return; } -- 2.30.2