diff --git a/CHANGES b/CHANGES index 45ba50d4a..cd5e03411 100644 --- a/CHANGES +++ b/CHANGES @@ -1036,3 +1036,17 @@ * Add button to send test email * Fix crash in carbon which made graphs disappear on some Cloudrons +[1.7.2] +* Add rsync format for backups. This feature allows incremental backups +* Add Google DNS backend (thanks @syn) +* Add Cloudscale and Exoscale as supported VPS providers +* Display backup progress and status in the web interface +* Preliminary IPv6 support +* Add IP RBL status to web interface +* Add auto-update pattern `Every wednesday night` +* Update Haraka to 2.8.15. This fixes the issue where emails were bounced with the message 'Send MAIL FROM first' +* Do not overwrite existing subdomain when app's location is changed +* Add button to send test email +* Fix crash in carbon which made graphs disappear on some Cloudrons +* Fix issue where OAuth SSO did not work when alternate domain was used + diff --git a/webadmin/src/views/settings.js b/webadmin/src/views/settings.js index c6f6d69e2..fcf1f9c61 100644 --- a/webadmin/src/views/settings.js +++ b/webadmin/src/views/settings.js @@ -42,7 +42,8 @@ angular.module('Application').controller('SettingsController', ['$scope', '$loca $scope.storageProvider = [ { name: 'Amazon S3', value: 's3' }, - { name: 'DigitalOcean Spaces (NYC3)', value: 'digitalocean-spaces' }, + // disabled because DO spaces is not yet production ready + // { name: 'DigitalOcean Spaces (NYC3)', value: 'digitalocean-spaces' }, { name: 'Exoscale SOS', value: 'exoscale-sos' }, { name: 'Filesystem', value: 'filesystem' }, { name: 'Minio', value: 'minio' },