Package: po-debconf
Version: 1.0.16
Severity: wishlist
Tags: patch

Hi,

When podebconf-report-po prompts whether to send mails, it would be
nice to print a list of files and recipients in case checkboxes have
been unchecked or deleted.
Here is a proposed patch.

Denis
--- podebconf-report-po
+++ podebconf-report-po
@@ -877,6 +877,12 @@
 	my $with_mutt = "";
 	$with_mutt = " (with mutt)" if $MUTT;
 	QUESTION:
+	print "The following files have been selected:\n";
+	foreach my $poFile (sort keys %$poFiles) {
+		next unless defined $To{$poFile};
+		print "  $poFile To: $To{$poFile}\n";
+	}
+	print "End of files\n";
 	if ($SUBMIT_ARG) {
 		print "Ready to send$with_mutt the bug report against the package $PACKAGE_ARG, are you sure? $answers ";
 	} elsif (length $CALL) {

Reply via email to