- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Sendmail and Bounced mail:
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2001 10:52 AM
07-02-2001 10:52 AM
Sendmail and Bounced mail:
For instance when a user sends email to a non valid user (typo or otherwise), I (root) gets a copy of the bounced mail.
I would like to created a customized message (containing proper contact information)for all such mail that are undeliverable.
How can I accomplish this?
The O'reilly sendmail book did not provide any help on this.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2001 12:35 PM
07-02-2001 12:35 PM
Re: Sendmail and Bounced mail:
But if I understand your question, you want to supply the CORRECTED mail address in the custom reply and that is not so easy. Depending on the "size" of the typo, finding a match may be impossible or worse, ambiguous.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2001 08:17 AM
07-03-2001 08:17 AM
Re: Sendmail and Bounced mail:
All I wanted to do is to send an auto reply (containing some generic message which I will create)to senders for ALL bounced mail (copies get sent to mailer-daemon which gets forwarded to root.
I do not want to parse any of the headers or second guess the intended recepients.
Is there any way to send back a generic message for all bounced messages coming from mailer-daemon?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2001 07:15 PM
07-03-2001 07:15 PM
Re: Sendmail and Bounced mail:
It can select the messages based on a regular
expression on the heads and/or body of the message.
You then can forward, redirect, or process the
file in any way you wish including generating a reply.
procmail man pages include procmail, procmailrc, and
procmailex (examples).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-06-2001 06:52 AM
07-06-2001 06:52 AM
Re: Sendmail and Bounced mail:
My sendmail.cf file has this entry:
# error message header/file
#O ErrorHeader=/etc/mail/error-header
This looks like what you're looking for... fill the error-header file with your text.
I'm using sendmail 8.11.1, which may be newer than your version. This is an "option" to sendmail. You can go to www.sendmail.org to get an updated version, if need be.
An easy way to check your sendmail revision is to "telnet myserver 25", and it will spit out a like like this:
220 gateway.penmax.com ESMTP Sendmail 8.11.1/8.11.1; Fri, 6 Jul 2001 10:57:12 -0
400 (EDT)
(type quit to get out)
Good luck.