- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- when does sendmail try to resend a failed message?
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
Discussions
Discussions
Discussions
Forums
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
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
тАО12-17-2002 11:50 AM
тАО12-17-2002 11:50 AM
My questions: How does sendmail know to wait 24 hours before it tries to resend the message? Where is it set? What is this configuration term called anyway?
Steve
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-17-2002 12:29 PM
тАО12-17-2002 12:29 PM
SolutionUse these timeouts (in sendmail.cf) to tune the timing:
O Timeout.queuereturn=5d
#O Timeout.queuereturn.normal=5d
#O Timeout.queuereturn.urgent=2d
#O Timeout.queuereturn.non-urgent=7d
O Timeout.queuewarn=4h
#O Timeout.queuewarn.normal=4h
#O Timeout.queuewarn.urgent=1h
#O Timeout.queuewarn.non-urgent=12h
sendmail will attempt to resend the mail each time the queue is run (unless you've configured sendmail not to attempt a resend unless the message is older than a configured age--see MinQueueAge).
The config I referenced will return (bounce) a message in five days - it'll send a warning to the sender in 4 hours).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-17-2002 12:36 PM
тАО12-17-2002 12:36 PM
Re: when does sendmail try to resend a failed message?
I know I am running sendmail -bd -q30m.
So does this mean it is trying every 30 minutes? If that is the case, something external is probably holding it off for 24 hours.
What do you think?
STeve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-17-2002 12:41 PM
тАО12-17-2002 12:41 PM
Re: when does sendmail try to resend a failed message?
Find the original message ID number (hint: type the command mailq), then search for that number in the mail.log file. You'll see the retries and also the failure messages.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-17-2002 12:44 PM
тАО12-17-2002 12:44 PM
Re: when does sendmail try to resend a failed message?
STeve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-18-2002 07:14 AM
тАО12-18-2002 07:14 AM
Re: when does sendmail try to resend a failed message?
, QueueSortOrder
, etc.
It sounds like Steve may be taking the queuewarn message for a retry. Default for Timeout.queuewarn is four hours, but could be set to 24 at his site.