/usr/include/inn/paths.h is in inn2-dev 2.5.3-3ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | /* $Id: paths.h.in 9146 2010-10-30 09:55:04Z iulius $ -*- c -*-
** include/inn/paths.h. Generated from paths.h.in by configure.
**
** Here be #define's for filenames, socket names, environment variables,
** and so on.
*/
#ifndef INN_PATHS_H
#define INN_PATHS_H 1
/*
** PATHS TO FILES AND SOCKETS
**
** Default prefixes can be overridden by defining the constant to a full
** path. That magic is handled by concatpath. All of these defines
** start with "INN_PATH_".
*/
/* Must be an absolute path since it defines the other prefixes. */
#define INN_PATH_CONFIG "/etc/news/inn.conf"
/* Default prefix path is pathbin. */
#define INN_PATH_NNRPD "nnrpd"
#define INN_PATH_NNTPD "nnrpd"
#define INN_PATH_AUTHDIR "auth"
#define INN_PATH_AUTHDIR_GENERIC "generic"
#define INN_PATH_AUTHDIR_NOPASS "resolv"
#define INN_PATH_AUTHDIR_PASSWD "passwd"
#define INN_PATH_CTLINND "ctlinnd"
#define INN_PATH_RNEWSPROGS "rnews.libexec"
/* Default prefix path is pathfilter. */
#define INN_PATH_PERL_STARTUP_INND "startup_innd.pl"
#define INN_PATH_PERL_FILTER_INND "filter_innd.pl"
#define INN_PATH_PERL_FILTER_NNRPD "filter_nnrpd.pl"
#define INN_PATH_PERL_AUTH "nnrpd_auth.pl"
#define INN_PATH_PYTHON_STARTUP "filter_innd.py"
#define INN_PATH_PYTHON_STARTUP_M "filter_innd"
#define INN_PATH_PYTHON_AUTH_M "nnrpd_auth"
/* Default prefix path is pathrun. */
#define INN_PATH_NNTPCONNECT "nntpin"
#define INN_PATH_NEWSCONTROL "control"
#define INN_PATH_TEMPSOCK "ctlinndXXXXXX"
#define INN_PATH_SERVERPID "innd.pid"
#define INN_PATH_REBUILDOVERVIEW ".rebuildoverview"
/* Default prefix path is pathdb. */
#define INN_PATH_HISTORY "history"
#define INN_PATH_ACTIVE "active"
#define INN_PATH_NEWACTIVE "active.tmp"
#define INN_PATH_OLDACTIVE "active.old"
#define INN_PATH_ACTIVETIMES "active.times"
#define INN_PATH_NEWSGROUPS "newsgroups"
/* Default prefix path is pathetc. */
#define INN_PATH_NEWSFEEDS "newsfeeds"
#define INN_PATH_INNDHOSTS "incoming.conf"
#define INN_PATH_DISTPATS "distrib.pats"
#define INN_PATH_NNRPDIST "distributions"
#define INN_PATH_NNRPSUBS "subscriptions"
#define INN_PATH_CLIENTACTIVE "active"
#define INN_PATH_MODERATORS "moderators"
#define INN_PATH_SERVER "server"
#define INN_PATH_NNTPPASS "passwd.nntp"
#define INN_PATH_NNRPACCESS "readers.conf"
#define INN_PATH_EXPIRECTL "expire.ctl"
#define INN_PATH_MOTD_INND "motd.innd"
#define INN_PATH_MOTD_NNRPD "motd.nnrpd"
#define INN_PATH_STORAGECTL "storage.conf"
#define INN_PATH_RADIUS_CONFIG "radius.conf"
#define INN_PATH_FILESYSTEMS "filesystems"
/* Default prefix path is pathspool. */
#define INN_PATH_SPOOL "articles"
#define INN_PATH_BADNEWS "bad"
/* Default prefix path is pathlog. */
#define INN_PATH_LOGFILE "news"
#define INN_PATH_ERRLOG "errlog"
/* Paths to various programs. */
#define INN_PATH_COMPRESS "compress"
#define INN_PATH_GZIP "/bin/gzip"
#define INN_PATH_SORT "/usr/bin/sort"
/* Absolute paths. */
#define INN_PATH_TMP "/var/spool/news/incoming/tmp"
#define INN_PATH_RNEWS_DUP_LOG "/dev/null"
/* Always relative to pathtmp. */
#define INN_PATH_TEMPACTIVE "activeXXXXXX"
#define INN_PATH_TEMPMODERATORS "moderatorsXXXXXX"
/*
** ENVIRONMENT VARIABLES
*/
/* The host name of the NNTP server, for client posting. */
#define INN_ENV_NNTPSERVER "NNTPSERVER"
/* The Organization header line, for client posting. */
#define INN_ENV_ORGANIZATION "ORGANIZATION"
/* What to put in the From line, for client posting. */
#define INN_ENV_FROMHOST "FROMHOST"
/* UUCP host, for rnews. */
#define INN_ENV_UUCPHOST "UU_MACHINE"
/* Interface to bind as, for sockets. */
#define INN_ENV_INNBINDADDR "INND_BIND_ADDRESS"
#endif /* INN_PATHS_H */
|