From 6587f6ba7d047ddc1686c080090afe7d53365bd4 Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Tue, 24 Apr 2012 11:35:56 -0700 Subject: first pass RT4 merge, RT#13852 --- rt/t/mail/fake-sendmail | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 rt/t/mail/fake-sendmail (limited to 'rt/t/mail/fake-sendmail') diff --git a/rt/t/mail/fake-sendmail b/rt/t/mail/fake-sendmail new file mode 100644 index 000000000..44c237746 --- /dev/null +++ b/rt/t/mail/fake-sendmail @@ -0,0 +1,27 @@ +#!/usr/bin/env perl + +# captures command line arguments so you can validate +# what is being generated in sendmailpipe + +use strict; +use warnings; + +die "No \$RT_MAILLOGFILE set in environment" + unless $ENV{RT_MAILLOGFILE}; +open LOG, ">", $ENV{RT_MAILLOGFILE} + or die "Can't write to $ENV{RT_MAILLOGFILE}: $!"; + +my $needs_newline; +for (@ARGV) { + if (/^-/) { + print LOG "\n" if $needs_newline++; + print LOG $_; + } else { + print LOG " $_"; + } +} +print LOG "\n"; + +1 while $_ = ; + +exit 0; -- cgit v1.2.1