|
|
perms
Does anyone know if the old directory permissions problem still exists in 10.2? Has Apple corrected this?
perms
Yes the problem is still there in 10.2. I use this script:
/System/Library/StartupItems/KeepSendmailHappy/KeepSendmailHappy
#!/bin/sh
. /etc/rc.common
##
# Mail server maintenance
##
if [ "${MAILSERVER:=-NO-}" = "-YES-" ]; then
ConsoleMessage "Keeping Sendmail happy"
chmod g-w / /etc /etc/mail
chmod 2555 /usr/sbin/sendmail
chown smmsp.smmsp /var/spool/clientmqueue
chmod 700 /var/spool/mqueue
chown root.wheel /etc/mail/submit.cf
ConsoleMessage "Sending unsent mail spool files"
# I have some mail sitting in /var/spool/clientmqueue that never
# seems to get sent. "mailq -Ac" claims that the queue is empty,
# but looking in the directory I see a large amount of held mail.
/usr/sbin/sendmail -Ac -q -v
fi
perms (DontBlameSendmail)
Instead of doing "chmod g-w / /etc /etc/mail ", I commented out the following line with a #:
O DontBlameSendmail=safeand added below it: O DontBlameSendmail=GroupWritableDirPathSafein the /etc/mail/sendmail.cf file. More information on that option and others are available at: http://www.sendmail.org/tips/DontBlameSendmail.html.
Re: perms
Permission problems must still exist. When I try to start sendmail, I get this... |
SearchFrom our Sponsor...Latest Mountain Lion HintsWhat's New:HintsNo new hintsComments last 2 daysLinks last 2 weeksNo recent new linksWhat's New in the Forums?
Hints by TopicNews from Macworld
From Our Sponsors |
|
Copyright © 2014 IDG Consumer & SMB (Privacy Policy) Contact Us All trademarks and copyrights on this page are owned by their respective owners. |
Visit other IDG sites: |
|
|
|
Created this page in 0.09 seconds |
|