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. Support
  3. Can I reset the DKIM settings?

Can I reset the DKIM settings?

Scheduled Pinned Locked Moved Solved Support
emaildkim
22 Posts 4 Posters 2.7k Views 4 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

    @scooke said in Can I reset the DKIM settings?:

    So I checked that domain, and noticed that the DNS records and the email records on the cloudron both have this as their DKIM: cloudron-domain1com._domainkey. ?? Why wouldn't it be cloudron-domain2com._domainkey?

    Did you also change the domain of the mail sever ? https://docs.cloudron.io/email/#server-location . The domain here determines the "name" of the mail server (and the required DKIM settings).

    scookeS Offline
    scookeS Offline
    scooke
    wrote on last edited by scooke
    #3

    @girish Yes, that was changed. That was changed to domain2 while on still on VPS 1, where the initial mail location was domain1. So, I guess it didn't update properly back then. This is over a year ago. Maybe there was some glitch back then.

    I tried to redo it just now by simply deleting "my" and retyping it, and there was a little message saying it was updating DNS, but only for the most recently added domain. I checked my main cloudron domain email settings under Status, and it still shows cloudron-domain1._domainkey, that the cloudron-domain2._domainkey DKIM key that others have.

    I don't fully understand the DNS magic realm, and maybe it's fine that the DKIM domain doesn't actually match the actual domain, but now that I've discovered that my Cloudron is using three different DKIMs, I'd prefer to have them all use cloudron-domain2._domainkey.

    Would I just navigate to where those keys are held on the VPS and delete them, and upon restarting the VPS cloudron will regenerate them, but properly using the current domain? My rDNS, or PTR record, uses my.domain2.com, same as the main dashboard domain, so don't these all have to match optimally?

    A life lived in fear is a life half-lived

    scookeS 1 Reply Last reply
    0
    • scookeS scooke

      @girish Yes, that was changed. That was changed to domain2 while on still on VPS 1, where the initial mail location was domain1. So, I guess it didn't update properly back then. This is over a year ago. Maybe there was some glitch back then.

      I tried to redo it just now by simply deleting "my" and retyping it, and there was a little message saying it was updating DNS, but only for the most recently added domain. I checked my main cloudron domain email settings under Status, and it still shows cloudron-domain1._domainkey, that the cloudron-domain2._domainkey DKIM key that others have.

      I don't fully understand the DNS magic realm, and maybe it's fine that the DKIM domain doesn't actually match the actual domain, but now that I've discovered that my Cloudron is using three different DKIMs, I'd prefer to have them all use cloudron-domain2._domainkey.

      Would I just navigate to where those keys are held on the VPS and delete them, and upon restarting the VPS cloudron will regenerate them, but properly using the current domain? My rDNS, or PTR record, uses my.domain2.com, same as the main dashboard domain, so don't these all have to match optimally?

      scookeS Offline
      scookeS Offline
      scooke
      wrote on last edited by
      #4

      So, is it possible to reset the DKIM certs, or no? Can I just remove the ones which don't have the current info, and they'll be regenerated properly? Or will I bork my Cloudron up if I do that?

      A life lived in fear is a life half-lived

      girishG 1 Reply Last reply
      0
      • scookeS scooke

        So, is it possible to reset the DKIM certs, or no? Can I just remove the ones which don't have the current info, and they'll be regenerated properly? Or will I bork my Cloudron up if I do that?

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

        @scooke So, the DKIM keys can be arbitrarily named. It's not a problem that it has the old domains name as part of it. In more recent Cloudron version, we have actually started using a hash and not the concrete name because people had similar concern as yours about "referencing" an older name.

        If you want to reset this, you have to update the database directly for the moment. You can do it like this:

         mysql -uroot -ppassword -e "select domain, dkimSelector from box.mail;"
        

        The above command will show the current domain and dkim selector. To update it, something like:

         mysql -uroot -ppassword -e "UPDATE box.mail SET dkimSelector='cloudron' WHERE domain='currentdomain';"
        

        (please update the domain value accordingly).

        As said, this is not a problem as such, so there is no issue leaving it as-is. I will make the dkim selector configurable in the coming release.

        scookeS jdaviescoatesJ 3 Replies Last reply
        3
        • girishG girish

          @scooke So, the DKIM keys can be arbitrarily named. It's not a problem that it has the old domains name as part of it. In more recent Cloudron version, we have actually started using a hash and not the concrete name because people had similar concern as yours about "referencing" an older name.

          If you want to reset this, you have to update the database directly for the moment. You can do it like this:

           mysql -uroot -ppassword -e "select domain, dkimSelector from box.mail;"
          

          The above command will show the current domain and dkim selector. To update it, something like:

           mysql -uroot -ppassword -e "UPDATE box.mail SET dkimSelector='cloudron' WHERE domain='currentdomain';"
          

          (please update the domain value accordingly).

          As said, this is not a problem as such, so there is no issue leaving it as-is. I will make the dkim selector configurable in the coming release.

          scookeS Offline
          scookeS Offline
          scooke
          wrote on last edited by
          #6

          @girish Much appreciated, thank you!

          A life lived in fear is a life half-lived

          1 Reply Last reply
          0
          • girishG girish

            @scooke So, the DKIM keys can be arbitrarily named. It's not a problem that it has the old domains name as part of it. In more recent Cloudron version, we have actually started using a hash and not the concrete name because people had similar concern as yours about "referencing" an older name.

            If you want to reset this, you have to update the database directly for the moment. You can do it like this:

             mysql -uroot -ppassword -e "select domain, dkimSelector from box.mail;"
            

            The above command will show the current domain and dkim selector. To update it, something like:

             mysql -uroot -ppassword -e "UPDATE box.mail SET dkimSelector='cloudron' WHERE domain='currentdomain';"
            

            (please update the domain value accordingly).

            As said, this is not a problem as such, so there is no issue leaving it as-is. I will make the dkim selector configurable in the coming release.

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

            @girish said in Can I reset the DKIM settings?:

            As said, this is not a problem as such, so there is no issue leaving it as-is. I will make the dkim selector configurable in the coming release.

            I would appear to me that somehow it is an issue.

            Like @scooke I both moved my my. domain around (from uniteddiversity.org to uniteddiversity.coop and changed my mail server address from my.uniteddiversity.coop to mail.uniteddiversity.coop )

            And when I do a uniteddiversity.coop:email DKIM lookup on https://mxtoolbox.com/SuperTool.aspx it tells me:

            No DKIM Record found

            So I looked in my DNS and found these DKIM records which Cloudron obviously set:

            ebaaffd6-a7f5-4868-aeee-02ff7b72285f-image.png

            And also, in email status within Cloudon, I have this:

            4ac5f17f-f199-4cdb-bc61-7e2462a0eb8c-image.png

            So why are they not being found when I do a uniteddiversity.coop:email DKIM lookup on https://mxtoolbox.com/SuperTool.aspx ?

            I use Cloudron with Gandi & Hetzner

            girishG 1 Reply Last reply
            0
            • jdaviescoatesJ jdaviescoates

              @girish said in Can I reset the DKIM settings?:

              As said, this is not a problem as such, so there is no issue leaving it as-is. I will make the dkim selector configurable in the coming release.

              I would appear to me that somehow it is an issue.

              Like @scooke I both moved my my. domain around (from uniteddiversity.org to uniteddiversity.coop and changed my mail server address from my.uniteddiversity.coop to mail.uniteddiversity.coop )

              And when I do a uniteddiversity.coop:email DKIM lookup on https://mxtoolbox.com/SuperTool.aspx it tells me:

              No DKIM Record found

              So I looked in my DNS and found these DKIM records which Cloudron obviously set:

              ebaaffd6-a7f5-4868-aeee-02ff7b72285f-image.png

              And also, in email status within Cloudon, I have this:

              4ac5f17f-f199-4cdb-bc61-7e2462a0eb8c-image.png

              So why are they not being found when I do a uniteddiversity.coop:email DKIM lookup on https://mxtoolbox.com/SuperTool.aspx ?

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

              @jdaviescoates It appears fine in the DNS.

              $ host -t TXT cloudron-uniteddiversityorg._domainkey.uniteddiversity.coop
              cloudron-uniteddiversityorg._domainkey.uniteddiversity.coop descriptive text "v=DKIM1; t=s; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDFZ/gh1xMkTbgkE1fEQWrFY8jn0uoxpLLvtAPHhWKNRSv4k88PKw/kqdBCHx3fV1CjabMH8zjZBQgXpRqfopJLbdHmGDUKkbpFfb4XNoXXGjxbJzceBVWJtVnKdmNRT5wOFSpltJkkSSU3uRbwn81NEBd9Duavt4x8wu+tUFkQ4wIDAQAB"
              

              Maybe the web tool is (temporarily) broken ?

              girishG 1 Reply Last reply
              1
              • girishG girish

                @jdaviescoates It appears fine in the DNS.

                $ host -t TXT cloudron-uniteddiversityorg._domainkey.uniteddiversity.coop
                cloudron-uniteddiversityorg._domainkey.uniteddiversity.coop descriptive text "v=DKIM1; t=s; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDFZ/gh1xMkTbgkE1fEQWrFY8jn0uoxpLLvtAPHhWKNRSv4k88PKw/kqdBCHx3fV1CjabMH8zjZBQgXpRqfopJLbdHmGDUKkbpFfb4XNoXXGjxbJzceBVWJtVnKdmNRT5wOFSpltJkkSSU3uRbwn81NEBd9Duavt4x8wu+tUFkQ4wIDAQAB"
                

                Maybe the web tool is (temporarily) broken ?

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

                @girish said in Can I reset the DKIM settings?:

                Maybe the web tool is (temporarily) broken ?

                It appears fine there too.

                b5f21411-6508-437e-ae79-af5020cbfed2-image.png

                jdaviescoatesJ 1 Reply Last reply
                1
                • girishG girish

                  @girish said in Can I reset the DKIM settings?:

                  Maybe the web tool is (temporarily) broken ?

                  It appears fine there too.

                  b5f21411-6508-437e-ae79-af5020cbfed2-image.png

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

                  @girish I was doing it this way:

                  uniteddiversity.coop:email

                  32709e79-f096-4493-a2d7-78be03c5afa3-image.png

                  As you can see that is still showing an error.

                  I use Cloudron with Gandi & Hetzner

                  girishG 1 Reply Last reply
                  1
                  • jdaviescoatesJ jdaviescoates

                    @girish I was doing it this way:

                    uniteddiversity.coop:email

                    32709e79-f096-4493-a2d7-78be03c5afa3-image.png

                    As you can see that is still showing an error.

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

                    @jdaviescoates said in Can I reset the DKIM settings?:

                    uniteddiversity.coop:email

                    I think the tool wants a domain name. Why are you adding a ":email" in the end? Is that a special syntax on that site?

                    jdaviescoatesJ 1 Reply Last reply
                    0
                    • girishG girish

                      @jdaviescoates said in Can I reset the DKIM settings?:

                      uniteddiversity.coop:email

                      I think the tool wants a domain name. Why are you adding a ":email" in the end? Is that a special syntax on that site?

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

                      @girish said in Can I reset the DKIM settings?:

                      Why are you adding a ":email" in the end? Is that a special syntax on that site?

                      Yes:

                      a9f213fb-c078-49c1-8333-3fe570f92a55-image.png

                      I use Cloudron with Gandi & Hetzner

                      girishG 1 Reply Last reply
                      0
                      • jdaviescoatesJ jdaviescoates

                        @girish said in Can I reset the DKIM settings?:

                        Why are you adding a ":email" in the end? Is that a special syntax on that site?

                        Yes:

                        a9f213fb-c078-49c1-8333-3fe570f92a55-image.png

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

                        @jdaviescoates Ahhh, I had to read that a couple of times to grok it. The :email is not literal but is the DKIM selector (says so in the text). The DKIM selector in Cloudron is cloudron-uniteddiversityorg (this changes for each installation based on the primary domain. this allows to add same domain on multiple cloudrons).

                        So, try with uniteddiversity.coop:cloudron-uniteddiversityorg and that does work.

                        scookeS jdaviescoatesJ 2 Replies Last reply
                        2
                        • girishG girish

                          @jdaviescoates Ahhh, I had to read that a couple of times to grok it. The :email is not literal but is the DKIM selector (says so in the text). The DKIM selector in Cloudron is cloudron-uniteddiversityorg (this changes for each installation based on the primary domain. this allows to add same domain on multiple cloudrons).

                          So, try with uniteddiversity.coop:cloudron-uniteddiversityorg and that does work.

                          scookeS Offline
                          scookeS Offline
                          scooke
                          wrote on last edited by
                          #14

                          @girish Your comprehensional wizardy astounds me! Seriously, impressive. I aim for that type of thinking to better deduce problems, and when I see it done, right in front of me, it's impressive.

                          EDIT: though this sounds sarcastic, I am being totally sincere!

                          A life lived in fear is a life half-lived

                          girishG 1 Reply Last reply
                          2
                          • scookeS scooke

                            @girish Your comprehensional wizardy astounds me! Seriously, impressive. I aim for that type of thinking to better deduce problems, and when I see it done, right in front of me, it's impressive.

                            EDIT: though this sounds sarcastic, I am being totally sincere!

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

                            @scooke said in Can I reset the DKIM settings?:

                            EDIT: though this sounds sarcastic, I am being totally sincere!

                            ha ha 🙂

                            1 Reply Last reply
                            1
                            • girishG girish

                              @jdaviescoates Ahhh, I had to read that a couple of times to grok it. The :email is not literal but is the DKIM selector (says so in the text). The DKIM selector in Cloudron is cloudron-uniteddiversityorg (this changes for each installation based on the primary domain. this allows to add same domain on multiple cloudrons).

                              So, try with uniteddiversity.coop:cloudron-uniteddiversityorg and that does work.

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

                              @girish said in Can I reset the DKIM settings?:

                              So, try with uniteddiversity.coop:cloudron-uniteddiversityorg and that does work.

                              Great, thanks for working that out! 🙏

                              Next question: did it ever become possible to reset such things?

                              For not particular reason other than neatness I'd kinda like it to by cloudron-uniteddiversitycoop instead, or even randomstring_uniteddiversity.coop

                              I use Cloudron with Gandi & Hetzner

                              girishG 1 Reply Last reply
                              0
                              • jdaviescoatesJ jdaviescoates

                                @girish said in Can I reset the DKIM settings?:

                                So, try with uniteddiversity.coop:cloudron-uniteddiversityorg and that does work.

                                Great, thanks for working that out! 🙏

                                Next question: did it ever become possible to reset such things?

                                For not particular reason other than neatness I'd kinda like it to by cloudron-uniteddiversitycoop instead, or even randomstring_uniteddiversity.coop

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

                                @jdaviescoates I think https://forum.cloudron.io/topic/7478/more-on-whitelabelling-cloudron-for-providing-managed-cloudron-instances . That never got implemented

                                1 Reply Last reply
                                0
                                • girishG girish

                                  @scooke So, the DKIM keys can be arbitrarily named. It's not a problem that it has the old domains name as part of it. In more recent Cloudron version, we have actually started using a hash and not the concrete name because people had similar concern as yours about "referencing" an older name.

                                  If you want to reset this, you have to update the database directly for the moment. You can do it like this:

                                   mysql -uroot -ppassword -e "select domain, dkimSelector from box.mail;"
                                  

                                  The above command will show the current domain and dkim selector. To update it, something like:

                                   mysql -uroot -ppassword -e "UPDATE box.mail SET dkimSelector='cloudron' WHERE domain='currentdomain';"
                                  

                                  (please update the domain value accordingly).

                                  As said, this is not a problem as such, so there is no issue leaving it as-is. I will make the dkim selector configurable in the coming release.

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

                                  @girish, I was thinking of this:

                                  @girish said in Can I reset the DKIM settings?:

                                  I will make the dkim selector configurable in the coming release.

                                  I use Cloudron with Gandi & Hetzner

                                  girishG 1 Reply Last reply
                                  1
                                  • jdaviescoatesJ jdaviescoates

                                    @girish, I was thinking of this:

                                    @girish said in Can I reset the DKIM settings?:

                                    I will make the dkim selector configurable in the coming release.

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

                                    @jdaviescoates right, unfortunately, it was not prioritized/implemented.

                                    1 Reply Last reply
                                    1
                                    • d19dotcaD Offline
                                      d19dotcaD Offline
                                      d19dotca
                                      wrote last edited by
                                      #20

                                      @girish , It's a couple years later and I just stumbled across this while doing some DNS record cleanups and remembering that some use the older style DKIM name and others use the newer style. The "OCD" in me wants to format the older ones to use the newer naming scheme. Is this something that ever made it in the product? I see you mentioned that you "will make the dim selector configurable in the coming release" but I don't think I see a way to do that yet. I do see a way from above in this thread though that should do the trick manually in MySQL. https://forum.cloudron.io/post/40250

                                      --
                                      Dustin Dauncey
                                      www.d19.ca

                                      1 Reply Last reply
                                      0
                                      • girishG Offline
                                        girishG Offline
                                        girish
                                        Staff
                                        wrote last edited by
                                        #21

                                        @d19dotca we didn't implement this. So, you have to just edit the database. It's in the mail table , there is a field called dkimSelector . If you change it, that's the key it expects . You have to also restart the mail service to pick up the new value in the database.

                                        1 Reply Last reply
                                        2
                                        • d19dotcaD Offline
                                          d19dotcaD Offline
                                          d19dotca
                                          wrote last edited by
                                          #22

                                          It's going well so far in my testing. Updated about 6 domains with the newer DKIM selector today. It'd definitely be nice to have this configurable though in the UI so we can change it in one sweep to a new DKIM selector of our choosing. 🙂

                                          --
                                          Dustin Dauncey
                                          www.d19.ca

                                          1 Reply Last reply
                                          3
                                          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