Fixed PerlMail::Config separate namespace.
[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 BEGIN {
28         use lib $ENV{"PERLMAIL_BASEDIR"} || File::Basename::dirname($0);
29         use PerlMail::Config;
30         use PerlMail::Lib;
31         }
32
33 require Getopt::Long;
34 use POSIX qw(WIFEXITED WEXITSTATUS WIFSIGNALED WTERMSIG WIFSTOPPED WSTOPSIG);
35 require MIME::Head;     # inherits Mail::Header
36 require Mail::Address;
37
38
39 sub sendmail_show { return "\"$sendmail_orig\" ".join(",",map("\"$_\"",@ARGV)); }
40
41 sub sendmail_orig_exec
42 {
43         exec {$sendmail_orig} $0,@ARGV or die "exec(".sendmail_show()."): $!";
44         die "NOTREACHED";
45 }
46
47 Getopt::Long::Configure(
48                 "no_ignorecase",
49                 "no_getopt_compat",
50                 "bundling",
51                 # FIXME: workaround: 'unknown options' are considered the same as 'arguments'
52                 # None of ($REQUIRE_ORDER, $PERMUTE, $RETURN_IN_ORDER) can help us.
53                 # No preprocessing possible as it is hard to find option arguments.
54                 "permute",
55                 "pass_through",
56                 );
57
58 my $opt_b;
59 my $opt_Q;
60 my $opt_q;
61 my $opt_t;
62 our $opt_f;
63 our $opt_F;     # from PerlMail::Config;
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 our $is_pgp;    # from PerlMail::Config;
130 $is_pgp=(1
131                 && do { local $_=$head->mime_attr("Content-Type");          $_ && ~m#^multipart/(?:signed|encrypted)$#; }
132                 && do { local $_=$head->mime_attr("Content-Type.protocol"); $_ && ~m#^application/pgp\b#; }
133                 );
134
135 my $exitcode=0;
136 # !defined($rcpt) if we have no recipients
137 # make the list unique to prevent dupes being normally filtered by sendmail(8)
138 # one '{' is block-wrapper, another '{' is hash-indirection!
139 # hash keys are just strings, never refs!
140 # unify the list as Mail::Address instances
141 my @rcpts=(!@addr ? (undef()) : values(%{{ map({
142                 my $obj=$_;
143                 $obj=parseone $obj if !ref $obj;
144                 (!defined $obj ? () : (lc($obj->address())=>$obj));
145                 } @addr) }}));
146
147 my $stdin_body=(@rcpts<=1 ? undef() : do {      # store input data only if it will be used multiple times
148                 local $/=undef();
149                 <STDIN>;
150                 });
151 for my $rcpt (@rcpts) {
152         local @ARGV=@ARGV;
153         local $opt_f=$opt_f;
154
155         if (defined $rcpt) {    # !defined($rcpt) if we have no recipients
156                 local $_;
157                 $opt_f=FromAddress($rcpt,1)->address() if !defined $opt_f;
158                 $head->replace($from_headername,FromAddress($rcpt,0)->format()) if $from_headername;
159                 }
160
161         1;      # drop '-bm' if present as it is default anyway
162         1;      # drop '-t' if present as we are looping now for it
163         push @ARGV,"-f",$opt_f if defined $opt_f;
164         # we don't handle "Full-Name" header thus pass "-F"
165         # "From/Resent-From" should be handled by our &FromAddress
166         push @ARGV,"-F",$opt_F if defined $opt_F;
167         push @ARGV,$rcpt->address() if defined $rcpt;
168         push @ARGV,@addr_addon;
169
170         local $SIG{"PIPE"}=sub { die "Got SIGPIPE from ".sendmail_show(); };
171         local *SENDMAIL;
172         if ($opt_perlmail_dry_run) {
173                 print sendmail_show()."\n";
174                 *SENDMAIL=\*STDOUT;
175                 }
176         else {
177                 defined (my $pid=open SENDMAIL,"|-") or die "Cannot fork to spawn ".sendmail_show().": $!";
178                 sendmail_orig_exec() if !$pid; # child
179                 }
180         $head->print(\*SENDMAIL);
181         print SENDMAIL "\n";    # MIME::Head->print() eats the empty line but it doesn't print it
182         if (defined($stdin_body)) {
183                 print SENDMAIL $stdin_body;
184                 }
185         else {
186                 local $_;
187                 while (<STDIN>) {
188                         print SENDMAIL $_;
189                         }
190                 }
191
192         next if $opt_perlmail_dry_run;  # don't close our STDOUT as it is aliased to *SENDMAIL
193         close SENDMAIL or warn "close(".sendmail_show()."): $?=".join(",",
194                         (!WIFEXITED($?)   ? () : ("EXITSTATUS(".WEXITSTATUS($?).")")),
195                         (!WIFSIGNALED($?) ? () : ("TERMSIG("   .WTERMSIG($?)   .")")),
196                         (!WIFSTOPPED($?)  ? () : ("STOPSIG("   .WSTOPSIG($?)   .")")),
197                         );
198         my $gotcode=(!WIFEXITED($?) ? 99 : WEXITSTATUS($?));
199         $exitcode=$gotcode if $gotcode>$exitcode;
200         }
201 exit $exitcode;