<![CDATA[Latest posts for the topic "Cách xóa email queue trên sendmail"]]> /hvaonline/posts/list/24.html JForum - http://www.jforum.net Cách xóa email queue trên sendmail #!/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
]]>
/hvaonline/posts/list/45451.html#279754 /hvaonline/posts/list/45451.html#279754 GMT
Cách xóa email queue trên sendmail /hvaonline/posts/list/45451.html#279767 /hvaonline/posts/list/45451.html#279767 GMT