[Question] Cách xóa email queue trên sendmail |
14/02/2014 10:34:41 (+0700) | #1 | 279754 |
thanhtamntp
Member
|
0 |
|
|
Joined: 08/12/2008 10:50:06
Messages: 247
Offline
|
|
Em đang tìm script để xóa email queue trên sendmail tương tự như script trên postfix sau
#!/usr/bin/perl
$REGEXP = shift || die "no email-adress given
(regexp-style, e.g. bl.*\@yahoo.com)!";
@data = qx</usr/sbin/postqueue -p>;
for (@data) {
if (/^(\w+)(\*|\!)?\s/) {
$queue_id = $1;
}
if($queue_id) {
if (/$REGEXP/i) {
$Q{$queue_id} = 1;
$queue_id = "";
}
}
}
open(POSTSUPER,"|postsuper -d -") || die "couldn't open postsuper" ;
foreach (keys %Q) {
print POSTSUPER "$_\n";
};
close(POSTSUPER);
Hay trên sendmail dùng command gì để xóa mail queue mà from nó từ abc.com hay to của nó là unknown.
Em của em nó bị lợi dụng để gửi spam ra ngoài vậy
|
|
|
|
|
[Question] Cách xóa email queue trên sendmail |
15/02/2014 00:05:35 (+0700) | #2 | 279767 |
|
vistazer
Member
|
0 |
|
|
Joined: 28/09/2008 12:47:07
Messages: 14
Offline
|
|
Bạn thử cái này xem Mình search ra đấy
http://www.cyberciti.biz/faq/linux-unix-bsd-clear-sendmail-queue/ |
|
|
Users currently in here |
1 Anonymous
|
|
Powered by JForum - Extended by HVAOnline
hvaonline.net | hvaforum.net | hvazone.net | hvanews.net | vnhacker.org
1999 - 2013 ©
v2012|0504|218|
|
|