- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Emails not sending if daemon not running
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
05-12-2003 09:18 AM
05-12-2003 09:18 AM
Emails not sending if daemon not running
sendmail -q -Ac
any suggestions as to how to fix it so it will send these emails even if the daemon is down?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2003 09:24 AM
05-12-2003 09:24 AM
Re: Emails not sending if daemon not running
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2003 09:30 AM
05-12-2003 09:30 AM
Re: Emails not sending if daemon not running
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2003 10:05 AM
05-12-2003 10:05 AM
Re: Emails not sending if daemon not running
Last I checked the highest version HP supports with depot distribution is 8.11.1 There is probably a pretty good reason for this.
What happens when you run /sbin/init.d/sendmail start
Does the daemon keep running? If not there is something in this release.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2003 10:14 AM
05-12-2003 10:14 AM
Re: Emails not sending if daemon not running
RR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2003 10:16 AM
05-12-2003 10:16 AM
Re: Emails not sending if daemon not running
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2003 10:57 AM
05-12-2003 10:57 AM
Re: Emails not sending if daemon not running
I rarely ever question what you've written, but I'm pretty sure that you don't need to have sendmail running in the background in order to SEND an email message. Now, the original request is implying that this condition may have changed, but your message implies it's always been required to have sendmail running as a daemon even if only to send an email. Could you clarify your understanding of this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2003 11:18 AM
05-12-2003 11:18 AM
Re: Emails not sending if daemon not running
sendmail -bd -q30m says listen on port 25 for inbound mail requests and run the mail queue every 30 minutes.
sendmail -q30m says DON'T listen on port 25 for inbound mail requests, but still run the queue every 30 minutes -- a good configuration if you like to send but not receive.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2003 02:15 PM
05-12-2003 02:15 PM
Re: Emails not sending if daemon not running
-r-sr-sr-t 1 root mail 864256 Apr 16 10:21 /usr/sbin/sendmail
hth
mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2003 09:57 PM
05-12-2003 09:57 PM
Re: Emails not sending if daemon not running
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2003 04:27 AM
05-13-2003 04:27 AM
Re: Emails not sending if daemon not running
h4DCLlFb029149 1282 Tue May 13 08:21 root
(Deferred: Connection refused by [127.0.0.1])
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2003 04:45 AM
05-13-2003 04:45 AM
Re: Emails not sending if daemon not running
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2003 05:37 AM
05-16-2003 05:37 AM
Re: Emails not sending if daemon not running
h4DCLlFb029149 1282 Tue May 13 08:21 root
(Deferred: Connection refused by [127.0.0.1])
This seems like a misconfiguration - when you tell sendmail to queue only, everything should be normal except sendmail isn't recieving tcp connections.
If mail appears to be local [e.g. user], sendmail should use the local delivery agent and never hit tcp.
If you qualify the address [e.g. user@domain], the queue only technique will work iff the address or MX for domain is on another host [since this host isn't recieving mail].
In your case, sendmail is hitting the SMTP mail, since it thinks mail is going to user@localhost as opposed to user. You've told sendmail not to accept tcp connections, so mail isn't deliver to user@localhost [i.e. user@127.0.0.1].
Have you configured your sendmail to qualify unqualified senders?
Are you running DNS?
Who does your sendmail think it is? (Post the results of
/usr/sbin/sendmail -v -d0.4 root < /dev/null)