source: emailtotracscript/0.9/run_email2trac.h @ 10

Last change on this file since 10 was 5, checked in by bas, 18 years ago

EmailtoTracScript?:

First release and import to track_hacks

File size: 491 bytes
Line 
1/*
2Local site configuration
3Value defined here are just default values than can be overriden at compile time
4See Makefile.
5*/
6
7/* User the MTA is running under */
8#ifndef MTA_USER
9#define MTA_USER "nobody"
10#endif
11
12/* A user with write access to Trac DB */
13#ifndef TRAC_USER
14#define TRAC_USER "www-data"
15#endif
16
17/* email2trac script name and path */
18#ifndef TRAC_SCRIPT_NAME
19#define TRAC_SCRIPT_NAME "email2trac.py"
20#endif
21#ifndef TRAC_SCRIPT_PATH
22#define TRAC_SCRIPT_PATH "/usr/bin"
23#endif
24
Note: See TracBrowser for help on using the repository browser.