From 90775b0013f5042d6baab2b0c5f05c5618c0d63a Mon Sep 17 00:00:00 2001 From: alfi0812 <43101280+alfi0812@users.noreply.github.com> Date: Mon, 25 Mar 2024 11:30:38 +0100 Subject: [PATCH] fix(wekan): Fix Missing ENV for Mail functionality (#19767) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** ⚒️ Fixes Mail functionality as "MAIL_FROM" is required for Mail usage **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [x] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code **🧪 How Has This Been Tested?** **📃 Notes:** **✔️ Checklist:** - [x] ⚖️ My code follows the style guidelines of this project - [x] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made corresponding changes to the documentation - [ ] ⚠️ My changes generate no new warnings - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [x] ⬆️ I increased versions for any altered app according to semantic versioning - [x] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):` or `chore(chart-name):` **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ Signed-off-by: alfi0812 <43101280+alfi0812@users.noreply.github.com> --- charts/stable/wekan/Chart.yaml | 2 +- charts/stable/wekan/questions.yaml | 5 +++++ charts/stable/wekan/values.yaml | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/charts/stable/wekan/Chart.yaml b/charts/stable/wekan/Chart.yaml index a2fd6ba441b..972920ae453 100644 --- a/charts/stable/wekan/Chart.yaml +++ b/charts/stable/wekan/Chart.yaml @@ -42,4 +42,4 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/stable/wekan - https://hub.docker.com/r/wekanteam/wekan type: application -version: 14.15.4 +version: 14.15.5 diff --git a/charts/stable/wekan/questions.yaml b/charts/stable/wekan/questions.yaml index be8b2a370ee..106f3a93423 100644 --- a/charts/stable/wekan/questions.yaml +++ b/charts/stable/wekan/questions.yaml @@ -148,6 +148,11 @@ questions: schema: type: string default: "" + - variable: MAIL_FROM + label: "MAIL_FROM" + schema: + type: string + default: "" - variable: notificationsenabled label: "Notifications Settings" schema: diff --git a/charts/stable/wekan/values.yaml b/charts/stable/wekan/values.yaml index 50fd9e204c2..8af4978c8f8 100644 --- a/charts/stable/wekan/values.yaml +++ b/charts/stable/wekan/values.yaml @@ -47,6 +47,7 @@ workload: # MAIL_SERVICE_USER: "" # MAIL_SERVICE_PASSWORD: "" # MAIL_SERVICE: "" + # MAIL_FROM: "" # BIGEVENTS_PATTERN: "NONE" # NOTIFICATION_TRAY_AFTER_READ_DAYS_BEFORE_REMOVE: 90 # EMAIL_NOTIFICATION_TIMEOUT: 30000