diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2007-11-27 21:01:01 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2007-11-27 21:01:01 +0000 |
commit | 8d22fed43bc5991f6c7ec54756289a071163bb03 (patch) | |
tree | 940b47f247c2d597d754a1dd53b71c956fcf0958 | |
parent | e2c43c853670a7df90067ea07847aac78a13f17b (diff) |
disabled the RECIPIENT by default and added some notes on how to enable it
svn path=/trunk/; revision=9057
-rw-r--r-- | scripts/auto-build/auto-build-common | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/scripts/auto-build/auto-build-common b/scripts/auto-build/auto-build-common index 9c6ac5aa..73134d51 100644 --- a/scripts/auto-build/auto-build-common +++ b/scripts/auto-build/auto-build-common @@ -5,6 +5,25 @@ SYSTEM=`uname -s | sed 'y|ABCDEFGHIJKLMNOPQRSTUVWXYZ|abcdefghijklmnopqrstuvwxyz| DATE=`date +%Y-%m-%d` TIME=`date +%H.%M.%S` +## the following creates a spam-bot that sends emails to an address that has not asked for it +## because of the spam-problem, i (jmz) have disabled it # recipient of any emails set from the scripts -RECIPIENT=pd-cvs@iem.at +#RECIPIENT=pd-cvs@iem.at + +## if you want to send emails about the success of your build, +## please create a file "auto-build-common.local" in this directory +## and set the "RECIPIENT" address to some valid email-address +# +## please do NOT check your auto-build-common.local into the CVS +# +## another possibility is to set the "RECIPIENT" environmental variable before running +## the autobuilder + +if [ -e ${SCRIPT_DIR}/auto-build-common.local ]; then + . ${SCRIPT_DIR}/auto-build-common.local +else + echo "Could not find local configuration in \"${SCRIPT_DIR}/auto-build-common.local\"" + echo "Skipping... (see ${SCRIPT_DIR}/auto-build-common for instructions)" + echo +fi |