From 0a6f611f6c897f55347cdc637b31b2010322cbcf Mon Sep 17 00:00:00 2001 From: Michael Hampton Date: Fri, 23 Jun 2006 11:29:05 +0000 Subject: [PATCH] Mailing lists need to have confirmations logged to comply with various laws --- citadel/serv_listsub.c | 1 + 1 file changed, 1 insertion(+) diff --git a/citadel/serv_listsub.c b/citadel/serv_listsub.c index 638d6f824..ee24361a9 100644 --- a/citadel/serv_listsub.c +++ b/citadel/serv_listsub.c @@ -451,6 +451,7 @@ void do_confirm(char *room, char *token) { */ if (success) { cprintf("%d %d operation(s) confirmed.\n", CIT_OK, success); + lprintf(CTDL_NOTICE, "Mailing list: %s %ssubscribed to %s with token %s\n", email, (strlen(address_to_unsubscribe) > 0) ? "un" : "", room, token); } else { cprintf("%d Invalid token.\n", ERROR + ILLEGAL_VALUE); -- 2.39.2