--- roundup-0.7.1/roundup/mailgw.py.priority_fix 2004-05-06 19:19:28.000000000 -0400 +++ roundup-0.7.1/roundup/mailgw.py 2004-05-14 06:53:26.000000000 -0400 @@ -841,6 +841,14 @@ if properties.has_key('title') and not issue_props.has_key('title'): issue_props['title'] = title.strip() + # set default priority - a required property for web interface + # now hardwired, eventually from config.NEW_EMAIL_PRIORITY? + # (why have issue_props and props not been merged yet?) + if properties.has_key('priority') and \ + (not issue_props.has_key('priority') or \ + props.has_key('priority')): + props['priority'] = '3' + # # handle message-id and in-reply-to #