<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Mailtrain (v1) unlisted from app store]]></title><description><![CDATA[<p dir="auto">Given that the upstream project is not maintained anymore, we have hidden this in the appstore.</p>
<p dir="auto">See deprecation notice here - <a href="https://github.com/Mailtrain-org/mailtrain/tree/v1#mailtrain-v1-has-been-deprecated-it-contains-security-flaws-which-wont-likely-be-fixed-we-advise-you-to-use-mailtrain-v2-instead-check-it-out-here-httpsgithubcommailtrain-orgmailtraintreev2" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/Mailtrain-org/mailtrain/tree/v1#mailtrain-v1-has-been-deprecated-it-contains-security-flaws-which-wont-likely-be-fixed-we-advise-you-to-use-mailtrain-v2-instead-check-it-out-here-httpsgithubcommailtrain-orgmailtraintreev2</a></p>
<p dir="auto">"Mailtrain v1 has been deprecated. It contains security flaws which won't likely be fixed. We advise you to use Mailtrain v2 instead"</p>
]]></description><link>https://forum.cloudron.io/topic/8795/mailtrain-v1-unlisted-from-app-store</link><generator>RSS for Node</generator><lastBuildDate>Thu, 16 Jul 2026 05:10:16 GMT</lastBuildDate><atom:link href="https://forum.cloudron.io/topic/8795.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 10 Mar 2023 09:01:48 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Mailtrain (v1) unlisted from app store on Sat, 03 Jun 2023 01:16:40 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/girish" aria-label="Profile: girish">@<bdi>girish</bdi></a> That is a super handy feature!</p>
]]></description><link>https://forum.cloudron.io/post/67571</link><guid isPermaLink="true">https://forum.cloudron.io/post/67571</guid><dc:creator><![CDATA[marcusquinn]]></dc:creator><pubDate>Sat, 03 Jun 2023 01:16:40 GMT</pubDate></item><item><title><![CDATA[Reply to Mailtrain (v1) unlisted from app store on Thu, 01 Jun 2023 07:07:52 GMT]]></title><description><![CDATA[<p dir="auto">If you open a <a href="https://docs.cloudron.io/apps/#web-terminal" target="_blank" rel="noopener noreferrer nofollow ugc">web terminal</a> , there is a MySQL button on the top which will paste the mysql command . Just press enter and you should have a connection to run SQL queries.</p>
]]></description><link>https://forum.cloudron.io/post/67469</link><guid isPermaLink="true">https://forum.cloudron.io/post/67469</guid><dc:creator><![CDATA[girish]]></dc:creator><pubDate>Thu, 01 Jun 2023 07:07:52 GMT</pubDate></item><item><title><![CDATA[Reply to Mailtrain (v1) unlisted from app store on Wed, 31 May 2023 21:27:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/marcusquinn" aria-label="Profile: marcusquinn">@<bdi>marcusquinn</bdi></a> hey thanks, I totally forgot about ChatGPT! It's giving me mysql command lessons as we speak. Cheers.</p>
]]></description><link>https://forum.cloudron.io/post/67459</link><guid isPermaLink="true">https://forum.cloudron.io/post/67459</guid><dc:creator><![CDATA[jordanurbs]]></dc:creator><pubDate>Wed, 31 May 2023 21:27:03 GMT</pubDate></item><item><title><![CDATA[Reply to Mailtrain (v1) unlisted from app store on Wed, 31 May 2023 21:13:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jordanurbs" aria-label="Profile: jordanurbs">@<bdi>jordanurbs</bdi></a> I asked ChatGPT for you, and it says:</p>
<blockquote>
<p dir="auto">Given that I can't directly assist with this due to privacy and security reasons, here's a general way you could try to recover your data:</p>
<p dir="auto">If you don't have the necessary permissions or if you're not comfortable working with databases, it would be a good idea to get the assistance of an IT professional. Missteps in the following steps could potentially cause data loss.</p>
<ol>
<li>
<p dir="auto"><strong>Access the terminal for the Mailtrain app on Cloudron</strong>: You should be able to access the terminal for the Mailtrain application from within the Cloudron dashboard. Navigate to the relevant app and click on the "Console" or "Terminal" button.</p>
</li>
<li>
<p dir="auto"><strong>Locate the database</strong>: Mailtrain stores its data in a MySQL or MariaDB database. You should be able to find details on the database used, including its name and authentication details, in the app's configuration file.</p>
</li>
<li>
<p dir="auto"><strong>Access the database</strong>: Once you have the database name and authentication details, you can use the <code>mysql</code> command-line tool to interact with the database. The command to access the database will look something like this:</p>
<pre><code class="language-bash">mysql -u USERNAME -p DATABASE_NAME
</code></pre>
<p dir="auto">Replace <code>USERNAME</code> and <code>DATABASE_NAME</code> with your actual database username and name. You will be prompted to enter the database password.</p>
</li>
<li>
<p dir="auto"><strong>Find your data</strong>: You will now be in the MySQL/MariaDB shell and you can issue SQL commands to interact with your data. You can use a command like the following to list all the tables in the database:</p>
<pre><code class="language-bash">show tables;
</code></pre>
<p dir="auto">You will need to look for a table that likely contains user information, such as <code>users</code> or <code>admins</code>.</p>
</li>
<li>
<p dir="auto"><strong>Retrieve your username</strong>: Once you have identified the correct table, you can issue a SQL query to retrieve your username. The query might look like this:</p>
<pre><code class="language-bash">SELECT username FROM users;
</code></pre>
<p dir="auto">This command will display all the usernames in the <code>users</code> table. You should be able to identify yours from the list.</p>
</li>
</ol>
<p dir="auto">If you can't remember your password, you likely won't be able to retrieve it since it's probably stored as a hashed value for security reasons. You would need to reset it.</p>
<p dir="auto">Remember that this is a general process and it might be different depending on your specific setup. Always be careful when working with live databases to prevent any data loss.</p>
<p dir="auto">It would also be a good idea to contact Cloudron or Mailtrain support for help in recovering your account. They might be able to assist you without you needing to directly interact with the database.</p>
</blockquote>
]]></description><link>https://forum.cloudron.io/post/67458</link><guid isPermaLink="true">https://forum.cloudron.io/post/67458</guid><dc:creator><![CDATA[marcusquinn]]></dc:creator><pubDate>Wed, 31 May 2023 21:13:19 GMT</pubDate></item><item><title><![CDATA[Reply to Mailtrain (v1) unlisted from app store on Wed, 31 May 2023 21:05:51 GMT]]></title><description><![CDATA[<p dir="auto">I'm having trouble finding the username for my Mailtrain account that I used for an email list a few years ago. I'd like the list back now but I can't login.</p>
<p dir="auto">Any tips for finding that list of email addresses in the app terminal?</p>
]]></description><link>https://forum.cloudron.io/post/67457</link><guid isPermaLink="true">https://forum.cloudron.io/post/67457</guid><dc:creator><![CDATA[jordanurbs]]></dc:creator><pubDate>Wed, 31 May 2023 21:05:51 GMT</pubDate></item><item><title><![CDATA[Reply to Mailtrain (v1) unlisted from app store on Sat, 11 Mar 2023 11:14:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/girish" aria-label="Profile: girish">@<bdi>girish</bdi></a> Yeah, TBH you can do so much more with it, it's a full low-code business app development platform.</p>
<p dir="auto">The things you're looking for are Campaigns, Target Lists, Email Templates. It also tracks email opens and clicks.</p>
<p dir="auto">We've developed it a lot for internal use, you can pretty-much run a full business experience on it. Much faster that Odoo to work with, too.</p>
]]></description><link>https://forum.cloudron.io/post/63044</link><guid isPermaLink="true">https://forum.cloudron.io/post/63044</guid><dc:creator><![CDATA[marcusquinn]]></dc:creator><pubDate>Sat, 11 Mar 2023 11:14:02 GMT</pubDate></item><item><title><![CDATA[Reply to Mailtrain (v1) unlisted from app store on Sat, 11 Mar 2023 08:34:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/marcusquinn" aria-label="Profile: marcusquinn">@<bdi>marcusquinn</bdi></a> interesting, I didn't know it can run campaigns and manage lists!</p>
]]></description><link>https://forum.cloudron.io/post/63025</link><guid isPermaLink="true">https://forum.cloudron.io/post/63025</guid><dc:creator><![CDATA[girish]]></dc:creator><pubDate>Sat, 11 Mar 2023 08:34:53 GMT</pubDate></item><item><title><![CDATA[Reply to Mailtrain (v1) unlisted from app store on Fri, 10 Mar 2023 15:23:13 GMT]]></title><description><![CDATA[<p dir="auto">EspoCRM can do similar, too.</p>
]]></description><link>https://forum.cloudron.io/post/63008</link><guid isPermaLink="true">https://forum.cloudron.io/post/63008</guid><dc:creator><![CDATA[marcusquinn]]></dc:creator><pubDate>Fri, 10 Mar 2023 15:23:13 GMT</pubDate></item><item><title><![CDATA[Reply to Mailtrain (v1) unlisted from app store on Fri, 10 Mar 2023 14:38:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jdaviescoates" aria-label="Profile: jdaviescoates">@<bdi>jdaviescoates</bdi></a> give Listmonk a chance.</p>
]]></description><link>https://forum.cloudron.io/post/63005</link><guid isPermaLink="true">https://forum.cloudron.io/post/63005</guid><dc:creator><![CDATA[luckow]]></dc:creator><pubDate>Fri, 10 Mar 2023 14:38:18 GMT</pubDate></item><item><title><![CDATA[Reply to Mailtrain (v1) unlisted from app store on Fri, 10 Mar 2023 13:00:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/girish" aria-label="Profile: girish">@<bdi>girish</bdi></a> said in <a href="/post/62968">Mailtrain (v1) unlisted from app store</a>:</p>
<blockquote>
<p dir="auto">mautic</p>
</blockquote>
<p dir="auto">When I looked a Mautic I found it tool complex for my needs.  Didn't seem to be obvious/ easy to just quickly use it to set-up a mailing list.</p>
]]></description><link>https://forum.cloudron.io/post/62985</link><guid isPermaLink="true">https://forum.cloudron.io/post/62985</guid><dc:creator><![CDATA[jdaviescoates]]></dc:creator><pubDate>Fri, 10 Mar 2023 13:00:06 GMT</pubDate></item><item><title><![CDATA[Reply to Mailtrain (v1) unlisted from app store on Fri, 10 Mar 2023 09:57:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jdaviescoates" aria-label="Profile: jdaviescoates">@<bdi>jdaviescoates</bdi></a> said in <a href="/post/62966">Mailtrain (v1) unlisted from app store</a>:</p>
<blockquote>
<p dir="auto">(although perhaps Listmonk is the way forward)</p>
</blockquote>
<p dir="auto">We use mailtrain v1 for last 8 years. It still works but we will move to mautic.</p>
]]></description><link>https://forum.cloudron.io/post/62968</link><guid isPermaLink="true">https://forum.cloudron.io/post/62968</guid><dc:creator><![CDATA[girish]]></dc:creator><pubDate>Fri, 10 Mar 2023 09:57:20 GMT</pubDate></item><item><title><![CDATA[Reply to Mailtrain (v1) unlisted from app store on Fri, 10 Mar 2023 09:56:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jdaviescoates" aria-label="Profile: jdaviescoates">@<bdi>jdaviescoates</bdi></a> I have been looking for a demo or some youtube tutorial on how v2 looks like. I cannot even find any screenshots. Do you know of any?</p>
]]></description><link>https://forum.cloudron.io/post/62967</link><guid isPermaLink="true">https://forum.cloudron.io/post/62967</guid><dc:creator><![CDATA[girish]]></dc:creator><pubDate>Fri, 10 Mar 2023 09:56:00 GMT</pubDate></item><item><title><![CDATA[Reply to Mailtrain (v1) unlisted from app store on Fri, 10 Mar 2023 09:49:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/girish" aria-label="Profile: girish">@<bdi>girish</bdi></a> said in <a href="/post/62960">Mailtrain (v1) unlisted from app store</a>:</p>
<blockquote>
<p dir="auto">if we package v2 it will be a different package</p>
</blockquote>
<p dir="auto">Please do package it! <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=af5271e93de" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":)" alt="🙂" /></p>
<p dir="auto">(although perhaps Listmonk is the way forward)</p>
]]></description><link>https://forum.cloudron.io/post/62966</link><guid isPermaLink="true">https://forum.cloudron.io/post/62966</guid><dc:creator><![CDATA[jdaviescoates]]></dc:creator><pubDate>Fri, 10 Mar 2023 09:49:13 GMT</pubDate></item><item><title><![CDATA[Reply to Mailtrain (v1) unlisted from app store on Fri, 10 Mar 2023 09:05:41 GMT]]></title><description><![CDATA[<p dir="auto">v2 is a totally different app. Having a whole bunch of different requirements (3 subdomains etc).</p>
<p dir="auto">v1 -&gt; v2 migration is also buggy. <a href="https://github.com/Mailtrain-org/mailtrain/issues/1145" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/Mailtrain-org/mailtrain/issues/1145</a> for example . So, if we package v2 it will be a different package.</p>
]]></description><link>https://forum.cloudron.io/post/62960</link><guid isPermaLink="true">https://forum.cloudron.io/post/62960</guid><dc:creator><![CDATA[girish]]></dc:creator><pubDate>Fri, 10 Mar 2023 09:05:41 GMT</pubDate></item></channel></rss>