- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: sendmail 8 start sm-client only
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
06-24-2004 03:20 AM
06-24-2004 03:20 AM
sendmail 8 start sm-client only
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2004 04:32 AM
06-24-2004 04:32 AM
Re: sendmail 8 start sm-client only
If the system is exposed on the Internet, do secure any sendmail/cgi scripts as they can be used to relay spam and don't need a sendmail daemon running to work.
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
06-24-2004 04:56 AM
06-24-2004 04:56 AM
Re: sendmail 8 start sm-client only
service sendmail start
Starting sendmail: [ OK ]
Starting sm-client: [ OK ]
ps -ef | grep send
root 4738 1 0 12:51 ? 00:00:00 sendmail: accepting connections
smmsp 4747 1 0 12:51 ? 00:00:00 sendmail: Queue runner@01:00:00 for /var/spool/clientmqueue
When I stop sendmail and try to send an email I get the following:
sendmail -v xxx@xxx.com
test email text
.
root... Connecting to [127.0.0.1] via relay...
root... Deferred: Connection refused by [127.0.0.1]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2004 11:12 AM
06-24-2004 11:12 AM
Re: sendmail 8 start sm-client only
That does keep spammers from abusing you server, but can safely be openned up a bit.
/etc/mail/access
127.0.01 RELAY
Save the file
Make sure no external email addresses allow relay, while you look at that file.
Next you want to put that change into production. go to http://www.sendmail.org and make a m4 macro script.
This will build you a new sendmail.cf file and put it in production. You can cut and paste the code. I've posted a good script called buildmail that does the same thing.
Did you run my diagnostic?
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
06-25-2004 12:30 AM
06-25-2004 12:30 AM
Re: sendmail 8 start sm-client only
localhost.localdomain RELAY
localhost RELAY
127.0.0.1 RELAY
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2004 10:55 AM
06-28-2004 10:55 AM
Re: sendmail 8 start sm-client only
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2004 03:03 AM
07-22-2004 03:03 AM
Re: sendmail 8 start sm-client only
Port=smtp,Addr=192.xxx.xxx.xxx, Name=MTA.
This is the address of the box hosting my mail server in the dmz.
With this conguration I would get relaying denied when any of the system logs tried to send me messages. So I experimented with sendmail.conf and added a line:
Port=smtp,Addr=127.0.0.1, Name=MTA
I stopped sendmail and restarted it with no error messages. Previously I got relaying denied
When I do this:
mail -v -s "test email" soandso@soandso.com < /dev/null
I get no longer get error messages.