<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.tbpindustries.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Techgirl</id>
	<title>TBP Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.tbpindustries.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Techgirl"/>
	<link rel="alternate" type="text/html" href="https://wiki.tbpindustries.com/index.php?title=Special:Contributions/Techgirl"/>
	<updated>2026-05-12T22:46:09Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.1</generator>
	<entry>
		<id>https://wiki.tbpindustries.com/index.php?title=Exim&amp;diff=74</id>
		<title>Exim</title>
		<link rel="alternate" type="text/html" href="https://wiki.tbpindustries.com/index.php?title=Exim&amp;diff=74"/>
		<updated>2019-01-08T14:23:43Z</updated>

		<summary type="html">&lt;p&gt;Techgirl: /* Logs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Exim is a mail transfer agent (MTA) used on Unix-like operating systems. Exim is free software distributed under the terms of the GNU General Public License, and it aims to be a general and flexible mailer with extensive facilities for checking incoming e-mail.&lt;br /&gt;
&lt;br /&gt;
Exim has been ported to most Unix-like systems, as well as to Microsoft Windows using the Cygwin emulation layer. Exim 4 is currently the default MTA on Debian GNU/Linux systems.&lt;br /&gt;
&lt;br /&gt;
A large number of Exim installations exist, especially within Internet service providers and universities in the UK. Exim is also widely used with the GNU Mailman mailing list manager, and cPanel.&lt;br /&gt;
&lt;br /&gt;
In March 2017 in a study performed by E-Soft, Inc., approximately 57% of the publicly reachable mail-servers on the Internet ran Exim.&lt;br /&gt;
&lt;br /&gt;
=Logs=&lt;br /&gt;
&lt;br /&gt;
The main exim log location is&lt;br /&gt;
&lt;br /&gt;
    /var/log/exim_mainlog&lt;br /&gt;
&lt;br /&gt;
This log governs sending and receiving of email. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The main log for email account access is&lt;br /&gt;
&lt;br /&gt;
    /var/log/maillog&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check exim for unique email sent out&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    sudo cat /var/log/exim_mainlog | grep &amp;quot;A\=dovecot_login&amp;quot; | awk -F&amp;quot;A=dovecot_login:&amp;quot; {'print $2'} | cut -f1 -d' ' | sort | uniq -c | sort -n | awk {'print $1, &amp;quot; unique emails sent by &amp;quot; , $2'} | grep EMAILADDRESS&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;What is exim doing?&amp;lt;strong&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
     exiwhat&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Count messages in queue&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -bpc&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check messages in queue&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -bp&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check message Headers - message has to be in queue &amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mvh MESSAGE ID &lt;br /&gt;
          Example: exim -Mvh 1ggpHd-00070u-96&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check message body - message has to be in queue &amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mvb MESSAGE ID &lt;br /&gt;
          Example: exim -Mvb 1ggpHd-00070u-96&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Save a Spam / message sample - message has to be in queue&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mvh MESSAGE ID &amp;gt; message.txt; exim -Mvb MESSAGE ID &amp;gt;&amp;gt; message.txt&lt;br /&gt;
         Example: exim -Mvh 1ggpHd-00070u-96 &amp;gt; /home/user/message.txt; exim -Mvb 1ggpHd-00070u-96 &amp;gt;&amp;gt; /home/user/message.txt&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Search messages for a specific sender &amp;lt;strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exiqgrep -f [user]@domain&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Search for a specific recipent &amp;lt;strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exiqgrep -r [user]@domain&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Freeze a message from queue &amp;lt;strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mf MESSAGE ID&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Remove message from queue &amp;lt;strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mrm MESSAGE ID&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Thaw message from queue&amp;lt;strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mt MESSAGE ID&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Force exim queue to run&amp;lt;strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -q -v&lt;/div&gt;</summary>
		<author><name>Techgirl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tbpindustries.com/index.php?title=Exim&amp;diff=73</id>
		<title>Exim</title>
		<link rel="alternate" type="text/html" href="https://wiki.tbpindustries.com/index.php?title=Exim&amp;diff=73"/>
		<updated>2019-01-08T14:16:19Z</updated>

		<summary type="html">&lt;p&gt;Techgirl: /* Logs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Exim is a mail transfer agent (MTA) used on Unix-like operating systems. Exim is free software distributed under the terms of the GNU General Public License, and it aims to be a general and flexible mailer with extensive facilities for checking incoming e-mail.&lt;br /&gt;
&lt;br /&gt;
Exim has been ported to most Unix-like systems, as well as to Microsoft Windows using the Cygwin emulation layer. Exim 4 is currently the default MTA on Debian GNU/Linux systems.&lt;br /&gt;
&lt;br /&gt;
A large number of Exim installations exist, especially within Internet service providers and universities in the UK. Exim is also widely used with the GNU Mailman mailing list manager, and cPanel.&lt;br /&gt;
&lt;br /&gt;
In March 2017 in a study performed by E-Soft, Inc., approximately 57% of the publicly reachable mail-servers on the Internet ran Exim.&lt;br /&gt;
&lt;br /&gt;
=Logs=&lt;br /&gt;
&lt;br /&gt;
The main exim log location is&lt;br /&gt;
&lt;br /&gt;
    /var/log/exim_mainlog&lt;br /&gt;
&lt;br /&gt;
This log governs sending and receiving of email. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The main log for email account access is&lt;br /&gt;
&lt;br /&gt;
    /var/log/maillog&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check exim for unique email sent out&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    sudo cat /var/log/exim_mainlog | grep &amp;quot;A\=dovecot_login&amp;quot; | awk -F&amp;quot;A=dovecot_login:&amp;quot; {'print $2'} | cut -f1 -d' ' | sort | uniq -c | sort -n | awk {'print $1, &amp;quot; unique emails sent by &amp;quot; , $2'} | grep EMAILADDRESS&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;What is exim doing?&amp;lt;strong&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
     exiwhat&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Count messages in queue&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -bpc&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check messages in queue&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -bp&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check message Headers - message has to be in queue &amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mvh MESSAGE ID &lt;br /&gt;
          Example: exim -Mvh 1ggpHd-00070u-96&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check message body - message has to be in queue &amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mvb MESSAGE ID &lt;br /&gt;
          Example: exim -Mvb 1ggpHd-00070u-96&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Save a Spam / message sample - message has to be in queue&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mvh MESSAGE ID &amp;gt; message.txt; exim -Mvb MESSAGE ID &amp;gt;&amp;gt; message.txt&lt;br /&gt;
         Example: exim -Mvh 1ggpHd-00070u-96 &amp;gt; /home/user/message.txt; exim -Mvb 1ggpHd-00070u-96 &amp;gt;&amp;gt; /home/user/message.txt&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Search messages for a specific sender &amp;gt;strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exiqgrep -f [user]@domain&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Search for a specific recipent &amp;lt;strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exiqgrep -r [user]@domain&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Freeze a message from queue &amp;lt;strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mf MESSAGE ID&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Remove message from queue &amp;lt;strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mrm MESSAGE ID&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Thaw message from queue&amp;lt;strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mt MESSAGE ID&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Force exim queue to run&amp;lt;strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -q -v&lt;/div&gt;</summary>
		<author><name>Techgirl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tbpindustries.com/index.php?title=Exim&amp;diff=72</id>
		<title>Exim</title>
		<link rel="alternate" type="text/html" href="https://wiki.tbpindustries.com/index.php?title=Exim&amp;diff=72"/>
		<updated>2019-01-08T14:15:59Z</updated>

		<summary type="html">&lt;p&gt;Techgirl: /* Logs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Exim is a mail transfer agent (MTA) used on Unix-like operating systems. Exim is free software distributed under the terms of the GNU General Public License, and it aims to be a general and flexible mailer with extensive facilities for checking incoming e-mail.&lt;br /&gt;
&lt;br /&gt;
Exim has been ported to most Unix-like systems, as well as to Microsoft Windows using the Cygwin emulation layer. Exim 4 is currently the default MTA on Debian GNU/Linux systems.&lt;br /&gt;
&lt;br /&gt;
A large number of Exim installations exist, especially within Internet service providers and universities in the UK. Exim is also widely used with the GNU Mailman mailing list manager, and cPanel.&lt;br /&gt;
&lt;br /&gt;
In March 2017 in a study performed by E-Soft, Inc., approximately 57% of the publicly reachable mail-servers on the Internet ran Exim.&lt;br /&gt;
&lt;br /&gt;
=Logs=&lt;br /&gt;
&lt;br /&gt;
The main exim log location is&lt;br /&gt;
&lt;br /&gt;
    /var/log/exim_mainlog&lt;br /&gt;
&lt;br /&gt;
This log governs sending and receiving of email. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The main log for email account access is&lt;br /&gt;
&lt;br /&gt;
    /var/log/maillog&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check exim for unique email sent out&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    sudo cat /var/log/exim_mainlog | grep &amp;quot;A\=dovecot_login&amp;quot; | awk -F&amp;quot;A=dovecot_login:&amp;quot; {'print $2'} | cut -f1 -d' ' | sort | uniq -c | sort -n | awk {'print $1, &amp;quot; unique emails sent by &amp;quot; , $2'} | grep EMAILADDRESS&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;What is exim doing?&amp;lt;strong&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
     exiwhat&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Count messages in queue&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -bpc&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check messages in queue&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -bp&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check message Headers - message has to be in queue &amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mvh MESSAGE ID &lt;br /&gt;
          Example: exim -Mvh 1ggpHd-00070u-96&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check message body - message has to be in queue &amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mvb MESSAGE ID &lt;br /&gt;
          Example: exim -Mvb 1ggpHd-00070u-96&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Save a Spam / message sample - message has to be in queue&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mvh MESSAGE ID &amp;gt; message.txt; exim -Mvb MESSAGE ID &amp;gt;&amp;gt; message.txt&lt;br /&gt;
         Example: exim -Mvh 1ggpHd-00070u-96 &amp;gt; /home/user/message.txt; exim -Mvb 1ggpHd-00070u-96 &amp;gt;&amp;gt; /home/user/message.txt&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Search messages for a specific sender &amp;gt;strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exiqgrep -f [user]@domain&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Search for a specific recipent &amp;lt;strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exiqgrep -r [user]@domain&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Freeze a message from queue &amp;lt;strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mf mESSAGE ID&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Remove message from queue &amp;lt;strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mrm MESSAGE ID&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Thaw message from queue&amp;lt;strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mt MESSAGE ID&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Force exim queue to run&amp;lt;strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -q -v&lt;/div&gt;</summary>
		<author><name>Techgirl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tbpindustries.com/index.php?title=Exim&amp;diff=71</id>
		<title>Exim</title>
		<link rel="alternate" type="text/html" href="https://wiki.tbpindustries.com/index.php?title=Exim&amp;diff=71"/>
		<updated>2019-01-08T14:11:19Z</updated>

		<summary type="html">&lt;p&gt;Techgirl: /* Logs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Exim is a mail transfer agent (MTA) used on Unix-like operating systems. Exim is free software distributed under the terms of the GNU General Public License, and it aims to be a general and flexible mailer with extensive facilities for checking incoming e-mail.&lt;br /&gt;
&lt;br /&gt;
Exim has been ported to most Unix-like systems, as well as to Microsoft Windows using the Cygwin emulation layer. Exim 4 is currently the default MTA on Debian GNU/Linux systems.&lt;br /&gt;
&lt;br /&gt;
A large number of Exim installations exist, especially within Internet service providers and universities in the UK. Exim is also widely used with the GNU Mailman mailing list manager, and cPanel.&lt;br /&gt;
&lt;br /&gt;
In March 2017 in a study performed by E-Soft, Inc., approximately 57% of the publicly reachable mail-servers on the Internet ran Exim.&lt;br /&gt;
&lt;br /&gt;
=Logs=&lt;br /&gt;
&lt;br /&gt;
The main exim log location is&lt;br /&gt;
&lt;br /&gt;
    /var/log/exim_mainlog&lt;br /&gt;
&lt;br /&gt;
This log governs sending and receiving of email. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The main log for email account access is&lt;br /&gt;
&lt;br /&gt;
    /var/log/maillog&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check exim for unique email sent out&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    sudo cat /var/log/exim_mainlog | grep &amp;quot;A\=dovecot_login&amp;quot; | awk -F&amp;quot;A=dovecot_login:&amp;quot; {'print $2'} | cut -f1 -d' ' | sort | uniq -c | sort -n | awk {'print $1, &amp;quot; unique emails sent by &amp;quot; , $2'} | grep EMAILADDRESS&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;What is exim doing?&amp;lt;strong&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
     exiwhat&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Count messages in queue&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -bpc&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check messages in queue&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -bp&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check message Headers - message has to be in queue &amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mvh MESSAGE ID &lt;br /&gt;
          Example: exim -Mvh 1ggpHd-00070u-96&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check message body - message has to be in queue &amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mvb MESSAGE ID &lt;br /&gt;
          Example: exim -Mvb 1ggpHd-00070u-96&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Save a Spam / message sample - message has to be in queue&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mvh MESSAGE ID &amp;gt; message.txt; exim -Mvb MESSAGE ID &amp;gt;&amp;gt; message.txt&lt;br /&gt;
         Example: exim -Mvh 1ggpHd-00070u-96 &amp;gt; /home/user/message.txt; exim -Mvb 1ggpHd-00070u-96 &amp;gt;&amp;gt; /home/user/message.txt&lt;/div&gt;</summary>
		<author><name>Techgirl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tbpindustries.com/index.php?title=Exim&amp;diff=70</id>
		<title>Exim</title>
		<link rel="alternate" type="text/html" href="https://wiki.tbpindustries.com/index.php?title=Exim&amp;diff=70"/>
		<updated>2019-01-08T13:56:40Z</updated>

		<summary type="html">&lt;p&gt;Techgirl: /* Logs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Exim is a mail transfer agent (MTA) used on Unix-like operating systems. Exim is free software distributed under the terms of the GNU General Public License, and it aims to be a general and flexible mailer with extensive facilities for checking incoming e-mail.&lt;br /&gt;
&lt;br /&gt;
Exim has been ported to most Unix-like systems, as well as to Microsoft Windows using the Cygwin emulation layer. Exim 4 is currently the default MTA on Debian GNU/Linux systems.&lt;br /&gt;
&lt;br /&gt;
A large number of Exim installations exist, especially within Internet service providers and universities in the UK. Exim is also widely used with the GNU Mailman mailing list manager, and cPanel.&lt;br /&gt;
&lt;br /&gt;
In March 2017 in a study performed by E-Soft, Inc., approximately 57% of the publicly reachable mail-servers on the Internet ran Exim.&lt;br /&gt;
&lt;br /&gt;
=Logs=&lt;br /&gt;
&lt;br /&gt;
The main exim log location is&lt;br /&gt;
&lt;br /&gt;
    /var/log/exim_mainlog&lt;br /&gt;
&lt;br /&gt;
This log governs sending and receiving of email. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The main log for email account access is&lt;br /&gt;
&lt;br /&gt;
    /var/log/maillog&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check exim for unique email sent out&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    sudo cat /var/log/exim_mainlog | grep &amp;quot;A\=dovecot_login&amp;quot; | awk -F&amp;quot;A=dovecot_login:&amp;quot; {'print $2'} | cut -f1 -d' ' | sort | uniq -c | sort -n | awk {'print $1, &amp;quot; unique emails sent by &amp;quot; , $2'} | grep EMAILADDRESS&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Count messages in queue&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -bpc&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check messages in queue&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -bp&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check message Headers - message has to be in queue &amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mvh MESSAGE ID &lt;br /&gt;
          Example: exim -Mvh 1ggpHd-00070u-96&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check message body - message has to be in queue &amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mvb MESSAGE ID &lt;br /&gt;
          Example: exim -Mvb 1ggpHd-00070u-96&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Save a Spam / message sample - message has to be in queue&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mvh MESSAGE ID &amp;gt; message.txt; exim -Mvb MESSAGE ID &amp;gt;&amp;gt; message.txt&lt;br /&gt;
         Example: exim -Mvh 1ggpHd-00070u-96 &amp;gt; /home/user/message.txt; exim -Mvb 1ggpHd-00070u-96 &amp;gt;&amp;gt; /home/user/message.txt&lt;/div&gt;</summary>
		<author><name>Techgirl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tbpindustries.com/index.php?title=Exim&amp;diff=69</id>
		<title>Exim</title>
		<link rel="alternate" type="text/html" href="https://wiki.tbpindustries.com/index.php?title=Exim&amp;diff=69"/>
		<updated>2019-01-08T13:56:12Z</updated>

		<summary type="html">&lt;p&gt;Techgirl: /* Logs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Exim is a mail transfer agent (MTA) used on Unix-like operating systems. Exim is free software distributed under the terms of the GNU General Public License, and it aims to be a general and flexible mailer with extensive facilities for checking incoming e-mail.&lt;br /&gt;
&lt;br /&gt;
Exim has been ported to most Unix-like systems, as well as to Microsoft Windows using the Cygwin emulation layer. Exim 4 is currently the default MTA on Debian GNU/Linux systems.&lt;br /&gt;
&lt;br /&gt;
A large number of Exim installations exist, especially within Internet service providers and universities in the UK. Exim is also widely used with the GNU Mailman mailing list manager, and cPanel.&lt;br /&gt;
&lt;br /&gt;
In March 2017 in a study performed by E-Soft, Inc., approximately 57% of the publicly reachable mail-servers on the Internet ran Exim.&lt;br /&gt;
&lt;br /&gt;
=Logs=&lt;br /&gt;
&lt;br /&gt;
The main exim log location is&lt;br /&gt;
&lt;br /&gt;
    /var/log/exim_mainlog&lt;br /&gt;
&lt;br /&gt;
This log governs sending and receiving of email. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The main log for email account access is&lt;br /&gt;
&lt;br /&gt;
    /var/log/maillog&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check exim for unique email sent out&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    sudo cat /var/log/exim_mainlog | grep &amp;quot;A\=dovecot_login&amp;quot; | awk -F&amp;quot;A=dovecot_login:&amp;quot; {'print $2'} | cut -f1 -d' ' | sort | uniq -c | sort -n | awk {'print $1, &amp;quot; unique emails sent by &amp;quot; , $2'} | grep EMAILADDRESS&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Count messages in queue&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -bpc&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check messages in queue&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -bp&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check message Headers - message has to be in queue &amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mvh MESSAGE ID &lt;br /&gt;
          Example: exim -Mvh 1ggpHd-00070u-96&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check message body - message has to be in queue &amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mvb MESSAGE ID &lt;br /&gt;
          Example: exim -Mvb 1ggpHd-00070u-96&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Save a Spam / message sample &amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mvh MESSAGE ID &amp;gt; message.txt; exim -Mvb MESSAGE ID &amp;gt;&amp;gt; message.txt&lt;br /&gt;
         Example: exim -Mvh 1ggpHd-00070u-96 &amp;gt; /home/user/message.txt; exim -Mvb 1ggpHd-00070u-96 &amp;gt;&amp;gt; /home/user/message.txt&lt;/div&gt;</summary>
		<author><name>Techgirl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tbpindustries.com/index.php?title=Exim&amp;diff=68</id>
		<title>Exim</title>
		<link rel="alternate" type="text/html" href="https://wiki.tbpindustries.com/index.php?title=Exim&amp;diff=68"/>
		<updated>2019-01-08T13:54:07Z</updated>

		<summary type="html">&lt;p&gt;Techgirl: /* Logs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Exim is a mail transfer agent (MTA) used on Unix-like operating systems. Exim is free software distributed under the terms of the GNU General Public License, and it aims to be a general and flexible mailer with extensive facilities for checking incoming e-mail.&lt;br /&gt;
&lt;br /&gt;
Exim has been ported to most Unix-like systems, as well as to Microsoft Windows using the Cygwin emulation layer. Exim 4 is currently the default MTA on Debian GNU/Linux systems.&lt;br /&gt;
&lt;br /&gt;
A large number of Exim installations exist, especially within Internet service providers and universities in the UK. Exim is also widely used with the GNU Mailman mailing list manager, and cPanel.&lt;br /&gt;
&lt;br /&gt;
In March 2017 in a study performed by E-Soft, Inc., approximately 57% of the publicly reachable mail-servers on the Internet ran Exim.&lt;br /&gt;
&lt;br /&gt;
=Logs=&lt;br /&gt;
&lt;br /&gt;
The main exim log location is&lt;br /&gt;
&lt;br /&gt;
    /var/log/exim_mainlog&lt;br /&gt;
&lt;br /&gt;
This log governs sending and receiving of email. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The main log for email account access is&lt;br /&gt;
&lt;br /&gt;
    /var/log/maillog&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check exim for unique email sent out&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    sudo cat /var/log/exim_mainlog | grep &amp;quot;A\=dovecot_login&amp;quot; | awk -F&amp;quot;A=dovecot_login:&amp;quot; {'print $2'} | cut -f1 -d' ' | sort | uniq -c | sort -n | awk {'print $1, &amp;quot; unique emails sent by &amp;quot; , $2'} | grep EMAILADDRESS&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Count messages in queue&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -bpc&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check messages in queue&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -bp&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check message Headers - message has to be in queue &amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mvh MESSAGE ID &lt;br /&gt;
          Example: exim -Mvh 1ggpHd-00070u-96&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check message body - message has to be in queue &amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mvb MESSAGE ID &lt;br /&gt;
          Example: exim -Mvb 1ggpHd-00070u-96&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Save a Spam / message sample &amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -Mvh MESSAGE ID &amp;gt; message.txt; exim -Mvb MESSAGE ID &amp;gt;&amp;gt; message.txt&lt;/div&gt;</summary>
		<author><name>Techgirl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tbpindustries.com/index.php?title=Exim&amp;diff=67</id>
		<title>Exim</title>
		<link rel="alternate" type="text/html" href="https://wiki.tbpindustries.com/index.php?title=Exim&amp;diff=67"/>
		<updated>2019-01-08T13:29:50Z</updated>

		<summary type="html">&lt;p&gt;Techgirl: /* Logs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Exim is a mail transfer agent (MTA) used on Unix-like operating systems. Exim is free software distributed under the terms of the GNU General Public License, and it aims to be a general and flexible mailer with extensive facilities for checking incoming e-mail.&lt;br /&gt;
&lt;br /&gt;
Exim has been ported to most Unix-like systems, as well as to Microsoft Windows using the Cygwin emulation layer. Exim 4 is currently the default MTA on Debian GNU/Linux systems.&lt;br /&gt;
&lt;br /&gt;
A large number of Exim installations exist, especially within Internet service providers and universities in the UK. Exim is also widely used with the GNU Mailman mailing list manager, and cPanel.&lt;br /&gt;
&lt;br /&gt;
In March 2017 in a study performed by E-Soft, Inc., approximately 57% of the publicly reachable mail-servers on the Internet ran Exim.&lt;br /&gt;
&lt;br /&gt;
=Logs=&lt;br /&gt;
&lt;br /&gt;
The main exim log location is&lt;br /&gt;
&lt;br /&gt;
    /var/log/exim_mainlog&lt;br /&gt;
&lt;br /&gt;
This log governs sending and receiving of email. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The main log for email account access is&lt;br /&gt;
&lt;br /&gt;
    /var/log/maillog&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check exim for unique email sent out&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    sudo cat /var/log/exim_mainlog | grep &amp;quot;A\=dovecot_login&amp;quot; | awk -F&amp;quot;A=dovecot_login:&amp;quot; {'print $2'} | cut -f1 -d' ' | sort | uniq -c | sort -n | awk {'print $1, &amp;quot; unique emails sent by &amp;quot; , $2'} | grep EMAILADDRESS&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Count messages in queue&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -bpc&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Check messages in queue&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     exim -bp&lt;/div&gt;</summary>
		<author><name>Techgirl</name></author>
		
	</entry>
</feed>