Re: Missing e-mail reports

2001-02-05 Thread Gerhard den Hollander

* John R. Jackson <[EMAIL PROTECTED]> (Mon, Feb 05, 2001 at 01:30:50PM -0500)
> >but this means the man-pages are wrong.
> You mean you actually read them???  :-)

yes, actually I did,
and as I noticed, not good enough, quite a lot of stuff asked here is
actually answered in the manpages or in the FAQ
(if you know where to look ;) )

[like my question about dumpcycle/tapecycle from a few weeks back]

Gerhard,  <@jasongeo.com>   == The Acoustic Motorbiker ==   
-- 
   __O  Standing above the crowd, he had a voice so strong and loud
 =`\<,  we'll miss him
(=)/(=) Ranting and pointing his finger, At everything but his heart
we'll miss him




Re: Missing e-mail reports

2001-02-05 Thread John R. Jackson

>but this means the man-pages are wrong.

You mean you actually read them???  :-)

Fixed.  Thanks.

>   Gerhard

John R. Jackson, Technical Software Specialist, [EMAIL PROTECTED]



Re: Missing e-mail reports

2001-02-05 Thread Gerhard den Hollander

* John R. Jackson <[EMAIL PROTECTED]> (Fri, Feb 02, 2001 at 12:46:37PM -0500)
> > mailto "[EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]" ...
> >Amcheck reports no errors, and the runs appear to be happening, 
> >but I'm getting no e-mail reports.  Is there something wrong 
> >with my "mailto" line?

> Gerhard was mistaken with his suggestion.  The "mailto" parameter must
> be a string inside double quotes and the entries must be separated by
> whitespace, not commas.

Sorry about that,
but this means the man-pages are wrong.
 
   mailto "string"
  Default: operators.   A  comma  separated  list  of
  recipients for mail reports.


Gerhard,  <@jasongeo.com>   == The Acoustic Motorbiker ==   
-- 
   __O  Go placidly amid the noise and waste,
 =`\<,  And remember what comfort there may be in owning a piece thereof.
(=)/(=) Avoid quiet and passive persons, unless you are in need of sleep.




RE: Missing e-mail reports

2001-02-02 Thread Ben Hyatt


> and in your /etc aliases put this:
> 
> backup:   [EMAIL PROTECTED],[EMAIL PROTECTED],[EMAIL PROTECTED]
> 
> and you get what you want..
> at least, thats the way we do it.
> Christoph

don't forget to run 'newaliases'

-Ben




Re: Missing e-mail reports

2001-02-02 Thread Christoph Scheeder

Hi,
a short suggestion:
put this in your amanda.conf:
mailto "backup"

and in your /etc aliases put this:

backup: [EMAIL PROTECTED],[EMAIL PROTECTED],[EMAIL PROTECTED]

and you get what you want..
at least, thats the way we do it.
Christoph


"Victor R. Cain" schrieb:
> 
> Gerhard den Hollander wrote:
> >
> > * Victor R. Cain <[EMAIL PROTECTED]> (Fri, Feb 02, 2001 at 10:36:20AM -0500)
> > > The beginning of my configuration file looks like:
> > >  # /etc/amanda/Config1/amanda.conf
> > >  org "Config1"   # your organization name for reports
> > >  mailto "[EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]" # list
> > > of message recipients
> > >  dumpuser "backup"   # the user to run dumps
> > > under
> >
> > > Amcheck reports no errors, and the runs appear to be happening,
> > > but I'm getting no e-mail reports.  Is there something wrong
> > > with my "mailto" line?
> >
> > It tries to send email to
> > "[EMAIL PROTECTED] [EMAIL PROTECTED]
> > [EMAIL PROTECTED]"@whatever.your.default.domain.is
> >
> > try
> > mailto [EMAIL PROTECTED],[EMAIL PROTECTED],[EMAIL PROTECTED]
> >
> > Kind regards,
> >  --
> > Gerhard den Hollander   Phone +31-10.280.1515
> 
> I tried that line and amcheck gave all sorts of error messages,
> saying it expected a quoted string.  I also tried the quoted
> string with commas, with no difference.  
> 
> ---
> " Plus you have the wonderful narrative of how [Dubya] got where
> he now is. It took his brother, his father, his father's
> friends, the Florida secretary of state, and the Supreme Court
> to pull it off.  His entire life gives fresh meaning to the
> phrase 'assisted living.'"
> -- Gary Trudeau quoted in The New Yorker, Jan. 8, 2001
> ---
> Victor R. Cain [EMAIL PROTECTED](865)482-2597



