#!@PERL@ $rcsid = q$Id: w3mmail.cgi.in,v 1.2 2002/01/15 16:13:39 ukai Exp $; ($id = $rcsid) =~ s/^.*,v ([\d\.]*).*/$1/; ($prog=$0) =~ s/.*\///; $query = $ENV{'QUERY_STRING'}; $local_cookie = $ENV{'LOCAL_COOKIE'}; $url = $query; $SENDMAIL = '/usr/lib/sendmail'; $SENDMAIL = '/usr/sbin/sendmail' if -x '/usr/sbin/sendmail'; $qurl = &html_quote($url); if ($query =~ s/^\w+://) { $to = $query; $opt = ''; if ($to =~ /^([^?]*)\?(.*)$/) { $to = $1; $opt = $2; } %opt = &parse_opt($opt); @to = ($to); push(@to, $opt{'to'}) if ($opt{'to'}); $opt{'to'} = join(',', @to); $body = $opt{'body'}; delete $opt{'body'}; print "Content-Type: text/html\r\n"; print "w3m-control: END\r\n"; print "w3m-control: PREV_LINK\r\n"; print "\r\n"; print "W3M Mailer: $qurl\n"; print "

W3M Mailer: $qurl

\n"; print "
\n"; print "\n"; print "\n"; print "\n"; if ($opt{'from'}) { print "\n"; delete $opt{'from'}; } foreach $h ('to', 'cc', 'subject') { print "\n"; delete $opt{$h}; } foreach $h (keys %opt) { $h = &html_quote($h); $v = &html_quote($opt{$h}); print "\n"; } print "
From:" . &html_quote($opt{'from'}) . "
\u$h:"; if ($opt{$h}) { print &html_quote($opt{$h}); print ""; } else { print ""; } print "
$h$v