140981Sbostic /*- 262527Sbostic * Copyright (c) 1990, 1993 362527Sbostic * The Regents of the University of California. All rights reserved. 440981Sbostic * 540981Sbostic * %sccs.include.redist.c% 640981Sbostic * 7*69935Seric * @(#)pathnames.h 8.4 (Berkeley) 06/19/95 840981Sbostic */ 940981Sbostic 1058156Seric #ifndef _PATH_SENDMAILCF 11*69935Seric # if defined(USE_VENDOR_CF_PATH) && defined(_PATH_VENDOR_CF) 12*69935Seric # define _PATH_SENDMAILCF _PATH_VENDOR_CF 13*69935Seric # else 14*69935Seric # define _PATH_SENDMAILCF "/etc/sendmail.cf" 15*69935Seric # endif 1658156Seric #endif 1758156Seric 1858155Seric #ifndef _PATH_SENDMAILPID 1958155Seric # ifdef BSD4_4 2058155Seric # define _PATH_SENDMAILPID "/var/run/sendmail.pid" 2158155Seric # else 2258155Seric # define _PATH_SENDMAILPID "/etc/sendmail.pid" 2358155Seric # endif 2458136Seric #endif 2569401Seric 2669401Seric #ifndef _PATH_HOSTS 2769401Seric # define _PATH_HOSTS "/etc/hosts" 2869401Seric #endif 29