postfix เท่ากับsendmail -bp
อะไร?
postfix เท่ากับsendmail -bp
อะไร?
คำตอบ:
หรือพิมพ์น้อย:
mailq
postqueue -p
qshape ทำงานอยู่
จะแสดงจำนวนอีเมลที่ถูกส่งไปยังแต่ละโดเมนและระยะเวลาที่พวกเขาอยู่ในคิวที่ใช้งานอยู่
qshape รอการตัดบัญชี
จะแสดงเหมือนกัน แต่สำหรับคิวรอการตัดบัญชี
นี่คือสิ่งที่ฉันใช้คัดมาจากรายชื่อผู้รับจดหมาย postfix ฉันลบชื่อผู้เขียนในกรณีที่เขาไม่ต้องการที่นี่ (คุณสามารถดูได้ที่แหล่งที่มา) จะแสดงผลรวมเท่านั้น
#!/usr/bin/env perl
# postfix queue/s size
# author:
# source: http://tech.groups.yahoo.com/group/postfix-users/message/255133
use strict;
use warnings;
use Symbol;
sub count {
my ($dir) = @_;
my $dh = gensym();
my $c = 0;
opendir($dh, $dir) or die "$0: opendir: $dir: $!\n";
while (my $f = readdir($dh)) {
if ($f =~ m{^[A-F0-9]{5,}$}) {
++$c;
} elsif ($f =~ m{^[A-F0-9]$}) {
$c += count("$dir/$f");
}
}
closedir($dh) or die "closedir: $dir: $!\n";
return $c;
}
my $qdir = `postconf -h queue_directory`;
chomp($qdir);
chdir($qdir) or die "$0: chdir: $qdir: $!\n";
printf "Incoming: %d\n", count("incoming");
printf "Active: %d\n", count("active");
printf "Deferred: %d\n", count("deferred");
printf "Bounced: %d\n", count("bounce");
printf "Hold: %d\n", count("hold");
printf "Corrupt: %d\n", count("corrupt");
แก้ไข: แก้ไขการพิมพ์ผิดในบรรทัดที่ 26
count
ฟังก์ชั่น มันจะล้มเหลวใน Postfix 2.9+ เมื่อ enable_long_queue_ids = ใช่ ' ฉันคิดว่ามันไม่ควรยากเกินไปที่จะแก้ไขมันสำหรับรหัสคิวยาว
postqueue -p | tail -n 1
บรรทัดสุดท้ายในการpostqueue -p
แสดงจำนวนคำขอและขนาด:
-- 317788 Kbytes in 11860 Requests.
[root @ server ~] # time mailq | grep -c '^ [0-9A-Z]'
10
จริง 0m1.333s
ผู้ใช้ 0m0.003s
sys 0m0.003s
(เหนือผลลัพธ์ระบุว่ามี 10 อีเมลคือคิว)
หากคุณไม่มีqshape
คุณสามารถติดตั้งผ่านคำสั่ง yum ต่อไปนี้:
yum groupinstall perl development
yum install postfix-perl-scripts
qshape พิมพ์โดเมนคิว Postfix และข้อมูลการกระจายอายุ คุณสามารถอ่านเพิ่มเติมได้ที่นี่:
http://www.postfix.org/QSHAPE_README.html
% qshape -s hold | head
T 5 10 20 40 80 160 320 640 1280 1280+
TOTAL 486 0 0 1 0 0 2 4 20 40 419
yahoo.com 14 0 0 1 0 0 0 0 1 0 12
extremepricecuts.net 13 0 0 0 0 0 0 0 2 0 11
ms35.hinet.net 12 0 0 0 0 0 0 0 0 1 11
winnersdaily.net 12 0 0 0 0 0 0 0 2 0 10
hotmail.com 11 0 0 0 0 0 0 0 0 1 10
worldnet.fr 6 0 0 0 0 0 0 0 0 0 6
ms41.hinet.net 6 0 0 0 0 0 0 0 0 0 6
osn.de 5 0 0 0 0 0 1 0 0 0 4
นี่คือตัวอย่าง
#!/bin/bash
for q in active bounce corrupt defer deferred flush hold incoming maildrop pid private public saved trace
do
count=$(find /var/spool/postfix/$q ! -type d -print | wc -l)
echo $q $count
done