#!/bin/bash
# chruby needs bash
#
#
# redmine email import with chruby.
#
#
# Put this script into /script and a set crontab like
# $ sudo -u www-data crontab -l
# */15 * * * * /script/fetch-email.sh
#
cd "$(dirname "$0")/.."
log="log/$(basename "$0" .sh).log"
cat >> "$log" <<EOF
$(date --rfc-3339=seconds) $0
EOF
# https://github.com/postmodern/chruby
source /usr/local/share/chruby/chruby.sh
source /usr/local/share/chruby/auto.sh
# in case we use rbx in .ruby-version, we need to explicitly set ruby in
# script/fetch-email.sh due to
# https://github.com/rubinius/rubinius/issues/2916
chruby ruby || { echo "Failed to change ruby." 1>> "$log" && exit 1; }
bundle --version 1>/dev/null || { nice gem install bundle 1>> "$log" 2>> "$log" ; }
bundle check 1>/dev/null 2>/dev/null || { nice bundle install 1>> "$log" 2>> "$log" ; }
# http://www.redmine.org/projects/redmine/wiki/RedmineReceivingEmails
nice bundle exec rake redmine✉️receive_imap \
RAILS_ENV="production" \
host= \
ssl=1 \
port=993 \
username= \
password= \
unknown_user=accept \
1>> "$log" \
2>> "$log"