The current backup process: “sudo /root/mailinabox/management/backup.py --full”
understandably creates many volumes but uses a single digit for the first 9 volumes and then goes to two digits. I am proposing that it uses two, maybe even three, digits from the onset so that the files automatically sort correctly.
I am seeking to avoid this;
duplicity-full.20260208T080248Z.vol19.difftar.gpg
duplicity-full.20260208T080248Z.vol1.difftar.gpg
duplicity-full.20260208T080248Z.vol20.difftar.gpg
would expect to see;
duplicity-full.20260208T080248Z.vol01.difftar.gpg
…02 through 18 in between…
duplicity-full.20260208T080248Z.vol19.difftar.gpg
duplicity-full.20260208T080248Z.vol20.difftar.gpg
Yup - MIAB just asks duplicity to make a backup. MIAB doesn’t know or care about those details.
But that kind of change to duplicity won’t be completely trivial. If you want 3 digits, someone will want 4, you want 4 and I’ll need 5, … It could be configurable, or duplicity could estimate the backup size and work out how many digits are required… In any case, it’s not going to be a trivial change - do you code