We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 720f4d5 commit cd9c215Copy full SHA for cd9c215
1 file changed
configure.sh
@@ -549,6 +549,12 @@ configure_ionos_mailconfig_api() {
549
execute_occ_command config:app:set --value "${IONOS_MAILCONFIG_API_PASS}" --sensitive --type string mail ionos_mailconfig_api_auth_pass
550
551
execute_occ_command config:app:set --value yes --type string mail ionos-mailconfig-enabled
552
+
553
+ # Disable mailconfig if brand is "IONOSCLOUD"
554
+ if [ "$BRAND" = "IONOSCLOUD" ]; then
555
+ log_info "Brand is 'ionoscloud', disabling ionos-mailconfig-enabled..."
556
+ execute_occ_command config:app:set --value no --type string mail ionos-mailconfig-enabled
557
+ fi
558
}
559
560
# Configure IONOS AI Model Hub with API credentials
0 commit comments