source: trunk/third/sendmail/contrib/movemail.conf @ 19204

Revision 19204, 745 bytes checked in by zacheiss, 22 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r19203, which included commits to RCS files with non-trunk default branches.
Line 
1# Configuration script for movemail.pl
2
3my $minutes = 60;
4my $hours = 3600;
5
6# Queue directories first..last
7
8@queues = qw(
9        /var/spool/mqueue/q1
10        /var/spool/mqueue/q2
11        /var/spool/mqueue/q3
12);
13
14# Base of subqueue name (optional).
15# If used, queue directories are $queues[n]/$subqbase*
16# Separate qf/df/xf directories are not supported.
17
18$subqbase = "subq";
19
20# Age of mail when moved.  Each element of the array must be greater than the
21# previous element.
22
23@ages = (
24        30*$minutes,    # q1 to q2
25        6*$hours        # q2 to q3
26);
27
28# Location of script to move the mail
29
30$remqueue = "/usr/local/bin/re-mqueue.pl";
31
32# Lock file to prevent more than one instance running (optional)
33# Useful when running from cron
34
35$lockfile = "/var/spool/mqueue/movemail.lock";
Note: See TracBrowser for help on using the repository browser.