Fix web Store integration regressions
Debian Trixie package bundle / packages (push) Successful in 21m5s

This commit is contained in:
Mario Fetka
2026-07-22 04:48:45 +02:00
parent 3d7727b5cd
commit 48ceeebe94
3 changed files with 7 additions and 2 deletions
+1
View File
@@ -986,6 +986,7 @@ StoreObjectIterConversationMails(StoreClient *client, StoreObject *conversation,
// no error checking here.. bad... :)
QueryBuilderStart(&builder);
QueryBuilderSetOutputMode(&builder, MODE_LIST);
QueryBuilderSetQuerySafe(&builder, query);
+4
View File
@@ -161,6 +161,10 @@ def compile_filter(value, rule_id, group_resolver=lambda _name: ()):
def _native_rules():
try:
# The lightweight rules binding uses ConnIO and NMAP directly. Load
# the main native module first so those process-wide libraries are
# initialised exactly once before a request thread opens a connection.
import libbongo.libs # noqa: F401
from libbongo import _rules
except ImportError as error:
raise RuntimeError("the native Bongo rules store is unavailable") from error
+2 -2
View File
@@ -21,8 +21,8 @@
:root { font: 14px/1.45 "Lucida Grande", Verdana, "Bitstream Vera Sans", sans-serif; color: #111; background: #e4eaf4; }
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; overflow-x: hidden; overflow-y: auto; }
body { background: #e7e4ef url('/assets/bg-page.png') repeat-x 0 0; }
html { margin: 0; min-height: 100%; overflow-x: hidden; overflow-y: auto; }
body { margin: 0; min-height: 100%; overflow: visible; background: #e7e4ef url('/assets/bg-page.png') repeat-x 0 0; }
button, input, select { font: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }