ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/syncmail/config.pl
Revision: 1.1
Committed: Sat Oct 27 23:53:49 2001 UTC (22 years, 6 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Log Message:
*** empty log message ***

File Contents

# Content
1 $TIMEOUT = 20;
2 $IDLE = $TIMEOUT < 30 ? $TIMEOUT / 2 : $TIMEOUT - 15;
3 $MAXTIMEDIFF = 10;
4
5 $VERBOSE = 9;
6
7 $SLAVE = 1*($ARGV[0] eq "--slave");
8
9 $MYNAME = $SLAVE ? "slave" : "master";
10 $PREFIX = $SLAVE ? "./dst" : "./src";
11
12 @OTHERNAMES = qw(third);
13
14 1;