imapfilter/src/pathnames.h
Lefteris Chatzimparmpas e907fe5fdf Make OpenSSL a mandatory requirement
There is no point in having SSL/TLS IMAP support as optional, it's as
useful if not more than the the non-encrypted connections.

The Makefile was better organized to make it easier to change some
options during compile.

The SHAREDIR variable passed as configuration option has changed name.
2012-02-19 12:36:44 +01:00

31 lines
880 B
C

#ifndef PATHNAMES_H
#define PATHNAMES_H
/* Lua imapfilter set functions file. */
#define PATHNAME_COMMON CONFIG_SHAREDIR "/common.lua"
/* Lua imapfilter set functions file. */
#define PATHNAME_SET CONFIG_SHAREDIR "/set.lua"
/* Lua imapfilter account functions file. */
#define PATHNAME_ACCOUNT CONFIG_SHAREDIR "/account.lua"
/* Lua imapfilter mailbox functions file. */
#define PATHNAME_MAILBOX CONFIG_SHAREDIR "/mailbox.lua"
/* Lua imapfilter message functions file. */
#define PATHNAME_MESSAGE CONFIG_SHAREDIR "/message.lua"
/* Lua imapfilter message functions file. */
#define PATHNAME_OPTIONS CONFIG_SHAREDIR "/options.lua"
/* Lua imapfilter regex functions file. */
#define PATHNAME_REGEX CONFIG_SHAREDIR "/regex.lua"
/* Lua imapfilter auxiliary functions file. */
#define PATHNAME_AUXILIARY CONFIG_SHAREDIR "/auxiliary.lua"
#endif /* PATHNAMES_H */