source: trunk/run_email2trac.h @ 622

Last change on this file since 622 was 595, checked in by bas, 12 years ago

changed license header, see #292, thanks

  • Property svn:keywords set to Id
File size: 1.1 KB
Line 
1/*
2
3SVN Info:
4    $Id: run_email2trac.h 595 2012-05-02 06:08:50Z bas $
5
6Local site configuration
7Value defined here are just default values than can be overriden at compile time
8See Makefile.
9
10    Copyright 2002 SARA
11
12    Licensed under the Apache License, Version 2.0 (the "License");
13    you may not use this file except in compliance with the License.
14    You may obtain a copy of the License at
15
16    http://www.apache.org/licenses/LICENSE-2.0
17
18    Unless required by applicable law or agreed to in writing, software
19    distributed under the License is distributed on an "AS IS" BASIS,
20    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21    See the License for the specific language governing permissions and
22    limitations under the License.
23
24*/
25
26/* User the MTA is running under */
27#ifndef MTA_USER
28#define MTA_USER "nobody"
29#endif
30
31/* A user with write access to Trac DB */
32#ifndef TRAC_USER
33#define TRAC_USER "www-data"
34#endif
35
36/* email2trac script name and path */
37#ifndef TRAC_SCRIPT_NAME
38#define TRAC_SCRIPT_NAME "email2trac"
39#endif
40#ifndef TRAC_SCRIPT_PATH
41#define TRAC_SCRIPT_PATH "/usr/bin"
42#endif
Note: See TracBrowser for help on using the repository browser.