Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Bookmarks
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

Cloudron Forum

Apps | Demo | Docs | Install
  1. Cloudron Forum
  2. Mailtrain
  3. Mailtrain (v1) unlisted from app store

Mailtrain (v1) unlisted from app store

Scheduled Pinned Locked Moved Mailtrain
15 Posts 5 Posters 2.2k Views 5 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • girishG girish

    @jdaviescoates said in Mailtrain (v1) unlisted from app store:

    (although perhaps Listmonk is the way forward)

    We use mailtrain v1 for last 8 years. It still works but we will move to mautic.

    jdaviescoatesJ Offline
    jdaviescoatesJ Offline
    jdaviescoates
    wrote on last edited by
    #6

    @girish said in Mailtrain (v1) unlisted from app store:

    mautic

    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.

    I use Cloudron with Gandi & Hetzner

    luckowL 1 Reply Last reply
    0
    • jdaviescoatesJ jdaviescoates

      @girish said in Mailtrain (v1) unlisted from app store:

      mautic

      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.

      luckowL Offline
      luckowL Offline
      luckow
      translator
      wrote on last edited by
      #7

      @jdaviescoates give Listmonk a chance.

      Pronouns: he/him | Primary language: German

      1 Reply Last reply
      1
      • marcusquinnM Offline
        marcusquinnM Offline
        marcusquinn
        wrote on last edited by
        #8

        EspoCRM can do similar, too.

        Web Design https://www.evergreen.je
        Development https://brandlight.org
        Life https://marcusquinn.com

        girishG 1 Reply Last reply
        3
        • marcusquinnM marcusquinn

          EspoCRM can do similar, too.

          girishG Offline
          girishG Offline
          girish
          Staff
          wrote on last edited by
          #9

          @marcusquinn interesting, I didn't know it can run campaigns and manage lists!

          marcusquinnM 1 Reply Last reply
          1
          • girishG girish

            @marcusquinn interesting, I didn't know it can run campaigns and manage lists!

            marcusquinnM Offline
            marcusquinnM Offline
            marcusquinn
            wrote on last edited by
            #10

            @girish Yeah, TBH you can do so much more with it, it's a full low-code business app development platform.

            The things you're looking for are Campaigns, Target Lists, Email Templates. It also tracks email opens and clicks.

            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.

            Web Design https://www.evergreen.je
            Development https://brandlight.org
            Life https://marcusquinn.com

            1 Reply Last reply
            3
            • jordanurbsJ Offline
              jordanurbsJ Offline
              jordanurbs
              wrote on last edited by jordanurbs
              #11

              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.

              Any tips for finding that list of email addresses in the app terminal?

              marcusquinnM 1 Reply Last reply
              0
              • jordanurbsJ jordanurbs

                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.

                Any tips for finding that list of email addresses in the app terminal?

                marcusquinnM Offline
                marcusquinnM Offline
                marcusquinn
                wrote on last edited by
                #12

                @jordanurbs I asked ChatGPT for you, and it says:

                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:

                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.

                1. Access the terminal for the Mailtrain app on Cloudron: 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.

                2. Locate the database: 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.

                3. Access the database: Once you have the database name and authentication details, you can use the mysql command-line tool to interact with the database. The command to access the database will look something like this:

                  mysql -u USERNAME -p DATABASE_NAME
                  

                  Replace USERNAME and DATABASE_NAME with your actual database username and name. You will be prompted to enter the database password.

                4. Find your data: 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:

                  show tables;
                  

                  You will need to look for a table that likely contains user information, such as users or admins.

                5. Retrieve your username: Once you have identified the correct table, you can issue a SQL query to retrieve your username. The query might look like this:

                  SELECT username FROM users;
                  

                  This command will display all the usernames in the users table. You should be able to identify yours from the list.

                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.

                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.

                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.

                Web Design https://www.evergreen.je
                Development https://brandlight.org
                Life https://marcusquinn.com

                jordanurbsJ 1 Reply Last reply
                1
                • marcusquinnM marcusquinn

                  @jordanurbs I asked ChatGPT for you, and it says:

                  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:

                  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.

                  1. Access the terminal for the Mailtrain app on Cloudron: 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.

                  2. Locate the database: 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.

                  3. Access the database: Once you have the database name and authentication details, you can use the mysql command-line tool to interact with the database. The command to access the database will look something like this:

                    mysql -u USERNAME -p DATABASE_NAME
                    

                    Replace USERNAME and DATABASE_NAME with your actual database username and name. You will be prompted to enter the database password.

                  4. Find your data: 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:

                    show tables;
                    

                    You will need to look for a table that likely contains user information, such as users or admins.

                  5. Retrieve your username: Once you have identified the correct table, you can issue a SQL query to retrieve your username. The query might look like this:

                    SELECT username FROM users;
                    

                    This command will display all the usernames in the users table. You should be able to identify yours from the list.

                  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.

                  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.

                  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.

                  jordanurbsJ Offline
                  jordanurbsJ Offline
                  jordanurbs
                  wrote on last edited by
                  #13

                  @marcusquinn hey thanks, I totally forgot about ChatGPT! It's giving me mysql command lessons as we speak. Cheers.

                  1 Reply Last reply
                  2
                  • girishG Offline
                    girishG Offline
                    girish
                    Staff
                    wrote on last edited by
                    #14

                    If you open a web terminal , 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.

                    marcusquinnM 1 Reply Last reply
                    2
                    • girishG girish

                      If you open a web terminal , 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.

                      marcusquinnM Offline
                      marcusquinnM Offline
                      marcusquinn
                      wrote on last edited by
                      #15

                      @girish That is a super handy feature!

                      Web Design https://www.evergreen.je
                      Development https://brandlight.org
                      Life https://marcusquinn.com

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • Bookmarks
                      • Search