=item default_package
This is the name of the default package. If set, bugs assigned to
-packages without a maintainer and bugs missing a Package: psuedoheader
+packages without a maintainer and bugs missing a Package: pseudoheader
will be assigned to this package instead.
Defaults to unset, which is the traditional debbugs behavoir
debbugs (2.6.1) unstable; urgency=medium
- * Add support for a Done: psuedoheader (closes: #950133)
+ * Add support for a Done: pseudoheader (closes: #950133)
* Fix unescaped From (closes: #983847)
* Actually return message/rfc822 when there is a single message instead
of mbox (closes: #1009181)
map { s/^- // } @bodylines;
}
-#psuedoheaders
+#pseudoheaders
my %pheader;
my @control_bits;
my @usertag_bits;
# Fixes #488554
$phline =~ s/\xef\xbb\xbf//g;
$phline =~ s/\N{U+FEFF}//g;
- last if $phline !~ m/^([\w-]+): # psuedoheader
+ last if $phline !~ m/^([\w-]+): # pseudoheader
(?:\s|\N{U+00A0})* # zero or more spaces, including
# non-breaking space
(\S.*)/x; # pseudoheader value
ok($status->{subject} eq 'new title','bug 1 retitled');
ok($status->{severity} eq 'wishlist','bug 1 wishlisted');
-# now check to see if we can close a bug using a psuedoheader done
+# now check to see if we can close a bug using a pseudoheader done
send_message(to => '1-done@bugs.something',
headers => [To => 'control@bugs.something',
From => 'foo@bugs.something',