1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
|
#!/usr/local/bin/perl
use Config;
use File::Basename qw(&basename &dirname);
# List explicitly here the variables you want Configure to
# generate. Metaconfig only looks for shell variables, so you
# have to mention them as if they were shell variables, not
# %Config entries. Thus you write
# $startperl
# to ensure Configure will look for $Config{startperl}.
# This forces PL files to create target in same directory as PL file.
# This is so that make depend always knows where to find PL derivatives.
chdir(dirname($0));
($file = basename($0)) =~ s/\.PL$//;
$file =~ s/\.pl$//
if ($Config{'osname'} eq 'VMS' or
$Config{'osname'} eq 'OS2'); # "case-forgiving"
open OUT,">$file" or die "Can't create $file: $!";
print "Extracting $file (with variable substitutions)\n";
# In this section, perl variables will be expanded during extraction.
# You can use $Config{...} to use Configure variables.
print OUT <<"!GROK!THIS!";
$Config{'startperl'}
eval 'exec perl -S \$0 "\$@"'
if 0;
!GROK!THIS!
# In the following, perl variables are not expanded during extraction.
print OUT <<'!NO!SUBS!';
use Config;
use Mail::Send;
use Mail::Util;
use Getopt::Std;
use strict;
sub paraprint;
my($Version) = "1.06";
my( $file, $cc, $address, $perlbug, $testaddress, $filename,
$subject, $from, $verbose, $ed,
$fh, $me, $Is_VMS, $msg, $body, $andcc );
Init();
if($::opt_h) { Help(); exit; }
Query();
Edit();
NowWhat();
Send();
exit;
sub Init {
# -------- Setup --------
$Is_VMS = $::Config{'osname'} eq 'VMS';
getopts("hva:s:b:f:r:e:SCc:t");
# This comment is needed to notify metaconfig that we are
# using the $perladmin, $cf_by, and $cf_time definitions.
# -------- Configuration ---------
# perlbug address
$perlbug = 'perlbug@perl.com';
# Test address
$testaddress = 'perlbug-test@perl.com';
# Target address
$address = $::opt_a || ($::opt_t ? $testaddress : $perlbug);
# Possible administrator addresses, in order of confidence
# (Note that cf_email is not mentioned to metaconfig, since
# we don't really want it. We'll just take it if we have to.)
$cc = ($::opt_C ? "" : (
$::opt_c || $::Config{perladmin} || $::Config{cf_email} || $::Config{cf_by}
));
# Users address, used in message and in Reply-To header
$from = $::opt_r || "";
# Include verbose configuration information
$verbose = $::opt_v || 0;
# Subject of bug-report message
$subject = $::opt_s || "";
# File to send as report
$file = $::opt_f || "";
# Body of report
$body = $::opt_b || "";
# Editor
$ed = ($::opt_f ? "file" : (
$::opt_e || $ENV{VISUAL} || $ENV{EDITOR} || $ENV{EDIT} ||
($Is_VMS ? "edit/tpu" : "vi")
));
# My username
$me = getpwuid($<);
}
sub Query {
# Explain what perlbug is
paraprint <<EOF;
This program allows you to enter a bug report,
which will be sent as an e-mail message to $address
once you have filled in the report.
EOF
# Prompt for subject of message, if needed
if(! $subject) {
paraprint <<EOF;
First of all, please provide a subject for the
message. It should be concise description of the bug,
if at all possible.
EOF
print "Subject: ";
$subject = <>;
chop $subject;
my($err)=0;
while( $subject =~ /^\s*$/ ) {
print "\nPlease enter a subject: ";
$subject = <>;
chop $subject;
if($err++>5) {
die "Aborting.\n";
}
}
}
# Prompt for return address, if needed
if( !$from) {
# Try and guess return address
my($domain) = Mail::Util::maildomain();
my($guess);
if( !$domain) {
$guess = "";
} elsif ($Is_VMS && !$::Config{'d_has_sockets'}) {
$guess = "$domain$me";
} else {
$guess = "$me\@$domain" if $domain;
$guess = "$me\@unknown.addresss" unless $domain;
}
if( $guess ) {
paraprint <<EOF;
Your e-mail address will be useful if you need to be contacted.
If the default is not your proper address, please correct it here.
EOF
} else {
paraprint <<EOF;
So that you may be contacted if necessary, please enter
your e-mail address here.
EOF
}
print "Your address [$guess]: ";
$from = <>;
chop $from;
if($from eq "") { $from = $guess }
}
#if( $from =~ /^(.*)\@(.*)$/ ) {
# $mailname = $1;
# $maildomain = $2;
#}
if( $from eq $cc or $me eq $cc ) {
# Try not to copy ourselves
$cc = "none";
}
# Prompt for administrator address, unless an override was given
if( !$::opt_C and !$::opt_c ) {
paraprint <<EOF;
A copy of this report can be sent to your local
perl administrator. If the address is wrong, please
correct it, or enter 'none' to not send a copy.
EOF
print "Local perl administrator [$cc]: ";
my($entry) = scalar(<>);
chop $entry;
if($entry ne "") {
$cc = $entry;
if($me eq $cc) { $cc = "" }
}
}
if($cc eq "none") { $cc = "" }
$andcc = " and $cc" if $cc;
# Prompt for editor, if no override is given
if(! $::opt_e and ! $::opt_f and ! $::opt_b) {
paraprint <<EOF;
Now you need to enter the bug report. Try to make
the report concise but descriptive. Include any
relevant detail. Some information about your local
perl configuration will automatically be included
at the end of the report.
You will probably want to use an editor to enter
the report. If "$ed" is the editor you want
to use, then just press Enter, otherwise type in
the name of the editor you would like to use.
If you would like to use a prepared file, just enter
"file", and you will be asked for the filename.
EOF
print "Editor [$ed]: ";
my($entry) =scalar(<>);
chop $entry;
if($entry ne "") {
$ed = $entry;
}
}
# Generate scratch file to edit report in
$filename = ($Is_VMS ? 'sys$scratch:' : '/tmp/') . "bugrep0$$";
$filename++ while -e $filename;
# Prompt for file to read report from, if needed
if( $ed eq "file" and ! $file) {
paraprint <<EOF;
What is the name of the file that contains your report?
EOF
print "Filename: ";
my($entry) = scalar(<>);
chop($entry);
if(!-f $entry or !-r $entry) {
print "\n\nUnable to read `$entry'.\nExiting.\n";
exit;
}
$file = $entry;
}
# Generate report
open(REP,">$filename");
print REP <<EOF;
This is a bug report for perl from $from,
generated with the help of perlbug $Version running under perl $].
EOF
if($body) {
print REP $body;
} elsif($file) {
open(F,"<$file") or die "Unable to read report file: $!\n";
while(<F>) {
print REP $_
}
close(F);
} else {
print REP "[Please enter your report here]\n";
}
print REP <<EOF;
Site configuration information for perl $]:
EOF
if( $::Config{cf_by} and $::Config{cf_time}) {
print REP "Configured by $::Config{cf_by} at $::Config{cf_time}.\n\n";
}
print REP Config::myconfig;
if($verbose) {
print REP "\nComplete configuration data for perl $]:\n\n";
my($value);
foreach (sort keys %::Config) {
$value = $::Config{$_};
$value =~ s/'/\\'/g;
print REP "$_='$value'\n";
}
}
close(REP);
}
sub Edit {
# Edit the report
if(!$file and !$body) {
if( system("$ed $filename") ) {
print "\nUnabled to run editor!\n";
}
}
}
sub NowWhat {
# Report is done, prompt for further action
if( !$::opt_S ) {
while(1) {
paraprint <<EOF;
Now that you have completed your report, would you like to send
the message to $address$andcc, display the message on
the screen, re-edit it, or cancel without sending anything?
You may also save the message as a file to mail at another time.
EOF
print "Action (Send/Display/Edit/Cancel/File): ";
my($action) = scalar(<>);
chop $action;
if($action =~ /^s/i) { # Send
# Send the message
last;
} elsif($action =~ /^f/i) { # File
print "\n\nName of file to save message in [perlbug.rep]: ";
my($file) = scalar(<>);
chop $file;
if($file eq "") { $file = "perlbug.rep" }
open(FILE,">$file");
open(REP,"<$filename");
print FILE "To: $address\nSubject: $subject\n";
print FILE "Cc: $cc\n" if $cc;
print FILE "Reply-To: $from\n" if $from;
print FILE "\n";
while(<REP>) { print FILE }
close(REP);
close(FILE);
print "\nMessage saved in `$file'.\n";
exit;
} elsif($action =~ /^[drl]/i) { # Display, Redisplay, List
# Display the message
open(REP,"<$filename");
while(<REP>) { print $_ }
close(REP);
} elsif($action =~ /^e/i) { # Edit
# edit the message
system("$ed $filename");
} elsif($action =~ /^[qc]/i) { # Cancel, Quit
1 while unlink($filename); # remove all versions under VMS
print "\nCancelling.\n";
exit(0);
}
}
}
}
sub Send {
# Message has been accepted for transmission -- Send the message
$msg = new Mail::Send Subject => $subject, To => $address;
$msg->cc($cc) if $cc;
$msg->add("Reply-To",$from) if $from;
$fh = $msg->open;
open(REP,"<$filename");
while(<REP>) { print $fh $_ }
close(REP);
$fh->close;
print "\nMessage sent.\n";
1 while unlink($filename); # remove all versions under VMS
}
sub Help {
print <<EOF;
A program to help generate bug reports about perl5, and mail them.
It is designed to be used interactively. Normally no arguments will
be needed.
Usage:
$0 [-v] [-a address] [-s subject] [-b body | -f file ]
[-r returnaddress] [-e editor] [-c adminaddress | -C] [-S] [-t]
Simplest usage: execute "$0", and follow the prompts.
Options:
-v Include Verbose configuration data in the report
-f File containing the body of the report. Use this to
quickly send a prepared message.
-S Send without asking for confirmation.
-a Address to send the report to. Defaults to `$address'.
-c Address to send copy of report to. Defaults to `$cc'.
-C Don't send copy to administrator.
-s Subject to include with the message. You will be prompted
if you don't supply one on the command line.
-b Body of the report. If not included on the command line, or
in a file with -f, you will get a chance to edit the message.
-r Your return address. The program will ask you to confirm
this if you don't give it here.
-e Editor to use.
-t Test mode. The target address defaults to `$testaddress'.
EOF
}
sub paraprint {
my @paragraphs = split /\n{2,}/, "@_";
print "\n";
for (@paragraphs) { # implicit local $_
s/(\S)\s*\n/$1 /g;
write;
print "\n";
}
}
format STDOUT =
^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< ~~
$_
.
!NO!SUBS!
close OUT or die "Can't close $file: $!";
chmod 0755, $file or die "Can't reset permissions for $file: $!\n";
exec("$Config{'eunicefix'} $file") if $Config{'eunicefix'} ne ':';
|