Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1062 lines
31 KiB

  1. @rem = '--*-Perl-*--
  2. @echo off
  3. if "%OS%" == "Windows_NT" goto WinNT
  4. perl -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
  5. goto endofperl
  6. :WinNT
  7. perl -x -S "%0" %*
  8. if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl
  9. if %errorlevel% == 9009 echo You do not have Perl in your PATH.
  10. goto endofperl
  11. @rem ';
  12. #!perl
  13. #line 14
  14. eval 'exec P:\Apps\ActivePerl\temp\bin\MSWin32-x86-object\perl.exe -S $0 ${1+"$@"}'
  15. if $running_under_some_shell;
  16. my $config_tag1 = '5.00503 - ';
  17. my $patchlevel_date = 939949863;
  18. my $patch_tags = '+ACTIVEPERL_LOCAL_PATCHES_ENTRY ';
  19. my @patches = (
  20. 'ACTIVEPERL_LOCAL_PATCHES_ENTRY'
  21. );
  22. use Config;
  23. use Getopt::Std;
  24. use strict;
  25. sub paraprint;
  26. BEGIN {
  27. eval "use Mail::Send;";
  28. $::HaveSend = ($@ eq "");
  29. eval "use Mail::Util;";
  30. $::HaveUtil = ($@ eq "");
  31. };
  32. my $Version = "1.26";
  33. # Changed in 1.06 to skip Mail::Send and Mail::Util if not available.
  34. # Changed in 1.07 to see more sendmail execs, and added pipe output.
  35. # Changed in 1.08 to use correct address for sendmail.
  36. # Changed in 1.09 to close the REP file before calling it up in the editor.
  37. # Also removed some old comments duplicated elsewhere.
  38. # Changed in 1.10 to run under VMS without Mail::Send; also fixed
  39. # temp filename generation.
  40. # Changed in 1.11 to clean up some text and removed Mail::Send deactivator.
  41. # Changed in 1.12 to check for editor errors, make save/send distinction
  42. # clearer and add $ENV{REPLYTO}.
  43. # Changed in 1.13 to hopefully make it more difficult to accidentally
  44. # send mail
  45. # Changed in 1.14 to make the prompts a little more clear on providing
  46. # helpful information. Also let file read fail gracefully.
  47. # Changed in 1.15 to add warnings to stop people using perlbug for non-bugs.
  48. # Also report selected environment variables.
  49. # Changed in 1.16 to include @INC, and allow user to re-edit if no changes.
  50. # Changed in 1.17 Win32 support added. GSAR 97-04-12
  51. # Changed in 1.18 add '-ok' option for reporting build success. CFR 97-06-18
  52. # Changed in 1.19 '-ok' default not '-v'
  53. # add local patch information
  54. # warn on '-ok' if this is an old system; add '-okay'
  55. # Changed in 1.20 Added patchlevel.h reading and version/config checks
  56. # Changed in 1.21 Added '-nok' for reporting build failure DFD 98-05-05
  57. # Changed in 1.22 Heavy reformatting & minor bugfixes HVDS 98-05-10
  58. # Changed in 1.23 Restore -ok(ay): say 'success'; don't prompt
  59. # Changed in 1.24 Added '-F<file>' to save report HVDS 98-07-01
  60. # Changed in 1.25 Warn on failure to open save file. HVDS 98-07-12
  61. # Changed in 1.26 Don't require -t STDIN for -ok. HVDS 98-07-15
  62. # TODO: - Allow the user to re-name the file on mail failure, and
  63. # make sure failure (transmission-wise) of Mail::Send is
  64. # accounted for.
  65. # - Test -b option
  66. my( $file, $usefile, $cc, $address, $perlbug, $testaddress, $filename,
  67. $subject, $from, $verbose, $ed, $outfile,
  68. $fh, $me, $Is_MSWin32, $Is_VMS, $msg, $body, $andcc, %REP, $ok);
  69. my $config_tag2 = "$] - $Config{cf_time}";
  70. Init();
  71. if ($::opt_h) { Help(); exit; }
  72. if ($::opt_d) { Dump(*STDOUT); exit; }
  73. if (!-t STDIN && !($ok and not $::opt_n)) {
  74. paraprint <<EOF;
  75. Please use perlbug interactively. If you want to
  76. include a file, you can use the -f switch.
  77. EOF
  78. die "\n";
  79. }
  80. if (!-t STDOUT && !$outfile) { Dump(*STDOUT); exit; }
  81. Query();
  82. Edit() unless $usefile || ($ok and not $::opt_n);
  83. NowWhat();
  84. Send();
  85. exit;
  86. sub Init {
  87. # -------- Setup --------
  88. $Is_MSWin32 = $^O eq 'MSWin32';
  89. $Is_VMS = $^O eq 'VMS';
  90. if (!getopts("dhva:s:b:f:F:r:e:SCc:to:n:")) { Help(); exit; };
  91. # This comment is needed to notify metaconfig that we are
  92. # using the $perladmin, $cf_by, and $cf_time definitions.
  93. # -------- Configuration ---------
  94. # perlbug address
  95. $perlbug = '[email protected]';
  96. # Test address
  97. $testaddress = '[email protected]';
  98. # Target address
  99. $address = $::opt_a || ($::opt_t ? $testaddress : $perlbug);
  100. # Users address, used in message and in Reply-To header
  101. $from = $::opt_r || "";
  102. # Include verbose configuration information
  103. $verbose = $::opt_v || 0;
  104. # Subject of bug-report message
  105. $subject = $::opt_s || "";
  106. # Send a file
  107. $usefile = ($::opt_f || 0);
  108. # File to send as report
  109. $file = $::opt_f || "";
  110. # File to output to
  111. $outfile = $::opt_F || "";
  112. # Body of report
  113. $body = $::opt_b || "";
  114. # Editor
  115. $ed = $::opt_e || $ENV{VISUAL} || $ENV{EDITOR} || $ENV{EDIT}
  116. || ($Is_VMS && "edit/tpu")
  117. || ($Is_MSWin32 && "notepad")
  118. || "vi";
  119. # Not OK - provide build failure template by finessing OK report
  120. if ($::opt_n) {
  121. if (substr($::opt_n, 0, 2) eq 'ok' ) {
  122. $::opt_o = substr($::opt_n, 1);
  123. } else {
  124. Help();
  125. exit();
  126. }
  127. }
  128. # OK - send "OK" report for build on this system
  129. $ok = 0;
  130. if ($::opt_o) {
  131. if ($::opt_o eq 'k' or $::opt_o eq 'kay') {
  132. my $age = time - $patchlevel_date;
  133. if ($::opt_o eq 'k' and $age > 60 * 24 * 60 * 60 ) {
  134. my $date = localtime $patchlevel_date;
  135. print <<"EOF";
  136. "perlbug -ok" and "perlbug -nok" do not report on Perl versions which
  137. are more than 60 days old. This Perl version was constructed on
  138. $date. If you really want to report this, use
  139. "perlbug -okay" or "perlbug -nokay".
  140. EOF
  141. exit();
  142. }
  143. # force these options
  144. unless ($::opt_n) {
  145. $::opt_S = 1; # don't prompt for send
  146. $::opt_b = 1; # we have a body
  147. $body = "Perl reported to build OK on this system.\n";
  148. }
  149. $::opt_C = 1; # don't send a copy to the local admin
  150. $::opt_s = 1; # we have a subject line
  151. $subject = ($::opt_n ? 'Not ' : '')
  152. . "OK: perl $] ${patch_tags}on"
  153. ." $::Config{'archname'} $::Config{'osvers'} $subject";
  154. $ok = 1;
  155. } else {
  156. Help();
  157. exit();
  158. }
  159. }
  160. # Possible administrator addresses, in order of confidence
  161. # (Note that cf_email is not mentioned to metaconfig, since
  162. # we don't really want it. We'll just take it if we have to.)
  163. #
  164. # This has to be after the $ok stuff above because of the way
  165. # that $::opt_C is forced.
  166. $cc = $::opt_C ? "" : (
  167. $::opt_c || $::Config{'perladmin'}
  168. || $::Config{'cf_email'} || $::Config{'cf_by'}
  169. );
  170. # My username
  171. $me = $Is_MSWin32 ? $ENV{'USERNAME'}
  172. : $^O eq 'os2' ? $ENV{'USER'} || $ENV{'LOGNAME'}
  173. : eval { getpwuid($<) }; # May be missing
  174. $from = $::Config{'cf_email'}
  175. if !$from && $::Config{'cf_email'} && $::Config{'cf_by'} && $me &&
  176. ($me eq $::Config{'cf_by'});
  177. } # sub Init
  178. sub Query {
  179. # Explain what perlbug is
  180. unless ($ok) {
  181. paraprint <<EOF;
  182. This program provides an easy way to create a message reporting a bug
  183. in perl, and e-mail it to $address. It is *NOT* intended for
  184. sending test messages or simply verifying that perl works, *NOR* is it
  185. intended for reporting bugs in third-party perl modules. It is *ONLY*
  186. a means of reporting verifiable problems with the core perl distribution,
  187. and any solutions to such problems, to the people who maintain perl.
  188. If you're just looking for help with perl, try posting to the Usenet
  189. newsgroup comp.lang.perl.misc. If you're looking for help with using
  190. perl with CGI, try posting to comp.infosystems.www.programming.cgi.
  191. EOF
  192. }
  193. # Prompt for subject of message, if needed
  194. unless ($subject) {
  195. paraprint <<EOF;
  196. First of all, please provide a subject for the
  197. message. It should be a concise description of
  198. the bug or problem. "perl bug" or "perl problem"
  199. is not a concise description.
  200. EOF
  201. print "Subject: ";
  202. $subject = <>;
  203. my $err = 0;
  204. while ($subject !~ /\S/) {
  205. print "\nPlease enter a subject: ";
  206. $subject = <>;
  207. if ($err++ > 5) {
  208. die "Aborting.\n";
  209. }
  210. }
  211. chop $subject;
  212. }
  213. # Prompt for return address, if needed
  214. unless ($from) {
  215. # Try and guess return address
  216. my $guess;
  217. $guess = $ENV{'REPLY-TO'} || $ENV{'REPLYTO'} || '';
  218. unless ($guess) {
  219. my $domain;
  220. if ($::HaveUtil) {
  221. $domain = Mail::Util::maildomain();
  222. } elsif ($Is_MSWin32) {
  223. $domain = $ENV{'USERDOMAIN'};
  224. } else {
  225. require Sys::Hostname;
  226. $domain = Sys::Hostname::hostname();
  227. }
  228. if ($domain) {
  229. if ($Is_VMS && !$::Config{'d_socket'}) {
  230. $guess = "$domain\:\:$me";
  231. } else {
  232. $guess = "$me\@$domain" if $domain;
  233. }
  234. }
  235. }
  236. if ($guess) {
  237. unless ($ok) {
  238. paraprint <<EOF;
  239. Your e-mail address will be useful if you need to be contacted. If the
  240. default shown is not your full internet e-mail address, please correct it.
  241. EOF
  242. }
  243. } else {
  244. paraprint <<EOF;
  245. So that you may be contacted if necessary, please enter
  246. your full internet e-mail address here.
  247. EOF
  248. }
  249. if ($ok && $guess) {
  250. # use it
  251. $from = $guess;
  252. } else {
  253. # verify it
  254. print "Your address [$guess]: ";
  255. $from = <>;
  256. chop $from;
  257. $from = $guess if $from eq '';
  258. }
  259. }
  260. if ($from eq $cc or $me eq $cc) {
  261. # Try not to copy ourselves
  262. $cc = "yourself";
  263. }
  264. # Prompt for administrator address, unless an override was given
  265. if( !$::opt_C and !$::opt_c ) {
  266. paraprint <<EOF;
  267. A copy of this report can be sent to your local
  268. perl administrator. If the address is wrong, please
  269. correct it, or enter 'none' or 'yourself' to not send
  270. a copy.
  271. EOF
  272. print "Local perl administrator [$cc]: ";
  273. my $entry = scalar <>;
  274. chop $entry;
  275. if ($entry ne "") {
  276. $cc = $entry;
  277. $cc = '' if $me eq $cc;
  278. }
  279. }
  280. $cc = '' if $cc =~ /^(none|yourself|me|myself|ourselves)$/i;
  281. $andcc = " and $cc" if $cc;
  282. # Prompt for editor, if no override is given
  283. editor:
  284. unless ($::opt_e || $::opt_f || $::opt_b) {
  285. paraprint <<EOF;
  286. Now you need to supply the bug report. Try to make
  287. the report concise but descriptive. Include any
  288. relevant detail. If you are reporting something
  289. that does not work as you think it should, please
  290. try to include example of both the actual
  291. result, and what you expected.
  292. Some information about your local
  293. perl configuration will automatically be included
  294. at the end of the report. If you are using any
  295. unusual version of perl, please try and confirm
  296. exactly which versions are relevant.
  297. You will probably want to use an editor to enter
  298. the report. If "$ed" is the editor you want
  299. to use, then just press Enter, otherwise type in
  300. the name of the editor you would like to use.
  301. If you would like to use a prepared file, type
  302. "file", and you will be asked for the filename.
  303. EOF
  304. print "Editor [$ed]: ";
  305. my $entry =scalar <>;
  306. chop $entry;
  307. $usefile = 0;
  308. if ($entry eq "file") {
  309. $usefile = 1;
  310. } elsif ($entry ne "") {
  311. $ed = $entry;
  312. }
  313. }
  314. # Generate scratch file to edit report in
  315. $filename = filename();
  316. # Prompt for file to read report from, if needed
  317. if ($usefile and !$file) {
  318. filename:
  319. paraprint <<EOF;
  320. What is the name of the file that contains your report?
  321. EOF
  322. print "Filename: ";
  323. my $entry = scalar <>;
  324. chop $entry;
  325. if ($entry eq "") {
  326. paraprint <<EOF;
  327. No filename? I'll let you go back and choose an editor again.
  328. EOF
  329. goto editor;
  330. }
  331. unless (-f $entry and -r $entry) {
  332. paraprint <<EOF;
  333. I'm sorry, but I can't read from `$entry'. Maybe you mistyped the name of
  334. the file? If you don't want to send a file, just enter a blank line and you
  335. can get back to the editor selection.
  336. EOF
  337. goto filename;
  338. }
  339. $file = $entry;
  340. }
  341. # Generate report
  342. open(REP,">$filename");
  343. my $reptype = !$ok ? "bug" : $::opt_n ? "build failure" : "success";
  344. print REP <<EOF;
  345. This is a $reptype report for perl from $from,
  346. generated with the help of perlbug $Version running under perl $].
  347. EOF
  348. if ($body) {
  349. print REP $body;
  350. } elsif ($usefile) {
  351. open(F, "<$file")
  352. or die "Unable to read report file from `$file': $!\n";
  353. while (<F>) {
  354. print REP $_
  355. }
  356. close(F);
  357. } else {
  358. print REP <<EOF;
  359. -----------------------------------------------------------------
  360. [Please enter your report here]
  361. [Please do not change anything below this line]
  362. -----------------------------------------------------------------
  363. EOF
  364. }
  365. Dump(*REP);
  366. close(REP);
  367. # read in the report template once so that
  368. # we can track whether the user does any editing.
  369. # yes, *all* whitespace is ignored.
  370. open(REP, "<$filename");
  371. while (<REP>) {
  372. s/\s+//g;
  373. $REP{$_}++;
  374. }
  375. close(REP);
  376. } # sub Query
  377. sub Dump {
  378. local(*OUT) = @_;
  379. print REP "\n---\n";
  380. print REP "This perlbug was built using Perl $config_tag1\n",
  381. "It is being executed now by Perl $config_tag2.\n\n"
  382. if $config_tag2 ne $config_tag1;
  383. print OUT <<EOF;
  384. Site configuration information for perl $]:
  385. EOF
  386. if ($::Config{cf_by} and $::Config{cf_time}) {
  387. print OUT "Configured by $::Config{cf_by} at $::Config{cf_time}.\n\n";
  388. }
  389. print OUT Config::myconfig;
  390. if (@patches) {
  391. print OUT join "\n ", "Locally applied patches:", @patches;
  392. print OUT "\n";
  393. };
  394. print OUT <<EOF;
  395. ---
  396. \@INC for perl $]:
  397. EOF
  398. for my $i (@INC) {
  399. print OUT " $i\n";
  400. }
  401. print OUT <<EOF;
  402. ---
  403. Environment for perl $]:
  404. EOF
  405. for my $env (sort
  406. (qw(PATH LD_LIBRARY_PATH LANG PERL_BADLANG SHELL HOME LOGDIR LANGUAGE),
  407. grep /^(?:PERL|LC_)/, keys %ENV)
  408. ) {
  409. print OUT " $env",
  410. exists $ENV{$env} ? "=$ENV{$env}" : ' (unset)',
  411. "\n";
  412. }
  413. if ($verbose) {
  414. print OUT "\nComplete configuration data for perl $]:\n\n";
  415. my $value;
  416. foreach (sort keys %::Config) {
  417. $value = $::Config{$_};
  418. $value =~ s/'/\\'/g;
  419. print OUT "$_='$value'\n";
  420. }
  421. }
  422. } # sub Dump
  423. sub Edit {
  424. # Edit the report
  425. if ($usefile || $body) {
  426. paraprint <<EOF;
  427. Please make sure that the name of the editor you want to use is correct.
  428. EOF
  429. print "Editor [$ed]: ";
  430. my $entry =scalar <>;
  431. chop $entry;
  432. $ed = $entry unless $entry eq '';
  433. }
  434. tryagain:
  435. my $sts = system("$ed $filename");
  436. if ($sts) {
  437. paraprint <<EOF;
  438. The editor you chose (`$ed') could apparently not be run!
  439. Did you mistype the name of your editor? If so, please
  440. correct it here, otherwise just press Enter.
  441. EOF
  442. print "Editor [$ed]: ";
  443. my $entry =scalar <>;
  444. chop $entry;
  445. if ($entry ne "") {
  446. $ed = $entry;
  447. goto tryagain;
  448. } else {
  449. paraprint <<EOF;
  450. You may want to save your report to a file, so you can edit and mail it
  451. yourself.
  452. EOF
  453. }
  454. }
  455. return if ($ok and not $::opt_n) || $body;
  456. # Check that we have a report that has some, eh, report in it.
  457. my $unseen = 0;
  458. open(REP, "<$filename");
  459. # a strange way to check whether any significant editing
  460. # have been done: check whether any new non-empty lines
  461. # have been added. Yes, the below code ignores *any* space
  462. # in *any* line.
  463. while (<REP>) {
  464. s/\s+//g;
  465. $unseen++ if $_ ne '' and not exists $REP{$_};
  466. }
  467. while ($unseen == 0) {
  468. paraprint <<EOF;
  469. I am sorry but it looks like you did not report anything.
  470. EOF
  471. print "Action (Retry Edit/Cancel) ";
  472. my ($action) = scalar(<>);
  473. if ($action =~ /^[re]/i) { # <R>etry <E>dit
  474. goto tryagain;
  475. } elsif ($action =~ /^[cq]/i) { # <C>ancel, <Q>uit
  476. Cancel();
  477. }
  478. }
  479. } # sub Edit
  480. sub Cancel {
  481. 1 while unlink($filename); # remove all versions under VMS
  482. print "\nCancelling.\n";
  483. exit(0);
  484. }
  485. sub NowWhat {
  486. # Report is done, prompt for further action
  487. if( !$::opt_S ) {
  488. while(1) {
  489. paraprint <<EOF;
  490. Now that you have completed your report, would you like to send
  491. the message to $address$andcc, display the message on
  492. the screen, re-edit it, or cancel without sending anything?
  493. You may also save the message as a file to mail at another time.
  494. EOF
  495. retry:
  496. print "Action (Send/Display/Edit/Cancel/Save to File): ";
  497. my $action = scalar <>;
  498. chop $action;
  499. if ($action =~ /^(f|sa)/i) { # <F>ile/<Sa>ve
  500. print "\n\nName of file to save message in [perlbug.rep]: ";
  501. my $file = scalar <>;
  502. chop $file;
  503. $file = "perlbug.rep" if $file eq "";
  504. unless (open(FILE, ">$file")) {
  505. print "\nError opening $file: $!\n\n";
  506. goto retry;
  507. }
  508. open(REP, "<$filename");
  509. print FILE "To: $address\nSubject: $subject\n";
  510. print FILE "Cc: $cc\n" if $cc;
  511. print FILE "Reply-To: $from\n" if $from;
  512. print FILE "\n";
  513. while (<REP>) { print FILE }
  514. close(REP);
  515. close(FILE);
  516. print "\nMessage saved in `$file'.\n";
  517. exit;
  518. } elsif ($action =~ /^(d|l|sh)/i ) { # <D>isplay, <L>ist, <Sh>ow
  519. # Display the message
  520. open(REP, "<$filename");
  521. while (<REP>) { print $_ }
  522. close(REP);
  523. } elsif ($action =~ /^se/i) { # <S>end
  524. # Send the message
  525. print "Are you certain you want to send this message?\n"
  526. . 'Please type "yes" if you are: ';
  527. my $reply = scalar <STDIN>;
  528. chop $reply;
  529. if ($reply eq "yes") {
  530. last;
  531. } else {
  532. paraprint <<EOF;
  533. That wasn't a clear "yes", so I won't send your message. If you are sure
  534. your message should be sent, type in "yes" (without the quotes) at the
  535. confirmation prompt.
  536. EOF
  537. }
  538. } elsif ($action =~ /^[er]/i) { # <E>dit, <R>e-edit
  539. # edit the message
  540. Edit();
  541. } elsif ($action =~ /^[qc]/i) { # <C>ancel, <Q>uit
  542. Cancel();
  543. } elsif ($action =~ /^s/) {
  544. paraprint <<EOF;
  545. I'm sorry, but I didn't understand that. Please type "send" or "save".
  546. EOF
  547. }
  548. }
  549. }
  550. } # sub NowWhat
  551. sub Send {
  552. # Message has been accepted for transmission -- Send the message
  553. if ($outfile) {
  554. open SENDMAIL, ">$outfile" or die "Couldn't open '$outfile': $!\n";
  555. goto sendout;
  556. }
  557. if ($::HaveSend) {
  558. $msg = new Mail::Send Subject => $subject, To => $address;
  559. $msg->cc($cc) if $cc;
  560. $msg->add("Reply-To",$from) if $from;
  561. $fh = $msg->open;
  562. open(REP, "<$filename");
  563. while (<REP>) { print $fh $_ }
  564. close(REP);
  565. $fh->close;
  566. print "\nMessage sent.\n";
  567. } elsif ($Is_VMS) {
  568. if ( ($address =~ /@/ and $address !~ /^\w+%"/) or
  569. ($cc =~ /@/ and $cc !~ /^\w+%"/) ) {
  570. my $prefix;
  571. foreach (qw[ IN MX SMTP UCX PONY WINS ], '') {
  572. $prefix = "$_%", last if $ENV{"MAIL\$PROTOCOL_$_"};
  573. }
  574. $address = qq[${prefix}"$address"] unless $address =~ /^\w+%"/;
  575. $cc = qq[${prefix}"$cc"] unless !$cc || $cc =~ /^\w+%"/;
  576. }
  577. $subject =~ s/"/""/g; $address =~ s/"/""/g; $cc =~ s/"/""/g;
  578. my $sts = system(qq[mail/Subject="$subject" $filename. "$address","$cc"]);
  579. if ($sts) {
  580. die <<EOF;
  581. Can't spawn off mail
  582. (leaving bug report in $filename): $sts
  583. EOF
  584. }
  585. } else {
  586. my $sendmail = "";
  587. for (qw(/usr/lib/sendmail /usr/sbin/sendmail /usr/ucblib/sendmail)) {
  588. $sendmail = $_, last if -e $_;
  589. }
  590. if ($^O eq 'os2' and $sendmail eq "") {
  591. my $path = $ENV{PATH};
  592. $path =~ s:\\:/: ;
  593. my @path = split /$Config{'path_sep'}/, $path;
  594. for (@path) {
  595. $sendmail = "$_/sendmail", last if -e "$_/sendmail";
  596. $sendmail = "$_/sendmail.exe", last if -e "$_/sendmail.exe";
  597. }
  598. }
  599. paraprint(<<"EOF"), die "\n" if $sendmail eq "";
  600. I am terribly sorry, but I cannot find sendmail, or a close equivalent, and
  601. the perl package Mail::Send has not been installed, so I can't send your bug
  602. report. We apologize for the inconvenience.
  603. So you may attempt to find some way of sending your message, it has
  604. been left in the file `$filename'.
  605. EOF
  606. open(SENDMAIL, "|$sendmail -t") || die "'|$sendmail -t' failed: $!";
  607. sendout:
  608. print SENDMAIL "To: $address\n";
  609. print SENDMAIL "Subject: $subject\n";
  610. print SENDMAIL "Cc: $cc\n" if $cc;
  611. print SENDMAIL "Reply-To: $from\n" if $from;
  612. print SENDMAIL "\n\n";
  613. open(REP, "<$filename");
  614. while (<REP>) { print SENDMAIL $_ }
  615. close(REP);
  616. if (close(SENDMAIL)) {
  617. printf "\nMessage %s.\n", $outfile ? "saved" : "sent";
  618. } else {
  619. warn "\nSendmail returned status '", $? >> 8, "'\n";
  620. }
  621. }
  622. 1 while unlink($filename); # remove all versions under VMS
  623. } # sub Send
  624. sub Help {
  625. print <<EOF;
  626. A program to help generate bug reports about perl5, and mail them.
  627. It is designed to be used interactively. Normally no arguments will
  628. be needed.
  629. Usage:
  630. $0 [-v] [-a address] [-s subject] [-b body | -f inpufile ] [ -F outputfile ]
  631. [-r returnaddress] [-e editor] [-c adminaddress | -C] [-S] [-t] [-h]
  632. $0 [-v] [-r returnaddress] [-ok | -okay | -nok | -nokay]
  633. Simplest usage: run "$0", and follow the prompts.
  634. Options:
  635. -v Include Verbose configuration data in the report
  636. -f File containing the body of the report. Use this to
  637. quickly send a prepared message.
  638. -F File to output the resulting mail message to, instead of mailing.
  639. -S Send without asking for confirmation.
  640. -a Address to send the report to. Defaults to `$address'.
  641. -c Address to send copy of report to. Defaults to `$cc'.
  642. -C Don't send copy to administrator.
  643. -s Subject to include with the message. You will be prompted
  644. if you don't supply one on the command line.
  645. -b Body of the report. If not included on the command line, or
  646. in a file with -f, you will get a chance to edit the message.
  647. -r Your return address. The program will ask you to confirm
  648. this if you don't give it here.
  649. -e Editor to use.
  650. -t Test mode. The target address defaults to `$testaddress'.
  651. -d Data mode (the default if you redirect or pipe output.)
  652. This prints out your configuration data, without mailing
  653. anything. You can use this with -v to get more complete data.
  654. -ok Report successful build on this system to perl porters
  655. (use alone or with -v). Only use -ok if *everything* was ok:
  656. if there were *any* problems at all, use -nok.
  657. -okay As -ok but allow report from old builds.
  658. -nok Report unsuccessful build on this system to perl porters
  659. (use alone or with -v). You must describe what went wrong
  660. in the body of the report which you will be asked to edit.
  661. -nokay As -nok but allow report from old builds.
  662. -h Print this help message.
  663. EOF
  664. }
  665. sub filename {
  666. my $dir = $Is_VMS ? 'sys$scratch:'
  667. : ($Is_MSWin32 && $ENV{'TEMP'}) ? $ENV{'TEMP'}
  668. : '/tmp/';
  669. $filename = "bugrep0$$";
  670. $dir .= "\\" if $Is_MSWin32 and $dir !~ m|[\\/]$|;
  671. $filename++ while -e "$dir$filename";
  672. $filename = "$dir$filename";
  673. }
  674. sub paraprint {
  675. my @paragraphs = split /\n{2,}/, "@_";
  676. print "\n\n";
  677. for (@paragraphs) { # implicit local $_
  678. s/(\S)\s*\n/$1 /g;
  679. write;
  680. print "\n";
  681. }
  682. }
  683. format STDOUT =
  684. ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< ~~
  685. $_
  686. .
  687. __END__
  688. =head1 NAME
  689. perlbug - how to submit bug reports on Perl
  690. =head1 SYNOPSIS
  691. B<perlbug> S<[ B<-v> ]> S<[ B<-a> I<address> ]> S<[ B<-s> I<subject> ]>
  692. S<[ B<-b> I<body> | B<-f> I<inputfile> ]> S<[ B<-F> I<outputfile> ]>
  693. S<[ B<-r> I<returnaddress> ]>
  694. S<[ B<-e> I<editor> ]> S<[ B<-c> I<adminaddress> | B<-C> ]>
  695. S<[ B<-S> ]> S<[ B<-t> ]> S<[ B<-d> ]> S<[ B<-h> ]>
  696. B<perlbug> S<[ B<-v> ]> S<[ B<-r> I<returnaddress> ]>
  697. S<[ B<-ok> | B<-okay> | B<-nok> | B<-nokay> ]>
  698. =head1 DESCRIPTION
  699. A program to help generate bug reports about perl or the modules that
  700. come with it, and mail them.
  701. If you have found a bug with a non-standard port (one that was not part
  702. of the I<standard distribution>), a binary distribution, or a
  703. non-standard module (such as Tk, CGI, etc), then please see the
  704. documentation that came with that distribution to determine the correct
  705. place to report bugs.
  706. C<perlbug> is designed to be used interactively. Normally no arguments
  707. will be needed. Simply run it, and follow the prompts.
  708. If you are unable to run B<perlbug> (most likely because you don't have
  709. a working setup to send mail that perlbug recognizes), you may have to
  710. compose your own report, and email it to B<[email protected]>. You might
  711. find the B<-d> option useful to get summary information in that case.
  712. In any case, when reporting a bug, please make sure you have run through
  713. this checklist:
  714. =over 4
  715. =item What version of perl you are running?
  716. Type C<perl -v> at the command line to find out.
  717. =item Are you running the latest released version of perl?
  718. Look at http://www.perl.com/ to find out. If it is not the latest
  719. released version, get that one and see whether your bug has been
  720. fixed. Note that bug reports about old versions of perl, especially
  721. those prior to the 5.0 release, are likely to fall upon deaf ears.
  722. You are on your own if you continue to use perl1 .. perl4.
  723. =item Are you sure what you have is a bug?
  724. A significant number of the bug reports we get turn out to be documented
  725. features in perl. Make sure the behavior you are witnessing doesn't fall
  726. under that category, by glancing through the documentation that comes
  727. with perl (we'll admit this is no mean task, given the sheer volume of
  728. it all, but at least have a look at the sections that I<seem> relevant).
  729. Be aware of the familiar traps that perl programmers of various hues
  730. fall into. See L<perltrap>.
  731. Check in L<perldiag> to see what any Perl error message(s) mean.
  732. If message isn't in perldiag, it probably isn't generated by Perl.
  733. Consult your operating system documentation instead.
  734. If you are on a non-UNIX platform check also L<perlport>, some
  735. features may not be implemented or work differently.
  736. Try to study the problem under the perl debugger, if necessary.
  737. See L<perldebug>.
  738. =item Do you have a proper test case?
  739. The easier it is to reproduce your bug, the more likely it will be
  740. fixed, because if no one can duplicate the problem, no one can fix it.
  741. A good test case has most of these attributes: fewest possible number
  742. of lines; few dependencies on external commands, modules, or
  743. libraries; runs on most platforms unimpeded; and is self-documenting.
  744. A good test case is almost always a good candidate to be on the perl
  745. test suite. If you have the time, consider making your test case so
  746. that it will readily fit into the standard test suite.
  747. Remember also to include the B<exact> error messages, if any.
  748. "Perl complained something" is not an exact error message.
  749. If you get a core dump (or equivalent), you may use a debugger
  750. (B<dbx>, B<gdb>, etc) to produce a stack trace to include in the bug
  751. report. NOTE: unless your Perl has been compiled with debug info
  752. (often B<-g>), the stack trace is likely to be somewhat hard to use
  753. because it will most probably contain only the function names, not
  754. their arguments. If possible, recompile your Perl with debug info and
  755. reproduce the dump and the stack trace.
  756. =item Can you describe the bug in plain English?
  757. The easier it is to understand a reproducible bug, the more likely it
  758. will be fixed. Anything you can provide by way of insight into the
  759. problem helps a great deal. In other words, try to analyse the
  760. problem to the extent you feel qualified and report your discoveries.
  761. =item Can you fix the bug yourself?
  762. A bug report which I<includes a patch to fix it> will almost
  763. definitely be fixed. Use the C<diff> program to generate your patches
  764. (C<diff> is being maintained by the GNU folks as part of the B<diffutils>
  765. package, so you should be able to get it from any of the GNU software
  766. repositories). If you do submit a patch, the cool-dude counter at
  767. [email protected] will register you as a savior of the world. Your
  768. patch may be returned with requests for changes, or requests for more
  769. detailed explanations about your fix.
  770. Here are some clues for creating quality patches: Use the B<-c> or
  771. B<-u> switches to the diff program (to create a so-called context or
  772. unified diff). Make sure the patch is not reversed (the first
  773. argument to diff is typically the original file, the second argument
  774. your changed file). Make sure you test your patch by applying it with
  775. the C<patch> program before you send it on its way. Try to follow the
  776. same style as the code you are trying to patch. Make sure your patch
  777. really does work (C<make test>, if the thing you're patching supports
  778. it).
  779. =item Can you use C<perlbug> to submit the report?
  780. B<perlbug> will, amongst other things, ensure your report includes
  781. crucial information about your version of perl. If C<perlbug> is unable
  782. to mail your report after you have typed it in, you may have to compose
  783. the message yourself, add the output produced by C<perlbug -d> and email
  784. it to B<[email protected]>. If, for some reason, you cannot run
  785. C<perlbug> at all on your system, be sure to include the entire output
  786. produced by running C<perl -V> (note the uppercase V).
  787. Whether you use C<perlbug> or send the email manually, please make
  788. your subject informative. "a bug" not informative. Neither is "perl
  789. crashes" nor "HELP!!!", these all are null information. A compact
  790. description of what's wrong is fine.
  791. =back
  792. Having done your bit, please be prepared to wait, to be told the bug
  793. is in your code, or even to get no reply at all. The perl maintainers
  794. are busy folks, so if your problem is a small one or if it is difficult
  795. to understand or already known, they may not respond with a personal reply.
  796. If it is important to you that your bug be fixed, do monitor the
  797. C<Changes> file in any development releases since the time you submitted
  798. the bug, and encourage the maintainers with kind words (but never any
  799. flames!). Feel free to resend your bug report if the next released
  800. version of perl comes out and your bug is still present.
  801. =head1 OPTIONS
  802. =over 8
  803. =item B<-a>
  804. Address to send the report to. Defaults to `[email protected]'.
  805. =item B<-b>
  806. Body of the report. If not included on the command line, or
  807. in a file with B<-f>, you will get a chance to edit the message.
  808. =item B<-C>
  809. Don't send copy to administrator.
  810. =item B<-c>
  811. Address to send copy of report to. Defaults to the address of the
  812. local perl administrator (recorded when perl was built).
  813. =item B<-d>
  814. Data mode (the default if you redirect or pipe output). This prints out
  815. your configuration data, without mailing anything. You can use this
  816. with B<-v> to get more complete data.
  817. =item B<-e>
  818. Editor to use.
  819. =item B<-f>
  820. File containing the body of the report. Use this to quickly send a
  821. prepared message.
  822. =item B<-F>
  823. File to output the results to instead of sending as an email. Useful
  824. particularly when running perlbug on a machine with no direct internet
  825. connection.
  826. =item B<-h>
  827. Prints a brief summary of the options.
  828. =item B<-ok>
  829. Report successful build on this system to perl porters. Forces B<-S>
  830. and B<-C>. Forces and supplies values for B<-s> and B<-b>. Only
  831. prompts for a return address if it cannot guess it (for use with
  832. B<make>). Honors return address specified with B<-r>. You can use this
  833. with B<-v> to get more complete data. Only makes a report if this
  834. system is less than 60 days old.
  835. =item B<-okay>
  836. As B<-ok> except it will report on older systems.
  837. =item B<-nok>
  838. Report unsuccessful build on this system. Forces B<-C>. Forces and
  839. supplies a value for B<-s>, then requires you to edit the report
  840. and say what went wrong. Alternatively, a prepared report may be
  841. supplied using B<-f>. Only prompts for a return address if it
  842. cannot guess it (for use with B<make>). Honors return address
  843. specified with B<-r>. You can use this with B<-v> to get more
  844. complete data. Only makes a report if this system is less than 60
  845. days old.
  846. =item B<-nokay>
  847. As B<-nok> except it will report on older systems.
  848. =item B<-r>
  849. Your return address. The program will ask you to confirm its default
  850. if you don't use this option.
  851. =item B<-S>
  852. Send without asking for confirmation.
  853. =item B<-s>
  854. Subject to include with the message. You will be prompted if you don't
  855. supply one on the command line.
  856. =item B<-t>
  857. Test mode. The target address defaults to `[email protected]'.
  858. =item B<-v>
  859. Include verbose configuration data in the report.
  860. =back
  861. =head1 AUTHORS
  862. Kenneth Albanowski (E<lt>[email protected]<gt>), subsequently I<doc>tored
  863. by Gurusamy Sarathy (E<lt>[email protected]<gt>), Tom Christiansen
  864. (E<lt>[email protected]<gt>), Nathan Torkington (E<lt>[email protected]<gt>),
  865. Charles F. Randall (E<lt>[email protected]<gt>), Mike Guy
  866. (E<lt>[email protected]<gt>), Dominic Dunlop (E<lt>[email protected]<gt>),
  867. Hugo van der Sanden (E<lt>[email protected]<gt>), and
  868. Jarkko Hietaniemi (E<lt>[email protected]<gt>).
  869. =head1 SEE ALSO
  870. perl(1), perldebug(1), perldiag(1), perlport(1), perltrap(1),
  871. diff(1), patch(1), dbx(1), gdb(1)
  872. =head1 BUGS
  873. None known (guess what must have been used to report them?)
  874. =cut
  875. __END__
  876. :endofperl