Problem getting imap email in redmine

My inbox continues to be ignored and not submitted to the correct project. What am I missing here?

rake -f / home / kickapps / redmine / Rakefile redmine: email: receive_imap \
RAILS_ENV = "production" \
host = imap.gmail.com \
ssl = SSL \
port = 993 \
move_on_success = FILED \
move_on_failure = IGNORED \
username=redmine@kitops.com \
password = *************** \
unknown_user = accept \
no_permission_check = 1 \
project = test \
allow_override = project, tracker
+5
source share
1 answer

, gmail, --trace ( ). / gmail , , .

: 993 redmine gmail.

/production.log - , .

, rake gmail, . , ssl , .

rake -f /home/kickapps/redmine/Rakefile redmine:email:receive_imap \
RAILS_ENV="production" \
host=imap.gmail.com \
ssl=1 \ # it 1 on my install -- double check
port=993 \
username=redmine@kitops.com \
password=*************** \
project=test \ # must be the project identfier not the name
status=assigned \ # must be a status used in the project, check popups in redmine
unknown_user=accept \ #haven't tried this
no_permission_check=1 \ # or this
allow_override=project,tracker # or this 
+1

All Articles