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"; 36