Re: Missing e-mail reports

2001-02-02 Thread Dan Poirier

"name@IP Address" is not a valid address to send email to.  You must
use either "name@hostname" or "name@[IP address]".  This is in an RFC
somewhere.  I'd use name@hostname if I could; I'd not trust the mail
software to handle name@[IP address] correctly since it's used so
seldom.



Re: Missing e-mail reports

2001-02-02 Thread John R. Jackson

> mailto "[EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]" ...
>Amcheck reports no errors, and the runs appear to be happening, 
>but I'm getting no e-mail reports.  Is there something wrong 
>with my "mailto" line?

Gerhard was mistaken with his suggestion.  The "mailto" parameter must
be a string inside double quotes and the entries must be separated by
whitespace, not commas.

First, do an "amadmin xx version | grep MAILER".  That will give you the
program Amanda uses to send mail.  Then try it like this (substituting
the mail program name for ):

  echo "A test" \
   |  -s "Amanda testing" [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]

That's basically what Amanda does.  Make sure when you try this you use
the exact same path to the mail program amadmin reports.

You might also look in /tmp/amanda/amcheck*debug and see if it had any
complaints.

>Vic Cain

John R. Jackson, Technical Software Specialist, [EMAIL PROTECTED]



Re: Missing e-mail reports

2001-02-02 Thread Victor R. Cain

Gerhard den Hollander wrote:
> 
> * Victor R. Cain <[EMAIL PROTECTED]> (Fri, Feb 02, 2001 at 10:36:20AM -0500)
> > The beginning of my configuration file looks like:
> >  # /etc/amanda/Config1/amanda.conf
> >  org "Config1"   # your organization name for reports
> >  mailto "[EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]" # list
> > of message recipients
> >  dumpuser "backup"   # the user to run dumps
> > under
> 
> > Amcheck reports no errors, and the runs appear to be happening,
> > but I'm getting no e-mail reports.  Is there something wrong
> > with my "mailto" line?
> 
> It tries to send email to
> "[EMAIL PROTECTED] [EMAIL PROTECTED]
> [EMAIL PROTECTED]"@whatever.your.default.domain.is
> 
> try
> mailto [EMAIL PROTECTED],[EMAIL PROTECTED],[EMAIL PROTECTED]
> 
> Kind regards,
>  --
> Gerhard den Hollander   Phone +31-10.280.1515

I tried that line and amcheck gave all sorts of error messages, 
saying it expected a quoted string.  I also tried the quoted 
string with commas, with no difference.  

---
" Plus you have the wonderful narrative of how [Dubya] got where
he now is. It took his brother, his father, his father's  
friends, the Florida secretary of state, and the Supreme Court 
to pull it off.  His entire life gives fresh meaning to the 
phrase 'assisted living.'" 
-- Gary Trudeau quoted in The New Yorker, Jan. 8, 2001 
---
Victor R. Cain [EMAIL PROTECTED](865)482-2597



Re: Missing e-mail reports

2001-02-02 Thread Gerhard den Hollander

* Victor R. Cain <[EMAIL PROTECTED]> (Fri, Feb 02, 2001 at 10:36:20AM -0500)
> The beginning of my configuration file looks like:
>  # /etc/amanda/Config1/amanda.conf
>  org "Config1"   # your organization name for reports
>  mailto "[EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]" # list
> of message recipients
>  dumpuser "backup"   # the user to run dumps
> under

> Amcheck reports no errors, and the runs appear to be happening, 
> but I'm getting no e-mail reports.  Is there something wrong 
> with my "mailto" line?

It tries to send email to
"[EMAIL PROTECTED] [EMAIL PROTECTED]
[EMAIL PROTECTED]"@whatever.your.default.domain.is

try
mailto [EMAIL PROTECTED],[EMAIL PROTECTED],[EMAIL PROTECTED]

Kind regards,
 --
Gerhard den Hollander   Phone +31-10.280.1515
Technical Support Jason Geosystems BV   Fax   +31-10.280.1511
   (When calling please note: we are in GMT+1)
[EMAIL PROTECTED]  POBox 1573
visit us at http://www.jasongeo.com 3000 BN Rotterdam  
JASON...#1 in Reservoir CharacterizationThe Netherlands

  This e-mail and any attachment is/are intended solely for the named
  addressee(s) and may contain information that is confidential and privileged.
   If you are not the intended recipient, we request that you do not
 disseminate, forward, distribute or copy this e-mail message.
  If you have received this e-mail message in error, please notify us
   immediately by telephone and destroy the original message.