home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- rem -------------------------------------------
- rem install batch file for the Sample
- rem Mailing List for MailMan Version 1.51
- rem
- rem Usage: from the MailMan subdirectory
- rem type in "Sample" and enter
- rem
- rem Copyright (c) 1993 by
- rem St. Dragon Enterprises, Sausalito, CA
- rem All rights reserved.
- rem -------------------------------------------
-
- rem check for help request
- if !%1 == !? goto usage
- if !%1 == !/? goto usage
- if !%1 == !-? goto usage
- if !%1 == !HELP goto usage
- if !%1 == !help goto usage
- if !%1 == !Help goto usage
-
- echo I--N--S--T--A--L--L I--N--S--T--A--L--L I--N--S--T--A--L--L
- echo ----------------------------------------------------------------------
- echo . This is for the St. Dragon Mailing List manager, version 1.51
- echo .
- echo . WARNING -- WARNING -- WARNING -- WARNING -- WARNING -- WARNING
- echo .
- echo . This will install the sample mailing list: NAMES. If you are
- echo . updating an existing MailMan installation then do NOT continue
- echo . with this. You do not need to do this install and proceding might
- echo . destroy existing data. Type Control-C now.
- echo .
- echo . Be sure that you are running this install from the MailMan
- echo . subdirectory.
- echo .
- echo . Otherwise press any other key to continue...
- echo ----------------------------------------------------------------------
- pause
-
- if not exist .\data\names.* goto cont
-
- cls
- echo -------------------------------------------------
- echo . There appears to already be a mailing list
- echo . called NAMES. This installation will now
- echo . abort to prevent overwriting existing data.
- echo -------------------------------------------------
- goto end
-
- :cont
- if exist .\data\*.* goto cont2
- md .\data
-
- :cont2
- cd data
- ..\pkunzip ..\samples
-
-
- echo --------------------------------------------
- echo . The sample mailing list NAMES has been
- echo . installed in the subdirectory DATA. It
- echo . contains 50 phoney names that may be used
- echo . in learning the Mailing List Manager.
- echo --------------------------------------------
-
- :end
-