Remove only those not active.

This commit is contained in:
Dominik Pantůček 2023-04-06 21:51:05 +02:00
parent 24cc6861b2
commit eec8de4e85

View file

@ -163,7 +163,8 @@
(let loop ((ml-emails (mailman-list-members ml))) (let loop ((ml-emails (mailman-list-members ml)))
(when (not (null? ml-emails)) (when (not (null? ml-emails))
(let ((email (car ml-emails))) (let ((email (car ml-emails)))
(mailman-ensure-not-member ml email) (when (member email emails)
(mailman-ensure-not-member ml email))
(loop (cdr ml-emails)))))) (loop (cdr ml-emails))))))
) )