Leaked source code of windows server 2003
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.

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