- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Another Sendmail Question
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
03-10-2003 06:48 AM
03-10-2003 06:48 AM
Another Sendmail Question
I shutdown sendmail to hopefully avoid the sendmail vulnerability. However, I am still able to send mail from my J6000 to local and remote mail accounts.
Do I still need to worry about the sendmail vulnerability since ssendmail is shutdown?
How come I can still send messages?
Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2003 06:52 AM
03-10-2003 06:52 AM
Re: Another Sendmail Question
The sendmail that you've disabled is the listening daemon (together with maybe a queue run timing switch), e.g.
/usr/lib/sendmail -bd -q15m
The ability to send out is not affected by you switching the daemon off, since sendmail can simply be run as a one-off command to "send mail".
rgds, Robin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2003 07:01 AM
03-10-2003 07:01 AM
Re: Another Sendmail Question
Indeed sendmail can run as a daemon (permanent) to receive incomming emails(connections). But if installed and set your DS
The period sendmail opens a connection is very short to send an e-mail, so security risc, yep sure but very minim.
/usr/lib/sendmail -q will be able to send e-mails at a specific time using cron. So, you take the choise what you want. Remove sendmail, or just minimize the impact.
Regs David
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2003 07:24 AM
03-10-2003 07:24 AM
Re: Another Sendmail Question
Receiving email can be easily enought disabled.
I know about .mailrc or .forward files for example.
But to disable sendmail permanantly edit file /etc/rc.config.d/mailservs file and replace
export SENDMAIL_SERVER=1
with
export SENDMAIL_SERVER=0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2003 07:27 AM
03-10-2003 07:27 AM
Re: Another Sendmail Question
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2003 05:15 AM
03-11-2003 05:15 AM
Re: Another Sendmail Question
*Please* correct me if I am wrong. I would sleep better and so would many others.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2003 05:33 AM
03-11-2003 05:33 AM
Re: Another Sendmail Question
Thanks for sharing your concern. Since I'm inside a firewall and we don't use sendmail for anything except to mail cron status, I thought shutting down sendmail would prevent the problem from occurring.
One thing I noticed is that I still get my cron status mail messages, but I can't send messages to accounts on the system where sendmail is stopped. I can also send from the system where sendmail is stopped.
Does anyone know when a RELEASED patch will be available? I am reluctant to install the binary fix since some sites are having problems and it hasn't gone through all of its testing.
Are there any other options?
Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2003 05:39 AM
03-11-2003 05:39 AM
Re: Another Sendmail Question
Dot files like .forward and .mailrc allow for executables and are subject to hijacking and certainly a security issue, especially if its world readable. /etc/mail/alias is recommended instead.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2003 05:54 AM
03-11-2003 05:54 AM
Re: Another Sendmail Question
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2003 05:56 AM
03-11-2003 05:56 AM
Re: Another Sendmail Question
Yes, I know of the dangers of non-safe/closed .forward and .mailrc files, but my point was that even if they *are* safe/closed, they do not (completely) disable *this* (sendmail) vulnerability.