Update for the recent version.
[PerlMail.git] / perlmail-sendmail
1 #! /usr/bin/perl
2
3 #       $Id$
4 # Copyright (C) 2002-2003 Jan Kratochvil <project-PerlMail@jankratochvil.net>
5
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20
21 use vars qw($VERSION);
22 $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
23 use strict;
24 use warnings;
25
26 use File::Basename;
27 use File::Spec::Link;
28 BEGIN {
29         eval 'use lib $ENV{"PERLMAIL_BASEDIR"} || File::Basename::dirname(File::Spec::Link->resolve($0));';
30         }
31 use PerlMail::Config;
32 use PerlMail::Lib;
33
34 require Getopt::Long;
35 use POSIX qw(WIFEXITED WEXITSTATUS WIFSIGNALED WTERMSIG WIFSTOPPED WSTOPSIG);
36 require MIME::Head;     # inherits Mail::Header
37 require Mail::Address;
38
39
40 sub sendmail_show { return "\"$sendmail_orig\" ".join(",",map("\"$_\"",@ARGV)); }
41
42 sub sendmail_orig_exec
43 {
44         exec {$sendmail_orig} $0,@ARGV or die "exec(".sendmail_show()."): $!";
45         die "NOTREACHED";
46 }
47
48 Getopt::Long::Configure(
49                 "no_ignorecase",
50                 "no_getopt_compat",
51                 "bundling",
52                 # FIXME: workaround: 'unknown options' are considered the same as 'arguments'
53                 # None of ($REQUIRE_ORDER, $PERMUTE, $RETURN_IN_ORDER) can help us.
54                 # No preprocessing possible as it is hard to find option arguments.
55                 "permute",
56                 "pass_through",
57                 );
58
59 my $opt_b;
60 my $opt_Q;
61 my $opt_q;
62 my $opt_t;
63 our $opt_f;     # not exported, just for local()
64 my $opt_perlmail_dry_run;
65 my @ARGV_save=@ARGV;    # for non-bm mode
66 die if !Getopt::Long::GetOptions(
67                 "b=s"              ,\$opt_b,
68                 "Q:s"              ,\$opt_Q,
69                 "q:s"              ,\$opt_q,
70                 "t"                ,\$opt_t,
71                 "f=s"              ,\$opt_f,
72                 "F=s"              ,\$opt_F,
73                 "perlmail-dry-run+",\$opt_perlmail_dry_run,
74                 );
75 if (0
76                 # RedHat sendmail-8.12.5-7/sendmail/main.c/\QDo a quick prescan of the argument list.\E
77                 || grep({ File::Basename::basename($0) eq $_; } "newaliases","mailq","smtpd","hoststat","purgestat")
78                 # -bm: Deliver mail in the usual way (default).
79                 || (defined($opt_b) && $opt_b ne "m")
80                 || defined $opt_q       # MD_QUEUERUN
81                 || defined $opt_Q       # MD_QUEUERUN
82                 ) {
83         @ARGV=@ARGV_save;
84         sendmail_orig_exec();
85         die "NOTREACHED";
86         }
87
88 # RedHat sendmail-8.9.3-20/src/main.c/main()/\Qif (FullName != NULL)\E
89 #   for $opt_F is implemented by Mail::Address in our &FromAddress
90
91 my $head=MIME::Head->new(\*STDIN);
92 # options leave in @ARGV, addresses to @addr:
93 my @args=@ARGV; # temporary
94 @ARGV=();       # options
95 my @addr=();    # addresses
96 push @{(/^-./ ? \@ARGV : \@addr)},$_ for (@args);
97 if ($opt_t) {
98         for my $addrobj (map({ Mail::Address->parse($_); } map({ ($head->get($_)); } @h_rcpt))) {
99                 if (!$addrobj->address()) {
100                         # bogus, shouldn't happen
101                         warn "->address() not found in \"".$addrobj->format()."\"";
102                         next;
103                 }
104                 push @addr,$addrobj;
105                 }
106         }
107
108 sub matches
109 {
110         return 
111 }
112
113 my $from_headername;
114 {
115         my $muttrc_From=parseone(scalar muttrc_get("from"));    # may get undef()!; parseone() may be redundant
116         $muttrc_From=$muttrc_From->address() if $muttrc_From;
117         $opt_f=undef() if defined($opt_f) && $muttrc_From && lc($opt_f) eq lc($muttrc_From);
118         for (@h_from) {
119                 $from_headername=$_;    # leave last item in $from_headername
120                 next if !(my @from_val=$head->get($from_headername));
121                 @from_val=map({ ($_->address()); } map({ (Mail::Address->parse($_)); } @from_val));
122                 $from_headername=undef() if !(1==@from_val && $muttrc_From && lc($from_val[0]) eq lc($muttrc_From));
123                 last;
124                 }       # fallthru with $from_headername remaining set if last headername did not exist
125         # now $from_headername contains the header name to be replaced w/substituted value
126         }
127
128 # to be utilized later by &FromAddress
129 $is_pgp=(1
130                 && do { local $_=$head->mime_attr("Content-Type");          $_ && ~m#^multipart/(?:signed|encrypted)$#; }
131                 && do { local $_=$head->mime_attr("Content-Type.protocol"); $_ && ~m#^application/pgp\b#; }
132                 );
133
134 my $exitcode=0;
135 # !defined($rcpt) if we have no recipients
136 # make the list unique to prevent dupes being normally filtered by sendmail(8)
137 # one '{' is block-wrapper, another '{' is hash-indirection!
138 # hash keys are just strings, never refs!
139 # unify the list as Mail::Address instances
140 my @rcpts=(!@addr ? (undef()) : values(%{{ map({
141                 my $obj=$_;
142                 $obj=parseone $obj if !ref $obj;
143                 (!defined $obj ? () : (lc($obj->address())=>$obj));
144                 } @addr) }}));
145
146 my $stdin_body=(@rcpts<=1 ? undef() : do {      # store input data only if it will be used multiple times
147                 local $/=undef();
148                 <STDIN>;
149                 });
150 for my $rcpt (@rcpts) {
151         local @ARGV=@ARGV;
152         local $opt_f=$opt_f;
153
154         if (defined $rcpt) {    # !defined($rcpt) if we have no recipients
155                 local $_;
156                 $opt_f=FromAddress($rcpt,1)->address() if !defined $opt_f;
157                 if ($from_headername) {
158                         if (my $fromaddr=FromAddress($rcpt,0)->format()) {
159                                 $head->replace($from_headername,$fromaddr);
160                                 }
161                         }
162                 }
163
164         1;      # drop '-bm' if present as it is default anyway
165         1;      # drop '-t' if present as we are looping now for it
166         push @ARGV,"-f",$opt_f if defined $opt_f;
167         # we don't handle "Full-Name" header thus pass "-F"
168         # "From/Resent-From" should be handled by our &FromAddress
169         push @ARGV,"-F",$opt_F if defined $opt_F;
170         push @ARGV,$rcpt->address() if defined $rcpt;
171         push @ARGV,@addr_addon;
172
173         local $SIG{"PIPE"}=sub { die "Got SIGPIPE from ".sendmail_show(); };
174         local *SENDMAIL;
175         if ($opt_perlmail_dry_run) {
176                 print sendmail_show()."\n";
177                 *SENDMAIL=\*STDOUT;
178                 }
179         else {
180                 defined (my $pid=open SENDMAIL,"|-") or die "Cannot fork to spawn ".sendmail_show().": $!";
181                 sendmail_orig_exec() if !$pid; # child
182                 }
183         $head->print(\*SENDMAIL);
184         print SENDMAIL "\n";    # MIME::Head->print() eats the empty line but it doesn't print it
185         if (defined($stdin_body)) {
186                 print SENDMAIL $stdin_body;
187                 }
188         else {
189                 local $_;
190                 while (<STDIN>) {
191                         print SENDMAIL $_;
192                         }
193                 }
194
195         next if $opt_perlmail_dry_run;  # don't close our STDOUT as it is aliased to *SENDMAIL
196         close SENDMAIL or warn "close(".sendmail_show()."): $?=".join(",",
197                         (!WIFEXITED($?)   ? () : ("EXITSTATUS(".WEXITSTATUS($?).")")),
198                         (!WIFSIGNALED($?) ? () : ("TERMSIG("   .WTERMSIG($?)   .")")),
199                         (!WIFSTOPPED($?)  ? () : ("STOPSIG("   .WSTOPSIG($?)   .")")),
200                         );
201         my $gotcode=(!WIFEXITED($?) ? 99 : WEXITSTATUS($?));
202         $exitcode=$gotcode if $gotcode>$exitcode;
203         }
204 exit $exitcode;