source: trunk/run_email2trac.h @ 184

Last change on this file since 184 was 24, checked in by bas, 18 years ago

EmailtoTracScript?:

email2trac:

  • we can now set the default poth for the config file with configure for email2trac.py
  • Added svn keywords for all the files
  • Updated the install doc
  • Property svn:keywords set to Id
File size: 528 bytes
Line 
1/*
2
3AUTHOR: Michel Jouvin
4SVN Info:
5        $Id: run_email2trac.h 24 2006-01-15 12:46:09Z bas $
6
7Local site configuration
8Value defined here are just default values than can be overriden at compile time
9See Makefile.
10*/
11
12/* User the MTA is running under */
13#ifndef MTA_USER
14#define MTA_USER "nobody"
15#endif
16
17/* A user with write access to Trac DB */
18#ifndef TRAC_USER
19#define TRAC_USER "www-data"
20#endif
21
22/* email2trac script name and path */
23#ifndef TRAC_SCRIPT_NAME
24#define TRAC_SCRIPT_NAME "email2trac"
25#endif
26#ifndef TRAC_SCRIPT_PATH
27#define TRAC_SCRIPT_PATH "/usr/bin"
28#endif
29
Note: See TracBrowser for help on using the repository browser.