⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 movemail.conf

📁 < linux网络编程工具>>配套源码
💻 CONF
字号:
# Configuration script for movemail.pl

my $minutes = 60;
my $hours = 3600;

# Queue directories first..last

@queues = qw(
	/var/spool/mqueue/q1
	/var/spool/mqueue/q2
	/var/spool/mqueue/q3
);

# Base of subqueue name (optional).
# If used, queue directories are $queues[n]/$subqbase*
# Separate qf/df/xf directories are not supported.

$subqbase = "subq";

# Age of mail when moved.  Each element of the array must be greater than the
# previous element.

@ages = (
	30*$minutes,	# q1 to q2
	6*$hours	# q2 to q3
);

# Location of script to move the mail

$remqueue = "/usr/local/bin/re-mqueue.pl";

# Lock file to prevent more than one instance running (optional)
# Useful when running from cron

$lockfile = "/var/spool/mqueue/movemail.lock";

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -