#!/bin/sh # # NOTIFY.sh # # For file/actions where this trigger is attached, send mail # to a defined list describing the action being taken. # # Author: A Better Solution, Inc. # email: support@abs-consulting.com # URL: http://www.abs-consulting.com # Date: Sep. 17, 1996 ############################################################ # History: 09/17/96 : Created for A Better Solution, Inc. ############################################################ INFORM_ID_LIST="vobadm" /bin/mail $INFORM_ID_LIST << E_O_MAIL Subject: $CLEARCASE_OP_KIND on $CLEARCASE_PN Trigger activation mail notification for controlled action on VOB ($CLEARCASE_VOB_PN): user: $CLEARCASE_USER operation: $CLEARCASE_OP_KIND date: `date` element: $CLEARCASE_PN version: $CLEARCASE_ID_STR comment: $CLEARCASE_COMMENT E_O_MAIL exit 0