Load all lists if requested.
This commit is contained in:
parent
56e1a70068
commit
ae2ad7390d
1 changed files with 10 additions and 5 deletions
|
@ -166,11 +166,16 @@ CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|||
|
||||
;; Load ML(s) and merge them
|
||||
(define MB
|
||||
(cond ((-ml-all-)
|
||||
(define internal-ml (load-mailman-list "internal"))
|
||||
(members-base-merge-mailman MB0 internal-ml))
|
||||
(else
|
||||
MB0)))
|
||||
(if (-ml-all-)
|
||||
(let ()
|
||||
(define internal-ml (load-mailman-list "internal"))
|
||||
(members-base-merge-mailman MB0 internal-ml))
|
||||
(let ()
|
||||
(define mls (load-mailman-lists))
|
||||
(foldl (lambda (mb ml)
|
||||
(members-base-merge-mailman mb ml))
|
||||
MB0
|
||||
mls))))
|
||||
|
||||
;; If a member is specified by either id or nick, get its record
|
||||
(define mr
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue