Deprecated: Optional parameter $shortcode declared before required parameter $args is implicitly treated as a required parameter in /home/ashishka/public_html/wp-content/plugins/wp-cirrus/wp-cirrus.php on line 331

Warning: Cannot modify header information - headers already sent by (output started at /home/ashishka/public_html/wp-content/plugins/wp-cirrus/wp-cirrus.php:331) in /home/ashishka/public_html/wp-content/plugins/all-in-one-seo-pack/app/Common/Meta/Robots.php on line 89

Warning: Cannot modify header information - headers already sent by (output started at /home/ashishka/public_html/wp-content/plugins/wp-cirrus/wp-cirrus.php:331) in /home/ashishka/public_html/wp-includes/feed-rss2.php on line 8
Exim Mail Server | Web Hosting Stuff https://www.ashishkale.in Get solutions under one roof Tue, 01 Dec 2015 11:37:37 +0000 en-US hourly 1 How to : Exim Remove All messages From the Mail Queue https://www.ashishkale.in/how-to-exim-remove-all-messages-from-the-mail-queue/ https://www.ashishkale.in/how-to-exim-remove-all-messages-from-the-mail-queue/#respond Tue, 01 Dec 2015 11:37:37 +0000 http://www.ashishkale.in/?p=1032   Exim is a mail transfer agent (MTA) used on Unix-like operating systems. It aims to be a general and flexible mailer with extensive facilities for checking incoming e-mail. For more information you can see Exim documentation. In this article i will show some commands to removing all messages from the Mail Queue. Please Follow the Steps.    Step 1 [...]

The post How to : Exim Remove All messages From the Mail Queue first appeared on Web Hosting Stuff.

]]>
 

Exim is a mail transfer agent (MTA) used on Unix-like operating systems. It aims to be a general and flexible mailer with extensive facilities for checking incoming e-mail. For more information you can see Exim documentation.

Web

In this article i will show some commands to removing all messages from the Mail Queue. Please Follow the Steps. 

 

Step 1 :  To print a list of the messages in the queue, enter the following command :

# exim -bp

 

Step 2 :  To remove a message from the queue, enter the following command :

# exim -Mrm {message-id}

exim-vps

Step 3 :  To remove all messages from the queue, enter the following command :

# exim -bp | awk ‘/^ *[0-9]+[mhd]/{print “exim -Mrm ” $3}’ | bash

 

Step 4 :  Dallas Marlow, suggested following clean command:

# exim -bp | exiqgrep -i | xargs exim -Mrm

 

 

That’s it ! 🙂 🙂

The post How to : Exim Remove All messages From the Mail Queue first appeared on Web Hosting Stuff.

]]>
https://www.ashishkale.in/how-to-exim-remove-all-messages-from-the-mail-queue/feed/ 0