1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
Index: sendpage-1.0.3/sendmail2snpp
===================================================================
--- sendpage-1.0.3.orig/sendmail2snpp 2008-08-16 19:24:52.000000000 -0700
+++ sendpage-1.0.3/sendmail2snpp 2008-08-16 19:25:49.000000000 -0700
@@ -1,4 +1,4 @@
-#!/usr/local/bin/perl
+#!/bin/sh
#
# quick script for sending pages through sendmail
#
@@ -22,6 +22,11 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# http://www.gnu.org/copyleft/gpl.html
+email2page | snpp -- "$@"
+exit $?
+
+cat >/dev/null <<EOF
+
=head1 NAME
sendmail2snpp - converts sendmail messages into a page
@@ -50,14 +55,4 @@
=cut
-# to tee off the pages, use this:
-#$cmd="tee /tmp/page.$$ | email2page | snpp ".join(" ",@ARGV);
-$cmd="email2page | snpp ".join(" ",@ARGV);
-system($cmd);
-exit ($?>>8);
-
-#
-# This is really the same as a shell script doing the following:
-#
-# email2page | snpp "$@"
-#
+EOF
|