Defect #3093
closedRedmine Issue Creation By Email
0%
Description
I am currently downloaded Redmine-0.8.2 in my system.I checked the functionality of Issue Creation by Email
I Have sent the following email to an email address to where rake task is configured
project:myprojectidentifier
tracker:mytrackername
priority:mypriorityname
status:mydefaultstatusname
Task Type:my tasktype
Help:my default value
This Task Type,help are the custom fields i have created for issues
I am running the following rake task
rake redmine:email:receive_imap RAILS_ENV="production" host=smtp.gmail.com port=993 ssl=1 username=myusername password=myemailpassword
Whats happening is this whole thing
"project:myprojectidentifier
tracker:mytrackername
priority:mypriorityname
status:mydefaultstatusname
Task Type:my tasktype
Help:my default value"
is considered as Issue description and it is saving under issue description.And the Reamining values are stored appropriately.Only the problem with the issue description
I am not able to pass these custom fields as default values in rake task.
I am able to pass
rake redmine:email:receive_imap RAILS_ENV="production" host=smtp.gmail.com port=993 ssl=1 username=myusername password=myemailpassword project=myprojectidentifier status=mystatusname priority=mypriorityname tracker=mytrackername allow_override=project,status,tracker,priority
In this I am not able to pass the Custom fields
Please guide me in this issue