Actions
Defect #37104
openconvert emails into tickets with different projects
Status:
New
Priority:
Normal
Assignee:
-
Category:
Email receiving
Target version:
-
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Affected version:
Description
Hi all, I have configured my redmine 5.0.0 so that every email it receives on an imap box, creates a ticket...
I would like that depending on the user/email creates the ticket in a different project without the user doing anything, just recognizing the email, is it possible?
thanks
I've a script with a cron:
#!/bin/bash
cd /usr/src/redmine/
rake redmine:email:receive_imap \
RAILS_ENV=production \
host=mail.mydomain.com port=993 ssl=true \
username=support@mydomain.it password="blabla" \
move_on_success=INBOX.redmineseen move_on_failure=INBOX.redminefailed \
project=assistenza tracker=support \
unknown_user=accept no_permission_check=1
Actions