Aquileo | Recent changes to feature-requestshttps://sourceforge.net/p/mmm3/feature-requests/Recent changes to feature-requestsenThu, 04 Jun 2026 20:07:26 -0000Aquileo | #106 Doesn't work with TLS higher than 1.0https://sourceforge.net/p/mmm3/feature-requests/106/?limit=25#776b<div class="markdown_content"><p>Hello friends! I'm so glad to be able to continue using this fantastic application despite the new authentication requirements of almost all email service providers. It's a shame the program hasn't been further developed because it's the best, at least for me, as I've probably been using it for 20 years.</p>
<p>I confirm that Magic Mail Monitor works correctly with SSL and TLS 1.2 authentication, as indicated in the previous messages by:</p>
<p>(Peter - 2021-05-26) <code>https://sourceforge.net/p/mmm3/feature-requests/106/#fc28</code></p>
<p>(luis - 2021-05-26) <code>https://sourceforge.net/p/mmm3/feature-requests/106/#7692</code></p>
<h3 id="h-procedure">Procedure:</h3>
<ol>
<li>
<p>Download STUNNEL from <code>https://www.stunnel.org/</code></p>
</li>
<li>
<p>Run, install, and complete the wizard to create the default certificate locally. This certificate will not be used, so you can answer all questions with the <strong>ENTER</strong> key or enter whatever you deem appropriate. Once the installation is complete, do not run the program.</p>
</li>
<li>
<p>Go to the installation directory and then to the <strong>config</strong> subdirectory. By default, it is located in <code>C:\Program Files (x86)\stunnel\conf\stunnel.conf</code></p>
</li>
<li>
<p>Edit the <strong>stunnel.conf</strong> file with Notepad or another text editor, <strong>but as administrator!</strong></p>
</li>
</ol>
<p>If you encounter any problems and want to see what is failing, you can remove the semicolon <strong>;</strong> to enable debugging and logging. It should look like this:</p>
<p>debug=info<br/>
output=stunnel.log</p>
<ol>
<li>Locate the following text within that file:</li>
</ol>
<p><em>; * Service definitions (at least one service has to be defined) *</em></p>
<ol>
<li>Now you need to create your own connection using your email service provider's credentials.</li>
</ol>
<blockquote>
<p>I have disabled the following configurations:<br/>
<span>[gmail-pop3]</span><br/>
<span>[gmail-imap]</span><br/>
<span>[gmail-smtp]</span></p>
</blockquote>
<p>because I won't be using them. Otherwise, you must ensure that the parameters are correct for each connection.</p>
<p>Add the following example before or after these three configurations, but enter the data that corresponds to your connection.</p>
<p><span>[Example:]</span></p>
<div class="codehilite"><pre><span></span><code><span class="k">[intermon-pop3]</span>
<span class="na">client</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s">yes</span>
<span class="na">accept</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s">127.0.0.1:110</span>
<span class="na">connect</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s">pop3.intercom.com:995</span>
<span class="na">verifyChain</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s">yes</span>
<span class="na">CAfile</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s">ca-certs.pem</span>
<span class="na">checkHost</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s">pop3.intercom.com</span>
<span class="na">OCSPaia</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s">yes</span>
</code></pre></div>
<p>Explanation:</p>
<table>
<thead>
<tr>
<th style="text-align: left;">Command</th>
<th style="text-align: center;">....</th>
<th style="text-align: left;">Parameter</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;"><span>[intermon-pop3]</span></td>
<td style="text-align: center;">=</td>
<td style="text-align: left;">Personal name of my connection</td>
</tr>
<tr>
<td style="text-align: left;">client</td>
<td style="text-align: center;">=</td>
<td style="text-align: left;">yes</td>
</tr>
<tr>
<td style="text-align: left;">accept</td>
<td style="text-align: center;">=</td>
<td style="text-align: left;">127.0.0.1:110</td>
</tr>
<tr>
<td style="text-align: left;">connect</td>
<td style="text-align: center;">=</td>
<td style="text-align: left;">POP account server name and port number</td>
</tr>
<tr>
<td style="text-align: left;">verifyChain</td>
<td style="text-align: center;">=</td>
<td style="text-align: left;">yes</td>
</tr>
<tr>
<td style="text-align: left;">CAfile</td>
<td style="text-align: center;">=</td>
<td style="text-align: left;">ca-certs.pem</td>
</tr>
<tr>
<td style="text-align: left;">checkHost</td>
<td style="text-align: center;">=</td>
<td style="text-align: left;">POP account server name</td>
</tr>
<tr>
<td style="text-align: left;">OCSPaia</td>
<td style="text-align: center;">=</td>
<td style="text-align: left;">yes</td>
</tr>
</tbody>
</table>
<ol>
<li>
<p>Save the file and exit the program.</p>
</li>
<li>
<p>Create the <strong>Stunnel Service</strong> so it starts automatically on the system. Using the <em>PowerShell</em> terminal </p>
</li>
</ol>
<blockquote>
<p>If you installed Stunnel for all users of the PC, you must do this as Administrator)</p>
</blockquote>
<p>Go to</p>
<p><code>cd C:\Program Files (x86)\stunnel\bin</code></p>
<p>Execute:</p>
<p><code>./stunnel -install</code></p>
<ol>
<li>
<p>Restart the PC.</p>
</li>
<li>
<p>Now we need to verify that the service called <em>Stunnel TLS Wrapper</em> is running. To do this:</p>
<p>Option <strong>A</strong>: Run the Services Manager with the command services.msc<br/>
Option <strong>B</strong>: Run the following command in PowerShell:</p>
</li>
</ol>
<p><code>Get-Service -Name "stun*"</code></p>
<hr/>
<h2 id="h-magic-mail-monitor">Magic Mail Monitor.</h2>
<p>Let's configure the accounts in Magic Mail Monitor.</p>
<table>
<thead>
<tr>
<th style="text-align: left;"><strong>Option</strong></th>
<th style="text-align: left;"><strong>Detail</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;"><strong>Alias</strong></td>
<td style="text-align: left;">A name for the account</td>
</tr>
<tr>
<td style="text-align: left;"><strong>Username</strong></td>
<td style="text-align: left;">The username (login) of the POP account</td>
</tr>
<tr>
<td style="text-align: left;"><strong>Host</strong></td>
<td style="text-align: left;">127.0.0.1</td>
</tr>
<tr>
<td style="text-align: left;"><strong>Password</strong></td>
<td style="text-align: left;">The password of the POP account</td>
</tr>
<tr>
<td style="text-align: left;"><strong>POP3 Server Port</strong></td>
<td style="text-align: left;">110</td>
</tr>
</tbody>
</table>
<p>Save the account configuration, and it should now connect to our provider thanks to Stunnel. The request is initially made to port 110, and Stunnel, in its configuration, redirects it to the POP port of our provider.</p>
<blockquote>
<p>NOTES:</p>
<p>Since Magic Mail Monitor is quite old, it may produce the following errors when run for the first time, as it lacks an installer, because it cannot find the files <strong>mfc100.dll</strong> and <strong>msvcr100.dll</strong>, and may even cause error <strong>0xc00007b</strong>. The solution is to have <em>Microsoft Visual C++ 2010 Redistributable</em> installed in the 32-bit (x32) version for computers with 32-bit operating systems, and both the x32 and x64 versions for 64-bit computers. It is also advisable to have the latest version of Microsoft Visual C++ Redistributable, which is the 2022 version.</p>
<p>I hope this helps the entire community who were frustrated at the time when they couldn't complete the configuration. Although the process takes some time, it is worthwhile because there is nothing else on the market that surpasses it.</p>
</blockquote>
<p>Best regards.</p></div>xoangoThu, 04 Jun 2026 20:07:26 -0000https://sourceforge.netda211ad19d320e69d3d7f9281f3a2c7ab30a4186Aquileo | Login error in Microsoft service (hotmail, etc)https://sourceforge.net/p/mmm3/feature-requests/110/<div class="markdown_content"><p>Login to <a class="user-mention" href="/u/hotmail/">@hotmail</a> accounts is no longer working.<br/>
Probably because of Microsoft stops support of basic authentication</p>
<p>Log:<br/>
Sent: USER <strong><em>*</em><a class="user-mention" href="/u/hotmail/"></a><a class="user-mention" href="/u/hotmail/">@hotmail</a>.com<br/>
Rcvd: +OK The Microsoft Exchange POP3 service is ready. <span><span>[QwBQADUAUAAyADgANABDAEEAMAAwADAANgAuAEIAUgBBAFAAMgA4ADQALgBQAFIATwBEAC4ATwBVAFQATABPAE8ASwAuAEMATwBNAA==]</span></span><br/>
Rcvd: +OK<br/>
Sent: PASS </strong><strong>*</strong>*<br/>
Rcvd: -ERR Logon failure: unknown user name or bad password.<br/>
Sent: QUIT</p></div>JohnnyFri, 03 Feb 2023 13:16:47 -0000https://sourceforge.net545f07e4387fcab6c0abd24cebd151bf7129d52fAquileo | #109 GMX.de Error: Too many errorshttps://sourceforge.net/p/mmm3/feature-requests/109/?limit=25#bb67<div class="markdown_content"><p>Indeed it does! Thanks for the heads-up!</p></div>Heribert SchwanemeierWed, 02 Feb 2022 15:14:34 -0000https://sourceforge.netcc91e2cc6f2987f5f12ca1185cecb28c10046c3dAquileo | #109 GMX.de Error: Too many errorshttps://sourceforge.net/p/mmm3/feature-requests/109/?limit=25#729f<div class="markdown_content"><p>Yes, same for me. I am very happy that MMM works again with my gmx.net and web.de accounts. </p></div>Holger GeißWed, 02 Feb 2022 10:45:55 -0000https://sourceforge.netd28bae997ebd7937c055bcd386642a564079a3acAquileo | #109 GMX.de Error: Too many errorshttps://sourceforge.net/p/mmm3/feature-requests/109/?limit=25#ccf7<div class="markdown_content"><p>Yes, same here - GMX works again with MMM :-)</p></div>Uwe SieberWed, 02 Feb 2022 06:08:29 -0000https://sourceforge.net3994a2992e8ff283d470e747042bc1f1c4c8da9eAquileo | #109 GMX.de Error: Too many errorshttps://sourceforge.net/p/mmm3/feature-requests/109/?limit=25#c40b<div class="markdown_content"><p>Hi all,</p>
<p>It seems that the issue has meanwhile been fixed by GMX. At least with my <a class="user-mention" href="/u/gmx/">@gmx</a>.net account MMM is now again working fine after also having experienced the mentioned trouble until earlier today.</p>
<p>Cheers,<br/>
Sasha</p></div>SaolvoTue, 01 Feb 2022 20:04:37 -0000https://sourceforge.netdba001ed158cc07687b2d7951e54a250264c83d5Aquileo | #109 GMX.de Error: Too many errorshttps://sourceforge.net/p/mmm3/feature-requests/109/?limit=25#b208<div class="markdown_content"><p>PopTrayU comes with libeay32.dll and ssleay32.dll V1.0.2d from 2005, so the SSL version does not seem to be the problem.</p></div>Uwe SieberTue, 01 Feb 2022 06:50:11 -0000https://sourceforge.neta7166bc6ce1ad08cf252dde9a109851b9c801b0eAquileo | #109 GMX.de Error: Too many errorshttps://sourceforge.net/p/mmm3/feature-requests/109/?limit=25#1be6<div class="markdown_content"><p>Same problem here with GMX. Tried<br/>
<a href="http://grigsoft.com/mmm-297.zip" rel="nofollow">http://grigsoft.com/mmm-297.zip</a><br/>
with higher TLS support but still have the same problem.</p>
<p>I also tried <a href="https://www.stunnel.org" rel="nofollow">https://www.stunnel.org</a> but could not get it work with MMM and GMX.</p>
<p><a href="https://sourceforge.net/projects/poptrayu">https://sourceforge.net/projects/poptrayu</a> works but after 20 years I would like to stick with MMM.</p></div>Uwe SieberMon, 31 Jan 2022 14:44:32 -0000https://sourceforge.netbc9bee79926e720c791d6e5ede449192d872f0b2Aquileo | #109 GMX.de Error: Too many errorshttps://sourceforge.net/p/mmm3/feature-requests/109/?limit=25#9b98<div class="markdown_content"><p>Hi,<br/>
since a few days I have exactly the same problem with MMM and my "gmx.net" and another "web.de" mail accounts. My mail programs (Thunderbird and Safari ) work without problems. As far as I now gmx.de, gmx.net and web.de will be provided by 1&1. On another side I found the information that 1&1 has changed something in the login procedure last Monday and MMM seems not to be able to handle this update correctly. <br/>
I really hope that this problem will be solved soon.</p></div>Holger GeißSat, 29 Jan 2022 15:23:45 -0000https://sourceforge.neta5008bc6349a14aa841b233f5ae8d75d9cc3d684Aquileo | GMX.de Error: Too many errorshttps://sourceforge.net/p/mmm3/feature-requests/109/<div class="markdown_content"><p>Hello,<br/>
for the last few days or so, MMM just stopped working with my gmx.de Mail Account that I used to check with MMM for at least the last 10 years or so.<br/>
It just shows <em>error: too many errors.</em> Nothing else. Anything I can do?</p></div>Heribert SchwanemeierThu, 27 Jan 2022 19:50:44 -0000https://sourceforge.net22b599dbd761b3c8ce3e088cd2755ad9efda2bce