List mailman list members.

This commit is contained in:
Dominik Pantůček 2023-04-06 15:56:08 +02:00
parent 88087f672f
commit 37775c99c7
2 changed files with 7 additions and 1 deletions

View file

@ -30,6 +30,7 @@
(
*mailman-bin*
list-mailman-lists
list-mailman-list-members
)
(import scheme
@ -57,4 +58,8 @@
(define (list-mailman-lists)
(get-mailman-output-lines "list_lists" "-b"))
;; Returns the list of members of given list
(define (list-mailman-list-members lst)
(get-mailman-output-lines "list_members" lst))
)