If sendmail isn't installed, syslog is used. This patch should
also solve problem with RPM requirements of sendmail
(and which mail should be installed by default).
Based on: https://bugzilla.redhat.com/show_bug.cgi?id=472710#c42
If inotify support is in use, changes in the symlinked crontabs are not automatically
noticed by the cron daemon. The cron daemon must receive a SIGHUP to reload the crontabs.
This is a limitation of inotify API.
+The syslog output will be used instead of mail, when sendmail isn't installed.
.SH "SEE ALSO"
.BR crontab (1),
}
}
+ if (access("/usr/sbin/sendmail", X_OK) != 0) {
+ SyslogOutput=1;
+ log_it("CRON", pid, "INFO","Syslog will be used instead of sendmail.", errno);
+ }
+
pid = getpid();
acquire_daemonlock(0);
database.head = NULL;