summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripts/Makefile.in4
-rwxr-xr-xscripts/answer_majordomo_mail39
2 files changed, 1 insertions, 42 deletions
diff --git a/scripts/Makefile.in b/scripts/Makefile.in
index fa9271d87..6088773ac 100644
--- a/scripts/Makefile.in
+++ b/scripts/Makefile.in
@@ -40,9 +40,7 @@ SCRIPTSDIR= $(prefix)/scripts
SHELL= /bin/sh
-SCRIPTS= \
- answer_majordomo_mail mailcmd mailowner post driver \
- join leave
+SCRIPTS= mailcmd mailowner post driver join leave
# Modes for directories and executables created by the install
# process. Default to group-writable directories but
diff --git a/scripts/answer_majordomo_mail b/scripts/answer_majordomo_mail
deleted file mode 100755
index 648046b9a..000000000
--- a/scripts/answer_majordomo_mail
+++ /dev/null
@@ -1,39 +0,0 @@
-#! /usr/bin/env python
-#
-# 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.
-
-# This is another script that's really just for my use, but
-# feel free to use it if you know how...
-
-import sys
-import os
-import paths
-from Mailman import Message
-from Mailman import Utils
-
-try:
- sys.stderr = Utils.StampedLogger("error",
- label = 'answer_majordomo_mail',
- manual_reprime=1)
-except IOError:
- pass # Oh well - SOL on redirect, errors show thru.
-
-msg = Message.Message(sys.stdin)
-txtfile = os.path.join(paths.prefix, 'misc/majordomo.answer.txt')
-text = open(txtfile, 'r').read()
-Utils.SendTextToUser('Your mail to Majordomo...', text, msg.GetSender(),
- 'mailman-owner')