events send mail to admin -

Hi everybody !!

I want to do something and I can't figure out. The idea is that a script should send an email when a backup is done.
It works with a unix account (like root) but what I really want is to send that email to other account like fede@somethig.com.

I have a mail server installed in other computer, all these boxes are running solaris 9.

I believe that I should tell the box that is running the backup script to send the email using other mail server, but I don't know how to do it.

Also, as a test, I tried: mail -t myaccount@stuff.com, and it doesn�t work. (of course the email acount exist...)

So if someone can help me, I'll send a pack of six beers...

Thanx a lot.

it really depends on how your doing the backup in the first place.

for me. i run my backups via cron and i have the output goto the cronusers email. you can always pipe the output to the mail command and then you can specify which user.

some backup software allows you to configure users to be notified when an event happens. so i would check your software docs and see what you can come up with, or talk with the people that manage the backups and set it up in the first place they would prolly have the most valuable information for you.

No, it is just a normal script like:

----------------------------------------
# !/bin/bash

cd /tmp
cp /tmp /home/mystuff

# and when the copy is done I want to be informed by mail
# but not to my unix account like root, I want the mail to, for # example, myaccount@hotmail.com.

????

------------------------------------------

Thanks for your help

You can create a shell script and test to see if it executes without error. If it executes without error, then you can email a success message; if with error, you can email an error message.

Take a look at error codes, for example:

ps aux | grep grep | grep -v grep ; echo $?

Then try:

ps aux | grep grep; echo $?

Are the results the same? Why not?

1 Like

Thanks, but my problems is not with the script, what I really don't know how to do is sending the mail from a command.

mail -t sends a mail only to unix account and I want to send the mail to an "outside" mail account like something@hotmail.com

Thanks again.

Try this:

echo "Hello World!" | elm -s "Hello World Message" your_name@your.domain.com

I think mailx is the standard front-end for sendmail and elm is HP-UX only(?)

echo "Hello World!" | mailx -s "Hello World Message" your_name@your.domain.com

Elm works on most systems. It comes standard with Linux and myriad other systems (not related to HP-UX).

Visit:

http://www.instinct.org/elm/

Ok, now it works. Because the os is Solaris I use the mailx, as you mention. At first it doesn�t work, the I wento to my /etc/mail/sendmail.cf and I added "DSmymailserver."

With this line worked, the mail is forwarder to my mail server.
Fine.

Thanks for your help, it was great.

See ya.

I guess Solaris is not one of those "myriad" systems. :slight_smile:

I think you can compile elm with GCC and GCC can be built on Solaris.

My thoughts are that everyone would install GCC on Solaris, HP-UX or any more commercial system as one of their first admin tasks :slight_smile:

Here is a link where someone was using GCC to build elm on a Sun in 1994 :slight_smile:

http://www.geocrawler.com/archives/3/356/1994/9/0/1962250/

Time flies......

Here is a 1998 link that shows elm as freeware for Solaris 2.5:

http://smc.vnet.net/solaris\_2.5_nof.html

And Solaris 7:

http://sunfreeware.com/programlistsparc7.html

Including this critical link:

http://sunfreeware.com/gcc.html

Rightly or wrongly, a lot of people are intimidated by the effort of downloading source code and building a package. That's why precompiled freeware is important. Sun distributes elm... see this link.

A HP engineer wrote elm for fun and HP accepted it as part of HP-UX. But elm was released as freeware and has been enhanced. So even though elm comes standard with HP-UX, it is an older version. The standard HP-UX elm is a nice program, but you might want to consider a newer version. One newer elm precomplied for HP-UX is available here.