Forum Moderators: bakedjake
I also executed:
chmod go-w / /etc /etc/mail /usr /var /var/spool /var/spool/mqueue
chown root / /etc /etc/mail /usr /var /var/spool /var/spool/mqueue
I created alises file
1. touch aliases
2. sendmail -v -bi
I doublechecked also permissions for:
-r-xr-sr-x root smmsp ... /PATH/TO/sendmail
drwxrwx--- smmsp smmsp ... /var/spool/clientmqueue
drwx------ root wheel ... /var/spool/mqueue
-r--r--r-- root wheel ... /etc/mail/sendmail.cf
-r--r--r-- root wheel ... /etc/mail/submit.cf
I'm not able to start sendmail as a daemon:
in /usr/sbin I'm executing sendmail -bd -q15m
and sendmail dosn't start, and syslog says:
Dec 16 07:15:43 whatever4 sendmail[12239]: daemon invoked without full
pathname; kill -1 won't work
Dec 16 07:15:43 whatever4 sendmail[12240]: starting daemon (8.13.2):
SMTP+queue...@00:15:00
When I'm strying to run sendmail using sendmail -bD it says
"segmentation fault".
I think it's worth to say that I had sendmail running once, at the very
beginning. Then I tried to use some more features like virtusertable
etc.. and since I'm not I able to run it with a basic configuration.
Any ideas?
Thx.
Sendmail is great, but maybe you're looking for something else (postfix/qmail) if you need virtual users, etc. May be easier. :)
Dec 16 07:15:43 whatever4 sendmail[12239]: daemon invoked without full
pathname; kill -1 won't work
Dec 16 07:15:43 whatever4 sendmail[12240]: starting daemon (8.13.2):
SMTP+queue...@00:15:00
I'm not sure if the segfaults are caused by this, but that first error is complaining that you didn't use the full path when calling SM. use /sbin/sendmail -bD instead.
You may also want to turn up the debugging values. man sendmail has:
-dX Set debugging value to X.
So try "/sbin/sendmail -bD -d10", and see if you can track down any more information.
HTH,
MM