Stop sendmail expanding

Ask a Question related to AIX, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. 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. ...
  3. #2

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139