<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>mailqueue &#8211; SystemTechnics</title>
	<atom:link href="https://www.systemtechnics.de/tag/mailqueue/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.systemtechnics.de</link>
	<description>IT Consulting</description>
	<lastBuildDate>Sun, 29 Apr 2018 05:24:35 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://www.systemtechnics.de/wp-content/uploads/cropped-2003-logo-st-transparanet-x200-32x32.png</url>
	<title>mailqueue &#8211; SystemTechnics</title>
	<link>https://www.systemtechnics.de</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Postfix Mailqueue säubern</title>
		<link>https://www.systemtechnics.de/postfix-mailqueue-saeubern/</link>
		
		<dc:creator><![CDATA[knut]]></dc:creator>
		<pubDate>Fri, 07 Aug 2015 03:51:33 +0000</pubDate>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[Mailknecht]]></category>
		<category><![CDATA[mailqueue]]></category>
		<category><![CDATA[postfix]]></category>
		<guid isPermaLink="false">http://www.systemtechnics.de/?p=355</guid>

					<description><![CDATA[Mal schnell die Maliqueue von einem Absender mit einem Einzeiler &#8222;säubern&#8220;: for i in $(mailq &#124;grep -i name@deine-mail.de&#124;awk -F" " [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Mal schnell die Maliqueue von einem Absender mit einem Einzeiler &#8222;säubern&#8220;:</p>
<p><span id="more-355"></span></p>
<pre><code>for i in $(mailq |grep -i <em>name@deine-mail.de</em>|awk -F" " '{print $1}'); do postsuper -d $i; done;</code></pre>
<p>Um zu schauen über welchen Benutzer eingeliefert wurde kann man auch noch zuvor folgenden Befehl ausführen:</p>
<pre><code>for i in $(mailq |grep -i MAILER-DAEMON |awk -F" " '{print $1}'); do grep $i /var/log/mail.log |grep sasl; done;</code></pre>
<p>Alternativ:</p>
<pre><code>postqueue -p | tail -n +2 | awk 'BEGIN { RS = "" } /@deine-mail\.de/ { print $1 }' | tr -d '*!' | postsuper -d -</code></pre>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
