File: lists.h

package info (click to toggle)
hypermail 2.2.0-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 5,732 kB
  • ctags: 3,176
  • sloc: ansic: 34,794; sh: 13,432; yacc: 844; makefile: 775; perl: 744; python: 292
file content (47 lines) | stat: -rw-r--r-- 1,468 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
**  FILE:          lists.h  - %W% %G% 
**  AUTHOR:        Kent Landfield
**
**  ABSTRACT:      Define the lists supported by hypermail
**
** This software is Copyright (c) 1996 by Kent Landfield.
**
** Permission is hereby granted to copy, distribute or otherwise 
** use any part of this package as long as you do not try to make 
** money from it or pretend that you wrote it.  This copyright 
** notice must be maintained in any copy made.
**                                                               
*/

#ifdef HYPERDEV

#define HYPERMAIL    "/usr/local/bin/hypermail"
#define ARCHIVE      "/ftp/hypermail/mail-archive"
#define MAILBOXDIR   "/ftp/hypermail/mail-archive/mailbox"
#define LABEL        "Hypermail Development List"
#define ABOUT_LINK   "/hypermail/mail-archive"
#define LISTNAME     "hypermail"
#define CONFIGFILE   "/usr/local/lib/hypermail/hypermail.rc"

#else
# ifdef HYPERTEST

#define HYPERMAIL    "../src/hypermail"
#define ARCHIVE      "../tests/mail-archive"
#define MAILBOXDIR   "../tests/mail-archive/mailbox"
#define LABEL        "Hypermail Test Archive"
#define ABOUT_LINK   "../"
#define LISTNAME     "hypermail-test"
#define CONFIGFILE   "../tests/test.rc"

# else
#define HYPERMAIL    "/usr/local/bin/hypermail"
#define ARCHIVE      "NONE"
#define MAILBOXDIR   "NONE"
#define LABEL        "NONE"
#define ABOUT_LINK   "NONE"
#define LISTNAME     "NONE"
#define CONFIGFILE   "NONE"

# endif /* HYPERTEST */
#endif /* HYPERDEV */