summaryrefslogtreecommitdiff
path: root/debian/local
diff options
context:
space:
mode:
authorAndreas Beckmann <anbe@debian.org>2013-10-21 15:08:49 +0200
committerAndreas Beckmann <anbe@debian.org>2013-10-21 23:54:54 +0200
commit27b7bda249aaea92f4747288fd2b30fcf78d3e5f (patch)
tree345dfb75705d4c333b227df3d13418278457d5cc /debian/local
parent4f05b9e48b9905fe82df5e112ed1cce387ff7fdf (diff)
downloadsendmail-27b7bda249aaea92f4747288fd2b30fcf78d3e5f.tar.gz
move bug-script and bug-control directly to debian/
Diffstat (limited to 'debian/local')
-rw-r--r--debian/local/bug/sendmail/control1
-rw-r--r--debian/local/bug/sendmail/script.in48
2 files changed, 0 insertions, 49 deletions
diff --git a/debian/local/bug/sendmail/control b/debian/local/bug/sendmail/control
deleted file mode 100644
index 5167d2d..0000000
--- a/debian/local/bug/sendmail/control
+++ /dev/null
@@ -1 +0,0 @@
-report-with: sensible-mda rmail libmilter0
diff --git a/debian/local/bug/sendmail/script.in b/debian/local/bug/sendmail/script.in
deleted file mode 100644
index 02ffe11..0000000
--- a/debian/local/bug/sendmail/script.in
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/bin/sh
-#-----------------------------------------------------------------------------
-# $Sendmail: sendmail.bug,v @sm_version@ @sm_date@ @sm_time@ cowboy Exp $
-#
-# Copyright (c) 1998-@SM_CPYRT@ Richard Nelson. All Rights Reserved.
-#
-# Debian helper function script for Debian Sendmail bug reporting
-# Note: this file supports @SM_MINVERS@ - @SM_MAXVERS@
-#
-# Notes (to all):
-# *
-#
-# Notes (to self):
-# *
-#
-#-----------------------------------------------------------------------------
-#
-#set -e;
-DEBUG=0;
-
-# Announce
-printf "Output of $0:\n" >&3;
-
-# Show files in /etc/mail
-printf "\nls -alR /etc/mail:\n" >&3;
-ls -alR /etc/mail | grep -Eve '~$' >&3;
-
-# Extract the relevant portion of sendmail.conf
-if [ -e @sysconfdir@/mail/sendmail.conf ]; then
- printf "\nsendmail.conf:\n" >&3;
- grep -ve '^#' "@sysconfdir@/mail/sendmail.conf" >&3;
- fi;
-
-# Extract the relevant portion of sendmail.mc
-if [ -e @sysconfdir@/mail/sendmail.mc ]; then
- printf "\nsendmail.mc:\n" >&3;
- grep -Eve '^(#|dnl|$)' "@sysconfdir@/mail/sendmail.mc" >&3;
- fi;
-
-# Extract the relevant portion of submit.mc
-if [ -e @sysconfdir@/mail/submit.mc ]; then
- printf "\nsubmit.mc...\n" >&3;
- grep -Eve '^(#|dnl|$)' "@sysconfdir@/mail/submit.mc" >&3;
- fi;
-
-printf "\n" >&3;
-
-# vim:set ai et sts=4 sw=4 tw=0: