Mailx issues


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Mailx issues
# 1  
Old 04-05-2013
Mailx issues

I've my below script compile.yk. This compiles programs in batch and any failed to compile modules will be mailed to my attention.
Code:
cd /inv1/io13000/mbmport/mbmerr
ERRFL=/inv1/io13000/srcport/$$_errorlist.txt
X=`ls *.c?? |wc -l`
if [ $X -ge 1 ]
then
    echo "Review library path: /inv1/io13000/mbmport/mbmerr/ "|tee $ERRFL
    echo " "|tee -a $ERRFL
    cd /inv1/io13000/mbmport/mbmerr
    echo "The following modules did not compile"|tee -a $ERRFL
    echo "-------------------------------------"|tee -a $ERRFL
    ls -1 *.c??|awk -F"." '{print $1}'|uniq|tee -a $ERRFL
    cd /inv1/io13000/srcport
    uuencode $ERRFL $ERRFL|/usr/bin/mailx -i -s "Compile Errors" a.b@sun.com -c "c.d@sun.com" <$ERRFL
    exit -9
else
    echo "There are no errors to report!!!     "|tee $ERRFL
    echo "-------------------------------------"|tee -a $ERRFL
    uuencode $ERRFL $ERRFL|/usr/bin/mailx -s "No Compile Errors" a.b@sun.com -c "c.d@sun.com" <$ERRFL
fi

When the mailx program runs, I see the below warning message(shown RED) displayed. What is the reason and how to stop? Can anybody advice?
Code:
SIMS-IODEV2:ndvradmn$./compile.yk
*.c??: No such file or directory
There are no errors to report!!!
-------------------------------------
WARNING: RunAsUser for MSP ignored, check group ids (egid=120, want=25)


Last edited by Franklin52; 04-05-2013 at 07:15 AM.. Reason: Please use code tags for data and code samples
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help with Mailx

Hi , I have written below code to send email from unix. The code is getting executed fine but i am not receiving any e mail . I am not sure what is going wrong . Do we need to do any configration setting before using Mailx? Please help set -vx echo 'Sending Mail' mailx -s "SEPA_TEST"... (2 Replies)
Discussion started by: Chandru_Raj
2 Replies

2. Linux

Mailx

We have configured mailx Linux server. When send mail from Linux server it is not going How to trouble shoot the root cause step by step (3 Replies)
Discussion started by: pmsuper
3 Replies

3. Shell Programming and Scripting

Mailx: How to send a attachment using mailx command

Hi All, Can anyone please provide the command for sending an mail with attachment using mailx command. Thanks in Advance :) Regards, Siram. (3 Replies)
Discussion started by: Sriram.Vedula53
3 Replies

4. UNIX and Linux Applications

MailX

Hi, I am not able to send direct mails from our unix server to our lotus notes id. It was fine until we upgrade our Lotus notes server. What are the changes need to add when we upgrade Lotus notes. Please advice. It run in sh file This is the statement uuencode $RTDIR/$filename... (0 Replies)
Discussion started by: rajani_p
0 Replies

5. Shell Programming and Scripting

mailx

Hi, Thanks in Advance !! I have a korn script which is used to mail the reports to the users. I'm using the mailx utility. The uid used for running the script is "cronman", so the mails recieved by users are id FROM:"cronman". Now i want to change the FROM address to another user name... (2 Replies)
Discussion started by: pradeep_desh
2 Replies

6. UNIX for Advanced & Expert Users

MAILX help

Hello all, how do I view the default mail configurations using the mailx problem? At the moment, I have an account, and all the mail to that account is being routed to an email address, how can I view this behaviour? Also, is there anyway I can view the default mail settings for a server without... (0 Replies)
Discussion started by: Khoomfire
0 Replies

7. UNIX for Dummies Questions & Answers

mailx error message : mailx: NUL changed to @

If I use the "Mail" link instead of the "mail" link to ../mailx I get this error. Mail so-n-so @whatever.com mailx: NUL changed to @ Unknown command: "postmaster" The email still goes through but i get the error. If I use "mail" it goes thru without the error. Any ideas?? (2 Replies)
Discussion started by: BG_JrAdmin
2 Replies

8. Shell Programming and Scripting

mailx to to Dl

Is there any way that I can mailx to a distribution list without having a $HOME/.mailrc file? We have a distribution list in Outlook for our group say group@something.com. I am trting to do echo "Something"|mailx -s "Subject" group@something.com it doesnt work Any ideas? Thanks (1 Reply)
Discussion started by: sm321
1 Replies

9. Shell Programming and Scripting

Mailx

I am trying to write a shell script using the mailx command. My problem is that I want to send an email address in the CC: field. What option can I use with mailx to accomplish this. Any help would be very appreciative. (1 Reply)
Discussion started by: skammer
1 Replies

10. UNIX for Dummies Questions & Answers

Need help with mailx

How can I send a file of Unix usernames to everyone on the file without making an alias in my .mailrc file? Using a mailx command. Thanks, J.J. (2 Replies)
Discussion started by: JJJ
2 Replies
Login or Register to Ask a Question