mass update

This commit is contained in:
ace
2024-05-25 18:12:30 +03:00
parent d057e60ea4
commit 6b2f7f716d
38 changed files with 569 additions and 75 deletions

View File

@ -77,7 +77,7 @@ roundcube_default_values:
'ssl' => array(
'verify_peer' => false,
'allow_self_signed' => true,
'ciphers' => 'TLSv1.2+HIGH:!aNull:@STRENGTH',
'ciphers' => 'TLSv1.3+HIGH:!aNull:@STRENGTH',
),
);
// For STARTTLS SMTP
@ -85,7 +85,7 @@ roundcube_default_values:
'ssl' => array(
'verify_peer' => false,
'allow_self_signed' => true,
'ciphers' => 'TLSv1.2+HIGH:!aNull:@STRENGTH',
'ciphers' => 'TLSv1.3+HIGH:!aNull:@STRENGTH',
),
);
?>

View File

@ -5,7 +5,7 @@
- postgres_enabled is defined and postgres_enabled
- set_fact:
roundcube_combined_values: "{{ roundcube_default_values | combine(roundcube_values, recursive=true) }}"
roundcube_combined_values: "{{ roundcube_default_values | combine(roundcube_values | default({}), recursive=true) }}"
- name: Deploy RoundCube
kubernetes.core.helm: