[PR #1231] [MERGED] Merge to 2.x 1 #1358

Closed
opened 2026-02-25 21:38:01 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/cypht-org/cypht/pull/1231
Author: @Shadow243
Created: 9/9/2024
Status: Merged
Merged: 9/9/2024
Merged by: @marclaporte

Base: 2.xHead: merge-to-2.x-1


📝 Commits (10+)

  • 9e3035c Fix default_timezone configured from .env file
  • 974c801 Fix default_settings configured from .env file
  • 5faa0eb [FIX] block_list page: reviewing unblock and block actions
  • c4dbafd Comment reload_folder_list that will be reviewed after
  • 63dcbce Merge pull request #1228 from Shadow243/comment-test
  • 505d416 Merge pull request #1213 from christer77/debug-unblock-test
  • 5253f32 Merge pull request #1158 from Shadow243/fix-default-timezone
  • d5608ad fix imap::read_literal to work on 7-bit bytes rather than multibyte strings, fix imap unit tests and add tests for recent bugs: accidentally reading next lines of literals and not splitting addresses correctly
  • 78486a6 add note about imap read_literal method
  • a5f8215 Merge pull request #1230 from cypht-org/bugfix/multibyte-imap

📊 Changes

41 files changed (+690 additions, -560 deletions)

View changed files

📝 .env.example (+10 -1)
📝 config/app.php (+107 -37)
📝 index.php (+4 -3)
📝 lib/config.php (+2 -2)
📝 lib/environment.php (+53 -4)
📝 lib/modules_exec.php (+2 -2)
📝 modules/advanced_search/modules.php (+1 -1)
📝 modules/contacts/modules.php (+1 -1)
📝 modules/core/functions.php (+1 -0)
📝 modules/core/handler_modules.php (+43 -30)
📝 modules/core/message_functions.php (+6 -5)
📝 modules/core/message_list_functions.php (+19 -19)
📝 modules/core/output_modules.php (+62 -56)
📝 modules/core/site.js (+18 -71)
📝 modules/feeds/modules.php (+21 -21)
📝 modules/github/modules.php (+15 -15)
📝 modules/imap/functions.php (+2 -2)
📝 modules/imap/handler_modules.php (+21 -21)
📝 modules/imap/hm-imap-base.php (+20 -14)
📝 modules/imap/output_modules.php (+21 -18)

...and 21 more files

📄 Description

merging master to 2.x


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/cypht-org/cypht/pull/1231 **Author:** [@Shadow243](https://github.com/Shadow243) **Created:** 9/9/2024 **Status:** ✅ Merged **Merged:** 9/9/2024 **Merged by:** [@marclaporte](https://github.com/marclaporte) **Base:** `2.x` ← **Head:** `merge-to-2.x-1` --- ### 📝 Commits (10+) - [`9e3035c`](https://github.com/cypht-org/cypht/commit/9e3035cf13ad59892fe038be2f71b61f131a0839) Fix default_timezone configured from .env file - [`974c801`](https://github.com/cypht-org/cypht/commit/974c8012e3857a891ce3714e677c23ba08c26a22) Fix default_settings configured from .env file - [`5faa0eb`](https://github.com/cypht-org/cypht/commit/5faa0eb660353de88b185e0a55251773a172904e) [FIX] block_list page: reviewing unblock and block actions - [`c4dbafd`](https://github.com/cypht-org/cypht/commit/c4dbafddeec7d338dbafd6c5aee89f99526bb22d) Comment reload_folder_list that will be reviewed after - [`63dcbce`](https://github.com/cypht-org/cypht/commit/63dcbcea7d803530899e844ae38f02372e2ae1d9) Merge pull request #1228 from Shadow243/comment-test - [`505d416`](https://github.com/cypht-org/cypht/commit/505d416b6feb8ac2d0301ba01ac0cfd641cf55f9) Merge pull request #1213 from christer77/debug-unblock-test - [`5253f32`](https://github.com/cypht-org/cypht/commit/5253f3226d51a4cb9e856efe7b5c8baa21b57f54) Merge pull request #1158 from Shadow243/fix-default-timezone - [`d5608ad`](https://github.com/cypht-org/cypht/commit/d5608ad4a1ec625d269ea245818aa7eb1435fc91) fix imap::read_literal to work on 7-bit bytes rather than multibyte strings, fix imap unit tests and add tests for recent bugs: accidentally reading next lines of literals and not splitting addresses correctly - [`78486a6`](https://github.com/cypht-org/cypht/commit/78486a6ce503eeed3237cd45d7f9eb802a4e180a) add note about imap read_literal method - [`a5f8215`](https://github.com/cypht-org/cypht/commit/a5f821511bc8362d6dd69617aa749a0f7d368c62) Merge pull request #1230 from cypht-org/bugfix/multibyte-imap ### 📊 Changes **41 files changed** (+690 additions, -560 deletions) <details> <summary>View changed files</summary> 📝 `.env.example` (+10 -1) 📝 `config/app.php` (+107 -37) 📝 `index.php` (+4 -3) 📝 `lib/config.php` (+2 -2) 📝 `lib/environment.php` (+53 -4) 📝 `lib/modules_exec.php` (+2 -2) 📝 `modules/advanced_search/modules.php` (+1 -1) 📝 `modules/contacts/modules.php` (+1 -1) 📝 `modules/core/functions.php` (+1 -0) 📝 `modules/core/handler_modules.php` (+43 -30) 📝 `modules/core/message_functions.php` (+6 -5) 📝 `modules/core/message_list_functions.php` (+19 -19) 📝 `modules/core/output_modules.php` (+62 -56) 📝 `modules/core/site.js` (+18 -71) 📝 `modules/feeds/modules.php` (+21 -21) 📝 `modules/github/modules.php` (+15 -15) 📝 `modules/imap/functions.php` (+2 -2) 📝 `modules/imap/handler_modules.php` (+21 -21) 📝 `modules/imap/hm-imap-base.php` (+20 -14) 📝 `modules/imap/output_modules.php` (+21 -18) _...and 21 more files_ </details> ### 📄 Description merging master to 2.x --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-25 21:38:01 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/cypht#1358
No description provided.