2020年1月9日 星期四

Redmine 收信 相關資訊


Redmine wiki
https://www.redmine.org/projects/redmine/wiki

官網安裝文章
https://www.redmine.org/projects/redmine/wiki/RedmineInstall

對了,自己安裝前請先確認有沒有安裝Ruby~~
https://www.ruby-lang.org/zh_tw/documentation/installation/

===================================================

Windows 安裝
https://blog.miniasp.com/post/2011/12/27/Install-Redmine-on-Windows-Notes
Ubuntu 安裝
https://rickhw.github.io/2019/05/11/Redmine/Install-Redmine40x-on-Ubuntu1604/

Ubuntu 切換使用者 su [account]   (switch user的意思)

一鍵安裝的方案
https://codertw.com/%E7%A8%8B%E5%BC%8F%E8%AA%9E%E8%A8%80/435522/

Docker方案
https://github.com/sameersbn/docker-redmine
https://hub.docker.com/_/redmine

啟動
https://blog.csdn.net/bcfdsagbfcisbg/article/details/80250095

sudo bundle exec rails server webrick -e production

==================================================

Email 收信
https://rickhw.github.io/2019/05/29/Redmine/How-to-Receiving-Email-using-IMAP/

rake -f ${RAKEFILE} redmine:email:receive_imap \
    RAILS_ENV=production \
    host=${IMAP_HOST} port=993 ssl=true \
    username=${USERNAME} \
    password=${PASSWORD} \
    folder=Inbox \
    --trace

RedmineReceivingEmails
https://www.redmine.org/projects/redmine/wiki/RedmineReceivingEmails

Email 通知
https://blog.longwin.com.tw/2011/03/redmine-email-auto-notify-2011/
https://codertw.com/%E7%A8%8B%E5%BC%8F%E8%AA%9E%E8%A8%80/637175/