Ask a Question related to AIX, Design and Development.
-
casey #1
Stop sendmail expanding
I use Mail::Audit to reject certain emails. The originator
of the rejected email gets this
----- The following addresses had permanent fatal
errors -----
"|/home/prz/chmail.pl"
(reason: 100)
(expanded from: <prz@canczech.com>)
----- Transcript of session follows -----
Not interested! at
/usr/local/lib/perl5/site_perl/5.8.0/Mail/Audit.pm line 582.
554 5.3.0 unknown mailer error 100
I would like to suppress everything but the words Not
interested (an argument to the reject function in
Mail::Audit.
I put PrivacyOptions=goaway into the sendmail.cf but that
did not do anything. I searched the web on various strings
but I could not find anything.
casey Guest
-
expanding banner HELP
Hi, I need to design a banner that expands down over existing page content when moused over, and retracts when moused off. I have designed a flash... -
STOP=Save The Opticles People! ... Stop Flashs flashing!
:| WHEN will they ever learn, our eyes are not to be played with. Imagin putting on a blindfold on for 1 - 24hr period & TRY to go about there... -
expanding paragraphs
I am creating a FAQ page and want to disply only the questions but have the answer to the question appear (become visibile) when the end-user clicks... -
How to stop font width expanding when textbox is resized
How to stop font width expanding when textbox is resized Hi, I am new to this Forum and to Fireworks MX. I am trying to create buttons and... -
Howto stop folder from expanding when moving items into it
Folks, Is it possible to stop folders from expanding when moving items into them? (annoying) I can't find an option to turn this on or off. ... -
Nicholas Dronen #2
Re: Stop sendmail expanding
casey <casey.i@sympatico.ca> wrote:
c> I use Mail::Audit to reject certain emails. The originator
c> of the rejected email gets this
c> ----- The following addresses had permanent fatal
c> errors -----
c> "|/home/prz/chmail.pl"
c> (reason: 100)
c> (expanded from: <prz@canczech.com>)
c> ----- Transcript of session follows -----
c> Not interested! at
c> /usr/local/lib/perl5/site_perl/5.8.0/Mail/Audit.pm line 582.
c> 554 5.3.0 unknown mailer error 100
Looks to me that the message comes from perl's warn().
$ cat warntest
#!/usr/bin/perl
warn "Not interested!";
$ ./warntest
Not interested! at ./warntest line 2.
If you just want to get rid of the path, add a newline to
the end of the argument to warn():
$ cat warntest
#!/usr/bin/perl
warn "Not interested!\n"; <-- \n goes there
$ ./warntest
Not interested!
Regards,
Nicholas
--
"Why shouldn't I top-post?" [url]http://www.aglami.com/tpfaq.html[/url]
"Meanings are another story." [url]http://www.ifas.org/wa/glossolalia.html[/url]
Nicholas Dronen Guest



Reply With Quote

