如何从cpanel中删除邮件队列?

时间:2015-05-16 08:40:03

标签: cpanel

如何从cpanel删除邮件队列?

我想只删除垃圾邮件。其他客户数据永远不会丢失他的邮件数据。

从示例:在我的cpanel中,一个域名是垃圾邮件,它将受到其他客户端邮件服务的影响。那么,如何删除邮件冻结的电子邮件。

1 个答案:

答案 0 :(得分:1)

请尝试使用以下命令。

function tree($motherId) {

    $tree = array();

    while ($motherId <> 0) :

        $sqlToGetMother = "SELECT * FROM tbl_dogs WHERE mother_id = ".$motherId;

       // run the query.....

       $motherId = "dog_id from the query above";
       $motherName = "dog_name from the query above";

       $tree[] = $motherName;

    endwhile;

    // if you need to reverse the family tree
    krsort($tree);

    return $tree;
}


// Starts with a given dog_id....
tree($dog_id);