Issue with receiving imap email in redmine -


my incoming emails keep getting ignored , not filed correct project. 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 

if don't see email become read in gmail try adding --trace @ end of rake parameters (you should rake error). email must unread/new @ gmail box or won't read rake because thinks read it.

another gotcha: 993 blocked firewall between redmine , gmail.

check rails log/production.log right after running rake - check if there's error message mail.

assuming rake task reading , changing status in gmail, might parameters. notice ssl different had.

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

Comments

Popular posts from this blog

php - What is the difference between $_SERVER['PATH_INFO'] and $_SERVER['ORIG_PATH_INFO']? -

fortran - Function return type mismatch -

queue - mq_receive: message too long -