Actions
Defect #35506
closedField Overrides Via Email Submission
Status:
Closed
Priority:
Normal
Assignee:
-
Category:
Email receiving
Target version:
-
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Invalid
Affected version:
Description
I have successfully configured my Redmine instance to receive emails and create issues. I have all overrides allowed and this works for everything except "Due Date". This is the one field that wont' come across.
I've tried formatting the date yyyy/mm/dd, mm/dd/yyyy, etc but can't seem to get it to work.
Is this a Redmine issue or a matter of formatting? The way it the email includes the due date is:
Due date: yyyy/mm/dd
Updated by Go MAEDA over 3 years ago
- Category set to Email receiving
- Status changed from New to Closed
- Resolution set to Invalid
The date format accepted by MailHandler is YYYY-MM-DD only. YYYY/MM/DD is not supported.
source:tags/4.2.1/app/models/mail_handler.rb#L434:
'start_date' => get_keyword(:start_date, :format => '\d{4}-\d{2}-\d{2}'),
'due_date' => get_keyword(:due_date, :format => '\d{4}-\d{2}-\d{2}'),
Actions