permission denied to run a Mail Message Utility Program in unix on IBM server [message #164012] |
Tue, 21 March 2006 05:04 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
MEEENAR
Messages: 72 Registered: May 2005 Location: CHENNAI
|
Member |
|
|
I have got a shell script to send mails..Iam using a Mail Message Utility Program, a third party tool to send mails from my script...this one was working fine in Unix server...
Now we have moved to IBM server...Now I am not able to execute the Shell script..If i execute that one it is showing the following error message.
Permission denied to run that Mail Message Utility Program BMM...
The Shell Script
for fil in `ls -1 TJ*.PDF`
do
compress $fil
branch=`echo $fil|cut -c3-14`
echo "Branch : $branch"
sqlplus -s harini/harini_2323@ascilbos <<EOF > $branch_id.txt
set head off
set feed 0
set pages 0
select emailid
from mail
where mbranchid like '$branch';
exit;
EOF
echo "Branch Address : $branch_id.txt"
bmm -a $fil.Z -t trdrejecmail.txt | mailx -s " Trading Forms Rejection Details " `cat $branch_id.txt`
rm $branch_id.txt
can anyone help me how to solve this problem
|
|
|
|