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. Roundcube
  3. Roundcube Login

Roundcube Login

Scheduled Pinned Locked Moved Solved Roundcube
roundcubemail
14 Posts 4 Posters 1.6k 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 Offline
    girishG Offline
    girish
    Staff
    wrote on last edited by
    #5

    Yes, you can install other plugins as well - https://cloudron.io/documentation/apps/roundcube/#plugins

    1 Reply Last reply
    1
    • necrevistonnezrN Offline
      necrevistonnezrN Offline
      necrevistonnezr
      wrote on last edited by
      #6

      I have Roundcube open in Hamsket and it asks me to enter my login details every time.

      I have installed & enabled the TOTP Plugin and also installed & enabled the Persistent Login Plugin - but to no avail (neither in the text cookie modus nor in the AuthToken cookie modus.

      Did anyone succeed in creating a persistent login?

      girishG 1 Reply Last reply
      0
      • necrevistonnezrN necrevistonnezr

        I have Roundcube open in Hamsket and it asks me to enter my login details every time.

        I have installed & enabled the TOTP Plugin and also installed & enabled the Persistent Login Plugin - but to no avail (neither in the text cookie modus nor in the AuthToken cookie modus.

        Did anyone succeed in creating a persistent login?

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

        @necrevistonnezr I haven't heard to Hamsket before, but this happens in a browser session as well or just with Hamsket? I tried in Firefox and it doesn't ask me to login everytime.

        necrevistonnezrN 1 Reply Last reply
        0
        • girishG girish

          @necrevistonnezr I haven't heard to Hamsket before, but this happens in a browser session as well or just with Hamsket? I tried in Firefox and it doesn't ask me to login everytime.

          necrevistonnezrN Offline
          necrevistonnezrN Offline
          necrevistonnezr
          wrote on last edited by
          #8

          @girish said in Roundcube Login:

          @necrevistonnezr I haven't heard to Hamsket before, but this happens in a browser session as well or just with Hamsket? I tried in Firefox and it doesn't ask me to login everytime.

          You are right, it doesen't happen in Chrome.
          Hamsket = Rambox fork, Electron based

          robiR 1 Reply Last reply
          0
          • necrevistonnezrN necrevistonnezr

            @girish said in Roundcube Login:

            @necrevistonnezr I haven't heard to Hamsket before, but this happens in a browser session as well or just with Hamsket? I tried in Firefox and it doesn't ask me to login everytime.

            You are right, it doesen't happen in Chrome.
            Hamsket = Rambox fork, Electron based

            robiR Offline
            robiR Offline
            robi
            wrote on last edited by
            #9

            @necrevistonnezr it's likely how Electron or Hamsket is configured to handle (or not) session data.

            Are you restarting the app between tries, or simply logging in and closing out the tab?

            The more native browser based WebCatalog might be something to try.

            Conscious tech

            necrevistonnezrN 1 Reply Last reply
            0
            • robiR robi

              @necrevistonnezr it's likely how Electron or Hamsket is configured to handle (or not) session data.

              Are you restarting the app between tries, or simply logging in and closing out the tab?

              The more native browser based WebCatalog might be something to try.

              necrevistonnezrN Offline
              necrevistonnezrN Offline
              necrevistonnezr
              wrote on last edited by necrevistonnezr
              #10

              @robi said in Roundcube Login:

              @necrevistonnezr it's likely how Electron or Hamsket is configured to handle (or not) session data.

              Are you restarting the app between tries, or simply logging in and closing out the tab?

              The more native browser based WebCatalog might be something to try.

              Thanks!
              I now build a much more "native" approach myself using Firefox Portable, Containerise (not the Multi-Account-Container by Mozilla; only Containerise let's you assign urls from the same domain to different containers) and this userChrome.css:

              /*
               * hide-urlbar
               * Hides URL bar, unhides when it (URL bar) or tab bar is hovered.
               * inspired by https://www.reddit.com/r/FirefoxCSS/comments/ca3vo2/extremely_simple_url_bar_hide
               */
              /* hide url bar */
               #nav-bar {
                   min-height: 0 !important;
                   max-height: 0 !important;
                   height: 0 !important;
                   --moz-transform: scaleY(0) !important;
                   transform: scaleY(0) !important;
              /* 	 transition-delay: 1s !important; */
                   transition: all 0.1s ease !important;
               }
              
               /* show url bar on hover (after 5 seconds) or when focused)  */
               #titlebar:hover~#nav-bar,
               #nav-bar:hover,
               #nav-bar:focus-within {
                   --moz-transform: scale(1) !important;
                   transform: scale(1) !important;
              	 transition-delay: 5s !important;
                   max-height: 36px !important;
                   height: 36px !important;
                   min-height: 36px !important;
               }
               /* Change the size of the favicon */
              .tab-icon-image {
              	width: 24px !important;
              	height: 24px !important;
              	margin-bottom: 2px !important;
              }
              

              Now I have a native Firefox instance (including addons like a password manager and adblocker!) with only the services I need, very fast and with a small footprint:

              Screenshot 2020-10-30 085404.png

              If you continue to use Chrome as your default browser, I recommend https://addons.mozilla.org/de/firefox/addon/open-in-chrome-browser/ to e.g. Ctrl+Click open links in Chrome.

              robiR 1 Reply Last reply
              0
              • necrevistonnezrN necrevistonnezr

                @robi said in Roundcube Login:

                @necrevistonnezr it's likely how Electron or Hamsket is configured to handle (or not) session data.

                Are you restarting the app between tries, or simply logging in and closing out the tab?

                The more native browser based WebCatalog might be something to try.

                Thanks!
                I now build a much more "native" approach myself using Firefox Portable, Containerise (not the Multi-Account-Container by Mozilla; only Containerise let's you assign urls from the same domain to different containers) and this userChrome.css:

                /*
                 * hide-urlbar
                 * Hides URL bar, unhides when it (URL bar) or tab bar is hovered.
                 * inspired by https://www.reddit.com/r/FirefoxCSS/comments/ca3vo2/extremely_simple_url_bar_hide
                 */
                /* hide url bar */
                 #nav-bar {
                     min-height: 0 !important;
                     max-height: 0 !important;
                     height: 0 !important;
                     --moz-transform: scaleY(0) !important;
                     transform: scaleY(0) !important;
                /* 	 transition-delay: 1s !important; */
                     transition: all 0.1s ease !important;
                 }
                
                 /* show url bar on hover (after 5 seconds) or when focused)  */
                 #titlebar:hover~#nav-bar,
                 #nav-bar:hover,
                 #nav-bar:focus-within {
                     --moz-transform: scale(1) !important;
                     transform: scale(1) !important;
                	 transition-delay: 5s !important;
                     max-height: 36px !important;
                     height: 36px !important;
                     min-height: 36px !important;
                 }
                 /* Change the size of the favicon */
                .tab-icon-image {
                	width: 24px !important;
                	height: 24px !important;
                	margin-bottom: 2px !important;
                }
                

                Now I have a native Firefox instance (including addons like a password manager and adblocker!) with only the services I need, very fast and with a small footprint:

                Screenshot 2020-10-30 085404.png

                If you continue to use Chrome as your default browser, I recommend https://addons.mozilla.org/de/firefox/addon/open-in-chrome-browser/ to e.g. Ctrl+Click open links in Chrome.

                robiR Offline
                robiR Offline
                robi
                wrote on last edited by
                #11

                @necrevistonnezr Wow nice! That's amazing progress.

                All in Hamsket? Thanks for the visuals! I really like the top horizontal line of Apps compared to the left vertical everyone else does.

                How do we take advantage of this?

                Conscious tech

                necrevistonnezrN 1 Reply Last reply
                0
                • robiR robi

                  @necrevistonnezr Wow nice! That's amazing progress.

                  All in Hamsket? Thanks for the visuals! I really like the top horizontal line of Apps compared to the left vertical everyone else does.

                  How do we take advantage of this?

                  necrevistonnezrN Offline
                  necrevistonnezrN Offline
                  necrevistonnezr
                  wrote on last edited by
                  #12

                  @robi said in Roundcube Login:

                  @necrevistonnezr Wow nice! That's amazing progress.

                  All in Hamsket? Thanks for the visuals! I really like the top horizontal line of Apps compared to the left vertical everyone else does.

                  How do we take advantage of this?

                  No, the great thing is it’s pure Firefox (portable), so no half-working Electron engine without extensions but full Firefox with all addons available!

                  1 Reply Last reply
                  1
                  • robiR Offline
                    robiR Offline
                    robi
                    wrote on last edited by
                    #13

                    Oh I see, so it's not FF integrated in Hamsket, it's just another instance of FF (portable).

                    Can you run more than one instance?

                    I think that's what WebCatalog allows, different browser engines underneath, and Vivaldi was a good recommendation. Maybe they have a portable version as well.

                    Conscious tech

                    necrevistonnezrN 1 Reply Last reply
                    0
                    • robiR robi

                      Oh I see, so it's not FF integrated in Hamsket, it's just another instance of FF (portable).

                      Can you run more than one instance?

                      I think that's what WebCatalog allows, different browser engines underneath, and Vivaldi was a good recommendation. Maybe they have a portable version as well.

                      necrevistonnezrN Offline
                      necrevistonnezrN Offline
                      necrevistonnezr
                      wrote on last edited by
                      #14

                      @robi said in Roundcube Login:

                      Oh I see, so it's not FF integrated in Hamsket, it's just another instance of FF (portable).

                      Can you run more than one instance?

                      You can on Windows, as many as you want. Don’t know about Mac/Linux.

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