aboutsummaryrefslogtreecommitdiffstats
path: root/interfaces
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2009-07-19 10:36:21 -0400
committerW. Trevor King <wking@drexel.edu>2009-07-19 10:36:21 -0400
commitdaae395762a45dde2a388d3f4bb77de0601a1583 (patch)
treeaf0df6f95da9ea11b75d29bd456f17c4c7c41057 /interfaces
parent0cce2f8703c88a00c9c49d3b6e4a974bcd0f8fa8 (diff)
downloadbugseverywhere-daae395762a45dde2a388d3f4bb77de0601a1583.tar.gz
Added more allowed commands and pseudo-headers to be-handle-mail.
The new pseudo-headers are currently ignored.
Diffstat (limited to 'interfaces')
-rwxr-xr-xinterfaces/email/interactive/be-handle-mail8
1 files changed, 5 insertions, 3 deletions
diff --git a/interfaces/email/interactive/be-handle-mail b/interfaces/email/interactive/be-handle-mail
index efa9541..1fa9bc2 100755
--- a/interfaces/email/interactive/be-handle-mail
+++ b/interfaces/email/interactive/be-handle-mail
@@ -61,10 +61,12 @@ SUBJECT_TAG_CONTROL = SUBJECT_TAG_RESPONSE
BREAK = u"--"
NEW_REQUIRED_PSEUDOHEADERS = [u"Version"]
-NEW_OPTIONAL_PSEUDOHEADERS = [u"Reporter"]
+NEW_OPTIONAL_PSEUDOHEADERS = [u"Reporter", u"Assign", u"Depend", u"Severity",
+ u"Status", u"Tag", u"Target"]
CONTROL_COMMENT = u"#"
-ALLOWED_COMMANDS = [u"new", u"comment", u"list", u"show", u"help"]
-
+ALLOWED_COMMANDS = [u"assign", u"comment", u"depend", u"help", u"list",
+ u"merge", u"new", u"open", u"severity", u"status", u"tag",
+ u"target"]
libbe.encoding.ENCODING = u"utf-8" # force default encoding
ENCODING = libbe.encoding.get_encoding()