summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpsg <>2003-10-31 14:31:43 +0000
committerpsg <>2003-10-31 14:31:43 +0000
commitb5ac1cbd4377ab0935c8ee893c14d4e1968b6731 (patch)
tree60fb54249b06d7c9eb1d61f050c65038a0eb2951
parent258af85a396dc0ebbd50eb83fa0096264c00b773 (diff)
debian-bug.el: "Should send minor severty bugs to maintonly, not submit",
thanks to Tollef Fog Heen (Closes: #214242).
-rw-r--r--debian-bug.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/debian-bug.el b/debian-bug.el
index 64bb302..a7b4fb6 100644
--- a/debian-bug.el
+++ b/debian-bug.el
@@ -233,6 +233,12 @@
;; - Add tags "sarge-ignore" and "fixed-uptsream".
;; V1.50 09Oct2003 Peter S Galbraith <psg@debian.org>
;; - Add debian-bug-rfc2047-decode-string.
+;; V1.51 28Oct2003 Peter S Galbraith <psg@debian.org>
+;; - Send to maintonly if priority minor. Closes: #214242.
+;; See http://www.debian.org/Bugs/Reporting.en.html:
+;; "if a bug report is minor, for example, a documentation typo or a
+;; trivial build problem, please adjust the severity appropriately and
+;; send it to maintonly@bugs"
;; ----------------------------------------------------------------------------
;;; Todo (Peter's list):
@@ -605,6 +611,8 @@ Reportbug may have sent an empty report!")))
(insert " " debian-bug-mail-address))
(t
(insert "To: " debian-bug-mail-address)))
+ (if (string-equal severity "minor")
+ (debian-bug--set-bts-address "maintonly@bugs.debian.org"))
(goto-char (point-min))
(cond
((re-search-forward "Subject: " nil t)