1# -*- indent-tabs-mode: nil; -*-
2# vim:ft=perl:et:sw=4
3# $Id$
4
5# Test stub for Sympa::Constants;
6
7package Sympa::Constants;
8
9use constant VERSION => '6.2.52';
10use constant USER    => [getpwuid $<]->[0];
11use constant GROUP   => [getgrgid $(]->[0];
12
13use constant CONFIG           => 't/tmp/etc/sympa.conf';
14use constant WWSCONFIG        => 't/tmp/etc/wwsympa.conf';
15use constant SENDMAIL_ALIASES => 't/tmp/etc/mail/sympa_aliases';
16
17use constant PIDDIR      => 't/tmp';
18use constant EXPLDIR     => 't/tmp/list_data';
19use constant SPOOLDIR    => 't/tmp/spool';
20use constant SYSCONFDIR  => 't/tmp/etc';
21use constant LOCALEDIR   => 't/locale';
22use constant LIBEXECDIR  => 't/tmp/bin';
23use constant SBINDIR     => 't/tmp/bin';
24use constant SCRIPTDIR   => 't/tmp/bin';
25use constant MODULEDIR   => 't/tmp/bin';
26use constant DEFAULTDIR  => 'default';
27use constant ARCDIR      => 't/tmp/arc';
28use constant BOUNCEDIR   => 't/tmp/bounce';
29use constant EXECCGIDIR  => 't/tmp/bin';
30use constant STATICDIR   => 't/tmp/static_content';
31use constant CSSDIR      => 't/tmp/static_content/css';
32use constant PICTURESDIR => 't/tmp/static_content/pictures';
33
34use constant EMAIL_LEN  => 100;
35use constant FAMILY_LEN => 50;
36use constant LIST_LEN   => 50;
37use constant ROBOT_LEN  => 80;
38
391;
40
41