Oop, the 'mailinglist' file was leftover from older ezmlm. Not created by ezmlm-make anymore.

This commit is contained in:
Mahlon E. Smith 2017-05-30 11:08:48 -07:00
parent 33b3c08d75
commit f43372e648
2 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@ module Ezmlm
# $Id$
# Package version
VERSION = '1.1.0'
VERSION = '1.1.1'
# Suck in the components.
#
@ -35,7 +35,7 @@ module Ezmlm
def find_directories( listsdir )
listsdir = Pathname.new( listsdir )
return Pathname.glob( listsdir + '*' ).sort.select do |entry|
entry.directory? && ( entry + 'mailinglist' ).exist?
entry.directory? && ( entry + 'ezmlmrc' ).exist?
end
end