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


Skip to content

Feature Requests

New ideas, Feature Requests

790 Topics 6.0k Posts
  • 1 Votes
    1 Posts
    436 Views
    No one has replied
  • Default email domain for new users

    1
    5 Votes
    1 Posts
    271 Views
    No one has replied
  • LDAP Email attribute

    4
    4 Votes
    4 Posts
    1k Views
    M
    Sounds super useful indeed! We could manage all our users centrally and create mailboxes for them too
  • disposable email prefixes for existing mailboxes

    Moved email subaddress
    9
    2 Votes
    9 Posts
    2k Views
    girishG
    I will move this to Feature request then.
  • “Update to latest” button/option

    1
    4 Votes
    1 Posts
    271 Views
    No one has replied
  • Install synadm into synapse app image

    1
    0 Votes
    1 Posts
    304 Views
    No one has replied
  • Record backup size estimate in backup metadata

    backups
    1
    6 Votes
    1 Posts
    387 Views
    No one has replied
  • balenaEngine

    1
    1
    0 Votes
    1 Posts
    388 Views
    No one has replied
  • Add the ability to bookmark / link to an external service

    6
    3 Votes
    6 Posts
    1k Views
    D
    @girish yes
  • Cloudron on Linode CIS Benchmarks for the Base Image

    Moved cis security
    6
    0 Votes
    6 Posts
    2k Views
    D
    @girish I would say pick and choose what is applicable obviously you would know best it's also worth noting there are CIS benchmarks specifically for Docker Containers which might be a better fit. You could combine the two for better hardening. https://www.cisecurity.org/benchmark/docker/ https://github.com/docker/docker-bench-security Let me know what you think
  • Add [Copy to clipboard] button for email client connection details

    7
    2 Votes
    7 Posts
    1k Views
    robiR
    @nebulon because the USER doesn't have a clue. It's the ADMIN that is guiding this process and has to send the info to the USER. The Admin is the one who sets up the mailbox and has the responsibility to notify the user of how to use it. Not the other way around So please make it EASY for Admins to let the users know how to set up Email. Email the Cloudron user the info as soon as the mailbox is created Copy the details easily so it can be pasted to the user if requested.
  • Report cert update success status / lifetime remaining

    certificates
    4
    2 Votes
    4 Posts
    917 Views
    jadudmJ
    @nebulon Many thanks, @nebulon and @girish . The concern wasn't so much that I could not figure out what the status of my certs were external to Cloudron, but more that it would be nice if the area of the dashboard regarding certs would, as a matter of course, just say "You have 47 days remaining, and Cloudron should automatically update your certs in 17 days." And, if I do mash the button to manually run a cert update, it would be nice to get a response in the dash that says "Success! New certs will expire in 90 days!" (Or, whatever it would say.) I was mostly surprised that I got a certbot email saying I only had one day left, making me wonder what was up. (I did do a domain registration move at some point, and possibly other things that could have somehow upset the automatic update process. So, this isn't a bug report.) Not having a simple UI response to the act of hitting "update certs" (and instead being dumped into the log) is all I'm poking at. I don't know how long my personal instance has been running (a month or two now), but it has been a joy. Thank you.
  • This topic is deleted!

    3
    0 Votes
    3 Posts
    4 Views
  • Improve CPU / resource graphs

    graphs
    1
    1
    4 Votes
    1 Posts
    438 Views
    No one has replied
  • 3 Votes
    7 Posts
    2k Views
    nebulonN
    Ok I will mark this as solved then since we already have the feature request for the other mentioned issue.
  • FTP backup Support

    Moved backups feature-request
    7
    11 Votes
    7 Posts
    2k Views
    robiR
    This would go well with a secondary backup facility for all things Cloudron doesn't currently back up, which is valuable, such as Volumes. Add a few protocols for this such as FTPS, SFTP, RCLONE, RSYNC, etc..
  • Implement default NGINX logging

    Solved nginx security logs
    2
    4 Votes
    2 Posts
    857 Views
    girishG
    @mastadamus thanks so much for investigating. I have removed it for next release (7.1) - https://git.cloudron.io/cloudron/box/-/commit/6492c9b71f80120413ff4ae7eefa2f03dc96ea0f
  • Numbered lists in UI

    2
    2 Votes
    2 Posts
    599 Views
    girishG
    I like the idea of having a summary for all the things (apps, users, domains, mailboxes). Good idea.
  • Catchall for multiple domains

    Solved email catch-all
    7
    8 Votes
    7 Posts
    2k Views
    d19dotcaD
    @girish said in Catchall for multiple domains: @d19dotca Wouldn't you create a single mailbox called say admin@ and then put your standard addresses as aliases of that mailbox? Ah, I forgot you can add other domains as aliases now, so yes I suppose in my case I could use my main email address at my own domain and add in aliases of postmaster and webmaster and abuse and hostmaster for each domain from the same window, this would definitely save a little bit of time as I couldn't need to add from each domain page individually. Ideally though it'd be great to have some of those standard ones just be auto-created for example and setting it to one email or something since those emails are generally required for proper RFC compliance. I'll work in the meantime on migrating from the old system I had to the new system. I created those before the multi-domain email aliases was added.
  • Disk usage in System Info: show history

    Moved
    4
    1
    3 Votes
    4 Posts
    1k Views
    necrevistonnezrN
    Work-around for the time being: Show disk usage for the last 7 days via SSH login nano diskusage.sh (note, I have two local disks that need monitoring; the command below adds date and data for both disks in one line) #!/bin/sh echo $(date +%F && df -h /dev/sda1 --output=source,fstype,size,used,avail,pcent | tail -n1 && df -h /dev/sdc --output=source,fstype,size,used,avail,pcent | tail -n1)>> /home/USER/Disk.txt cat Disk.txt 2021-12-08 /dev/sda1 ext4 1,8T 1,1T 694G 61% /dev/sdc ext4 916G 444G 426G 52% 2021-12-09 /dev/sda1 ext4 1,8T 1,1T 694G 61% /dev/sdc ext4 916G 445G 426G 52% crontab -e add 45 4 * * * sh /home/USER/diskusage.sh >/dev/null 2>&1 nano ~/.bash.rc add printf "\t\n" cat /home/kdj/Disk.txt | tail -7