source: trunk/run_email2trac.h @ 593

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

Changed license to apache version 2.0

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