Sponsored Content
Top Forums Shell Programming and Scripting shell script needed for mail queue notification Post 302109398 by Nightman on Monday 5th of March 2007 07:00:54 PM
Old 03-05-2007
Quote:
Originally Posted by cfajohnson
Code:
IFS=:
set -f
set -- $( ./qmHandle -s )

localeQ=$(( $2 ))
remoteQ=$(( $4 ))

if [ $localQ -gt 10 ] || [ $remoteQ -gt 1000 ]
then
   {
     printf "Messages in local queue: %d\n" $localQ
     printf "Messages in remote queue: %d\n" $remoteQ
    } | mail someone@example.com
fi

Depending on your system, you may need to use "mailx" instead of "mail".
getting following error:
mailcheck_2.sh: line 6: 530
Messages in remote queue : syntax error in expression (error token is "Messages in remote queue ")
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script needed which will send a mail with attachment files

Hello, I need a shell script which need to send a mail with 4 *.csv files as attachments.Anybody can help me? At present i have a script which is sending only one file as attachments.But i need a script which send 4 files in a shot. #!/bin/ksh /bin/mail xxxx@xx.xom << EOF Subject:... (4 Replies)
Discussion started by: Mar1006
4 Replies

2. AIX

notification mail when password expired

Hallo, can anybody help me with my issue? Iīd like to know if it is possible to send me a mail (to @mail.com for example) when some account password will expired? eg. few days ago of this expiration. We donīt use this account every day, it is used for DB2 and DB2 has problem every 90īs day because... (2 Replies)
Discussion started by: JiriVenera
2 Replies

3. Infrastructure Monitoring

Mail Notification in nagios

Hi guys, I have configured Nagios in My Ubuntu8.4 machine through Quickstart Guide, All things are working fine. Now i want to get Services Notification mails on my personal Email-id,what configuration is needed to get the mails,any assistance would be appreciable. Thanks in advance. (3 Replies)
Discussion started by: daya.pandit
3 Replies

4. Shell Programming and Scripting

AIX mail notification

plzzz help me, I want to send emails for exchange group members when the used file-system % gets more than 90%, this notification must include df -g, netstat -i,and errpt with the hostname thx in advance (0 Replies)
Discussion started by: majd_ece
0 Replies

5. Shell Programming and Scripting

How do I create a shell script that would generate a system notification.

I am a student, and I have project to complete. The project is to create a power point presentation with the following guidelines: You are the system admin for a medium sized Internet company that has its primary production web server running on UNIX/Linux. Your technical IT director would like... (1 Reply)
Discussion started by: jcottrell
1 Replies

6. Shell Programming and Scripting

check postfix deferred mail and send notification script

Hi Guys, I have a postfix server which is deferring emails. Now I need to send notification to a specific email address if: The sender of the deferred email is: abc@example.com Contains specific subjects: a file (/opt/subjects) contains all the subjects in place Then need to send a... (0 Replies)
Discussion started by: linuxrulz
0 Replies

7. Shell Programming and Scripting

Script for sending notification mail

hi all, needed a script to send a notfication mail if the specified folder had the copy of the files that are older than 15 days i.ee for example my folder name is SAi and the files are as follows sai.txt copyofsai.txt copyofcopyofsai.txt hemanth.txt copyofcopyofhemanth.txt... (4 Replies)
Discussion started by: hemanthsaikumar
4 Replies

8. Shell Programming and Scripting

Check pending mail in mail queue

I know the command mailq can check the pending mail in mqueue , and also have another command to check POSIX mail queue in server , now I will regularly check the mqueue manually , it is time consuming , would advise the script that could help to check the mail queue , and then send the details to... (3 Replies)
Discussion started by: ust3
3 Replies

9. Shell Programming and Scripting

Shell Script for Websphere MQ Queue Manager start/stop

Hello All, I am completely new to shell scripting. I had to write a script that starts and stop the queue manager in Websphere MQ. We are on Linux 64-bit patform. The script should stop the queue manager and all the processes related to websphere MQ. It should be a clean stop. Once the queue... (3 Replies)
Discussion started by: pady1224
3 Replies
BIFF(1) 						    BSD General Commands Manual 						   BIFF(1)

NAME
biff -- be notified if mail arrives and who it is from SYNOPSIS
biff [n | y | b] DESCRIPTION
The biff utility informs the system whether you want to be notified on your terminal when mail arrives. Affected is the first terminal associated with the standard input, standard output or standard error file descriptor, in that order. Thus, it is possible to use the redirection facilities of a shell to toggle the notification for other terminals than the one biff runs on. The following options are available: n Disable notification. y Enable header notification. b Enable bell notification. When header notification is enabled, the header and first few lines of the message will be printed on your terminal whenever mail arrives. A ``biff y'' command is often included in the file .login or .profile to be executed at each login. When bell notification is enabled, only two bell characters (ASCII 07) will be printed on your terminal whenever mail arrives. If no arguments are given, biff displays the present notification status of the terminal to the standard output. The biff utility operates asynchronously. For synchronous notification use the MAIL variable of sh(1) or the mail variable of csh(1). EXIT STATUS
The biff utility exits with one of the following values: 0 Notification was enabled at the time of invocation. 1 Notification was disabled at the time of invocation. >1 An error occurred. COMPATIBILITY
Previous versions of the biff utility affected the terminal attached to standard error without first trying the standard input or output devices. SEE ALSO
csh(1), mail(1), sh(1), comsat(8) HISTORY
The biff command appeared in 4.0BSD. It was named after the dog of Heidi Stettner. He died in August 1993, at 15. BSD
April 28, 2013 BSD
All times are GMT -4. The time now is 09:00 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy