mirror of
https://github.com/krislamo/vagrant-easyredmine
synced 2024-11-10 06:50:35 +00:00
15 lines
331 B
Plaintext
15 lines
331 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
cd {{ redmine_root_dir }}
|
||
|
|
||
|
/usr/local/bin/bundle exec rake \
|
||
|
redmine:email:receive_imap \
|
||
|
RAILS_ENV="production" \
|
||
|
project=sysdba \
|
||
|
allow_override=project,tracker,priority,category \
|
||
|
host=imap.gmail.com \
|
||
|
port=993 ssl=SSL \
|
||
|
username={{ smtp_username }} \
|
||
|
password={{ smtp_password }}
|
||
|
|