← Index
NYTProf Performance Profile   « line view »
For /usr/local/libexec/sympa/task_manager-debug.pl
  Run on Tue Jun 1 22:32:51 2021
Reported on Tue Jun 1 22:35:07 2021

Filename/usr/local/libexec/sympa/Sympa/Constants.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
0000s0sSympa::Constants::::ARCDIRSympa::Constants::ARCDIR (xsub)
0000s0sSympa::Constants::::BEGIN@30Sympa::Constants::BEGIN@30
0000s0sSympa::Constants::::BEGIN@32Sympa::Constants::BEGIN@32
0000s0sSympa::Constants::::BEGIN@33Sympa::Constants::BEGIN@33
0000s0sSympa::Constants::::BEGIN@34Sympa::Constants::BEGIN@34
0000s0sSympa::Constants::::BEGIN@36Sympa::Constants::BEGIN@36
0000s0sSympa::Constants::::BEGIN@37Sympa::Constants::BEGIN@37
0000s0sSympa::Constants::::BEGIN@38Sympa::Constants::BEGIN@38
0000s0sSympa::Constants::::BEGIN@40Sympa::Constants::BEGIN@40
0000s0sSympa::Constants::::BEGIN@41Sympa::Constants::BEGIN@41
0000s0sSympa::Constants::::BEGIN@42Sympa::Constants::BEGIN@42
0000s0sSympa::Constants::::BEGIN@43Sympa::Constants::BEGIN@43
0000s0sSympa::Constants::::BEGIN@44Sympa::Constants::BEGIN@44
0000s0sSympa::Constants::::BEGIN@45Sympa::Constants::BEGIN@45
0000s0sSympa::Constants::::BEGIN@46Sympa::Constants::BEGIN@46
0000s0sSympa::Constants::::BEGIN@47Sympa::Constants::BEGIN@47
0000s0sSympa::Constants::::BEGIN@48Sympa::Constants::BEGIN@48
0000s0sSympa::Constants::::BEGIN@49Sympa::Constants::BEGIN@49
0000s0sSympa::Constants::::BEGIN@50Sympa::Constants::BEGIN@50
0000s0sSympa::Constants::::BEGIN@51Sympa::Constants::BEGIN@51
0000s0sSympa::Constants::::BEGIN@52Sympa::Constants::BEGIN@52
0000s0sSympa::Constants::::BEGIN@53Sympa::Constants::BEGIN@53
0000s0sSympa::Constants::::BEGIN@54Sympa::Constants::BEGIN@54
0000s0sSympa::Constants::::BEGIN@55Sympa::Constants::BEGIN@55
0000s0sSympa::Constants::::BEGIN@57Sympa::Constants::BEGIN@57
0000s0sSympa::Constants::::BEGIN@58Sympa::Constants::BEGIN@58
0000s0sSympa::Constants::::BEGIN@59Sympa::Constants::BEGIN@59
0000s0sSympa::Constants::::BEGIN@60Sympa::Constants::BEGIN@60
0000s0sSympa::Constants::::BOUNCEDIRSympa::Constants::BOUNCEDIR (xsub)
0000s0sSympa::Constants::::CSSDIRSympa::Constants::CSSDIR (xsub)
0000s0sSympa::Constants::::EXPLDIRSympa::Constants::EXPLDIR (xsub)
0000s0sSympa::Constants::::PICTURESDIRSympa::Constants::PICTURESDIR (xsub)
0000s0sSympa::Constants::::SBINDIRSympa::Constants::SBINDIR (xsub)
0000s0sSympa::Constants::::SENDMAIL_ALIASESSympa::Constants::SENDMAIL_ALIASES (xsub)
0000s0sSympa::Constants::::SPOOLDIRSympa::Constants::SPOOLDIR (xsub)
0000s0sSympa::Constants::::STATICDIRSympa::Constants::STATICDIR (xsub)
0000s0sSympa::Constants::::SYSCONFDIRSympa::Constants::SYSCONFDIR (xsub)
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1# -*- indent-tabs-mode: nil; -*-
2# vim:ft=perl:et:sw=4
3# $Id$
4
5# Sympa - SYsteme de Multi-Postage Automatique
6#
7# Copyright (c) 1997, 1998, 1999 Institut Pasteur & Christophe Wolfhugel
8# Copyright (c) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
9# 2006, 2007, 2008, 2009, 2010, 2011 Comite Reseau des Universites
10# Copyright (c) 2011, 2012, 2013, 2014, 2015, 2016, 2017 GIP RENATER
11# Copyright 2018 The Sympa Community. See the AUTHORS.md file at the
12# top-level directory of this distribution and at
13# <https://github.com/sympa-community/sympa.git>.
14#
15# This program is free software; you can redistribute it and/or modify
16# it under the terms of the GNU General Public License as published by
17# the Free Software Foundation; either version 2 of the License, or
18# (at your option) any later version.
19#
20# This program is distributed in the hope that it will be useful,
21# but WITHOUT ANY WARRANTY; without even the implied warranty of
22# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23# GNU General Public License for more details.
24#
25# You should have received a copy of the GNU General Public License
26# along with this program. If not, see <http://www.gnu.org/licenses/>.
27
28package Sympa::Constants;
29
30use strict;
31
32use constant VERSION => '6.2.62';
33use constant USER => 'sympa';
34use constant GROUP => 'sympa';
35
36use constant CONFIG => '/usr/local/etc/sympa/sympa.conf';
37use constant WWSCONFIG => '/usr/local/etc/sympa/wwsympa.conf';
38use constant SENDMAIL_ALIASES => '/etc/mail/sympa_aliases';
39
40use constant PIDDIR => '/var/run/sympa';
41use constant EXPLDIR => '/usr/local/share/sympa/list_data';
42use constant SPOOLDIR => '/var/spool/sympa';
43use constant SYSCONFDIR => '/usr/local/etc/sympa';
44use constant LOCALEDIR => '/usr/local/share/locale';
45use constant LIBEXECDIR => '/usr/local/libexec/sympa';
46use constant SBINDIR => '/usr/local/libexec/sympa';
47use constant SCRIPTDIR => '/usr/local/libexec/sympa';
48use constant MODULEDIR => '/usr/local/libexec/sympa';
49use constant DEFAULTDIR => '/usr/local/share/sympa/defaults';
50use constant ARCDIR => '/usr/local/share/sympa/arc';
51use constant BOUNCEDIR => '/usr/local/share/sympa/bounce';
52use constant EXECCGIDIR => '/usr/local/libexec/sympa';
53use constant STATICDIR => '/usr/local/share/sympa/static';
54use constant CSSDIR => '/usr/local/share/sympa/static/css';
55use constant PICTURESDIR => '/usr/local/share/sympa/static/pictures';
56
57use constant EMAIL_LEN => 100;
58use constant FAMILY_LEN => 50;
59use constant LIST_LEN => 50;
60use constant ROBOT_LEN => 80;
61
621;
63__END__