Ensure not members.
This commit is contained in:
parent
d66e240078
commit
2c80787fd8
1 changed files with 5 additions and 1 deletions
|
@ -156,6 +156,10 @@
|
||||||
(mailman-ensure-member ml email)
|
(mailman-ensure-member ml email)
|
||||||
(loop (cdr emails)))))
|
(loop (cdr emails)))))
|
||||||
;; Go through all emails in ml and remove all not in emails list
|
;; Go through all emails in ml and remove all not in emails list
|
||||||
#f)
|
(let loop ((ml-emails (mailman-list-members ml)))
|
||||||
|
(when (not (null? ml-emails))
|
||||||
|
(let ((email (car ml-emails)))
|
||||||
|
(mailman-ensure-not-member ml email)
|
||||||
|
(loop (cdr ml-emails))))))
|
||||||
|
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue