Redmine: Windows Mail Issue

I need to activate the option: create issue via mailbut I do not know how to do this.

I read the documentation, but I do not understand this. I use bitnami to work with redmine on a windows platform.

Update:

I think I'm closer now, but when I run:

C:\Bitnami\redmine-3.2.3-0\apps\redmine\htdocs>rake redmine:email:receive_imap RAILS_ENV="production" host=imap.gmail.com port=993 ssl=true username=xxxxxxx@xxx.x password=xxxxx

he brings me back.

 OpenSSL::SSL::SSLError: SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed

I changed imap.rb when I read in another post, I also update ruby ​​gems and do nothing. I have changed and now I am not making any mistakes. And I installed Gmail to accept an insecure program

+4
source share
1 answer

this issue was posted on the Redmine forum

http://www.redmine.org/boards/1/topics/33669 .

, config/initializers/ .

require 'openssl' OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE

rake bundle exec.

, Jota​​p >

+3

Source: https://habr.com/ru/post/1668660/


All Articles