From db8872f0770b6402c27fd2d4e9c7e74b09ee4cd9 Mon Sep 17 00:00:00 2001 From: Date: Mon, 3 Jul 2006 10:37:31 -0400 Subject: [PATCH 1/1] Added a number of small changes that didn't work because of a failed upgrade. --- ac_add_override.pl | 0 attachcheck | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 ac_add_override.pl mode change 100644 => 100755 attachcheck diff --git a/ac_add_override.pl b/ac_add_override.pl old mode 100644 new mode 100755 diff --git a/attachcheck b/attachcheck old mode 100644 new mode 100755 index ebcd6be..1c3c6f9 --- a/attachcheck +++ b/attachcheck @@ -16,7 +16,7 @@ __author__ = "Benjamin Mako Hill " ########################################### # location of the sendmail binary -sendmail = "/usr/sbin/sendmail -oi" +sendmail = "/usr/sbin/sendmail" # list of mimetype which are, for the sake of this program, not # attachments @@ -42,7 +42,7 @@ def send_message(): global sendmail sendmail = sendmail + " " + " ".join( sys.argv[1:] ) - mailpipe = os.popen("%s -t" % sendmail_with_args, 'w') + mailpipe = os.popen("%s" % sendmail, 'w') mailpipe.write( message_string ) sys.exit( mailpipe.close() ) -- 2.30.2