- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- problems with sendmail
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
12-11-2002 05:03 AM
12-11-2002 05:03 AM
Any help would be greatly appreciated.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2002 09:08 AM
12-11-2002 09:08 AM
Re: problems with sendmail
The sendmail don't use the access database directly.
I think it was a performance decision.
It uses the compiled access database files:
(usually
dbm format.Defined in the sendmail.cf)
This is the following:
access.pag
access.dir
You should compile the access
database with the following
commands:
1. Edit your access file!
2. # cd /etc/mail
3. # mkdir orig
4. # cp access* ./orig
5. # cat ./access | /usr/sbin/makemap dbm access
It will create the new access.pag and access.dir files.Check the permission of this files:
6. # ls -al access*
7. stop your sendmail or
send them a SIGHUP process
Regards:
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2002 04:17 PM
12-11-2002 04:17 PM
SolutionIf you issue 'netstat -ntlp | grep sendmail', and see what IP addresses it's listening on, you should see one looking like '0.0.0.0:25'. If this only says '127.0.0.1:27', then it's configured to only listen on the loopback device.
To change this, check the sendmail.cf for a 'O DaemonPortOptions' line. If this has somethin glike 'Addr=127.0.0.1, name=MTA', then that's the cause. Get rid of the addr part.
If you have a working sendmail.mc file in /etc/mail/, you need to dnl the line "DAEMON_OPTIONS(`port=smtp,Addr=127.0.0.1, Name=MTA')", and re-generate your cf file using 'm4 sendmail.mc > /etc/sendmail.cf'.
Hope this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2002 11:46 PM
12-11-2002 11:46 PM
Re: problems with sendmail
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2002 02:52 PM
12-12-2002 02:52 PM
Re: problems with sendmail
service sendmail restart
should suffice.