File: pathnames.h

package info (click to toggle)
imapfilter 1%3A1.2.2-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 300 kB
  • ctags: 315
  • sloc: ansic: 3,392; sh: 182; makefile: 103
file content (24 lines) | stat: -rw-r--r-- 637 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef PATHNAMES_H
#define PATHNAMES_H


/* Program's home directory. */
#define PATHNAME_HOME			".imapfilter"

/* Program's configuration file. */
#define PATHNAME_CONFIG			PATHNAME_HOME "/config.lua"

/* Lua imapfilter interface functions file. */
#define PATHNAME_INTERFACE		MAKEFILE_SHAREDIR "/interface.lua"

/* Lua imapfilter auxiliary functions file. */
#define PATHNAME_AUXILIARY		MAKEFILE_SHAREDIR "/auxiliary.lua"

/* SSL/TLS certificates file. */
#define PATHNAME_CERTS			PATHNAME_HOME "/certificates"

/* Debug temporary file template. */
#define PATHNAME_DEBUG			PATHNAME_HOME "/debug.XXXXXX"


#endif				/* PATHNAMES_H */