source: trunk/run_email2trac.h

Last change on this file was 628, checked in by bas, 11 years ago

renamed SARA to SURFsara

  • Property svn:keywords set to Id
File size: 1.1 KB
RevLine 
[5]1/*
[24]2
3SVN Info:
[593]4    $Id: run_email2trac.h 628 2013-06-18 10:05:30Z bas $
[24]5
[5]6Local site configuration
7Value defined here are just default values than can be overriden at compile time
8See Makefile.
[593]9
[628]10    Copyright 2002 SURFsara
[593]11
[595]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
[593]15
[595]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
[5]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
[21]38#define TRAC_SCRIPT_NAME "email2trac"
[5]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.