Cowles, Steve schrieb:
I don't know if redhat documents its init scripts, but the files stored in
/etc/sysconfig are sourced by the various redhat init scripts
(/etc/init.d/*). With regards to your post, the queue=1h would be expanded
to "sendmail -q1h" within the init script on sendmail startup.
$ vi /usr/share/doc/initscripts-*/sysconfig.txt
etc/sysconfig/sendmail:
DAEMON=yes|no
yes implies -bd (i.e., listen on port 25 for new mail)
QUEUE=1h
given to sendmail as -q$QUEUE
-q option is not given to sendmail if /etc/sysconfig/sendmail
exists and QUEUE is empty or undefined.
--
shrek-m