summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2001-09-07 23:21:46 +0000
committerbwarsaw2001-09-07 23:21:46 +0000
commiteb0f07a1474dfd8c0370ff4817b3cdbf62461278 (patch)
tree0fbc6084be32d9317a5bd6b2b70f6df041b30308
parentebf27ad97dbf4a5efee64bcbe2f0aac6825f0945 (diff)
downloadmailman-eb0f07a1474dfd8c0370ff4817b3cdbf62461278.tar.gz
mailman-eb0f07a1474dfd8c0370ff4817b3cdbf62461278.tar.zst
mailman-eb0f07a1474dfd8c0370ff4817b3cdbf62461278.zip
These are old and broken, and no longer necessary/supported.
-rw-r--r--filters/Makefile.in70
-rwxr-xr-xfilters/bowa-strip33
2 files changed, 0 insertions, 103 deletions
diff --git a/filters/Makefile.in b/filters/Makefile.in
deleted file mode 100644
index 3f441d86e..000000000
--- a/filters/Makefile.in
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright (C) 1998,1999,2000 by the Free Software Foundation, Inc.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-# NOTE: Makefile.in is converted into Makefile by the configure script
-# in the parent directory. Once configure has run, you can recreate
-# the Makefile by running just config.status.
-
-# Variables set by configure
-
-VPATH= @srcdir@
-srcdir= @srcdir@
-bindir= @bindir@
-prefix= @prefix@
-exec_prefix= @exec_prefix@
-var_prefix= @VAR_PREFIX@
-
-CC= @CC@
-CHMOD= @CHMOD@
-INSTALL= @INSTALL@
-
-DEFS= @DEFS@
-
-# Customizable but not set by configure
-
-OPT= @OPT@
-CFLAGS= $(OPT) $(DEFS)
-FILTERSDIR= $(var_prefix)/filters
-
-SHELL= /bin/sh
-
-FILTERS= bowa-strip
-
-# Modes for directories and executables created by the install
-# process. Default to group-writable directories but
-# user-only-writable for executables.
-DIRMODE= 775
-EXEMODE= 755
-FILEMODE= 644
-INSTALL_PROGRAM=$(INSTALL) -m $(EXEMODE)
-
-
-# Rules
-
-all:
-
-install:
- for f in $(FILTERS); \
- do \
- $(INSTALL) -m $(FILEMODE) $$f $(FILTERSDIR); \
- done
-
-finish:
-
-clean:
-
-distclean:
- -rm Makefile
diff --git a/filters/bowa-strip b/filters/bowa-strip
deleted file mode 100755
index 965f023d5..000000000
--- a/filters/bowa-strip
+++ /dev/null
@@ -1,33 +0,0 @@
-#! /usr/bin/env python
-#
-# Copyright (C) 1998 by the Free Software Foundation, Inc.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-import sys, __main__, string
-
-input = sys.stdin.readlines()
-
-if input[-4] == '*********************Reminder**********************\n':
- input[-5] = ''
- input[-4] = ''
- input[-3] = ''
- input[-2] = ''
- input[-1] = ''
-
-__main__.mailman_text = string.join(input,'')
-
-
-