Skip to content

Commit 95f2a09

Browse files
committed
Gromox 2.7
1 parent ea6ee90 commit 95f2a09

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AC_INIT([gromox], [2.6])
1+
AC_INIT([gromox], [2.7])
22
AC_CONFIG_AUX_DIR([build-aux])
33
AC_CONFIG_MACRO_DIR([build-aux])
44
AC_PREFIX_DEFAULT([/usr])

doc/changelog.rst

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
1-
Development 2.6.32
2-
==================
1+
Gromox 2.7 (2023-03-24)
2+
=======================
33

44
Fixes:
55

66
* mbop: support folder strings for delmsg -f as was documented
77
* oxcmail: do not fail exporting DSNs with unresolvable addresses
88
* oxcical: do not fail exporting calendar objects with unresolvable addresses
9+
* oxvcard: repair NULL deref when exporting PR_CHILDRENS_NAMES
910
* exmdb_provider: support mbox_contention_*=0 as was documented
1011
* gromox-snapshot: safer parsing of snapshot.cfg
12+
* emsmdb: resolve infinite loop when counting property value size of
13+
invalid UTF-8 strings
1114

12-
Changes:
15+
Behavioral changes:
1316

1417
* exmdb_provider: default to mbox_contention_reject=0
1518
* exch: support absent values with RES_PROPERTY, RES_BITMASK and
1619
RES_CONTENT comparisons
20+
* zcore: make mapi_message_imtoinet operate on message instances, not messages
1721

1822

1923
Gromox 2.6 (2023-03-10)

lib/dbop_sqlite.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,8 @@ int dbop_sqlite_upgrade(sqlite3 *db, const char *filedesc,
684684
return 0;
685685
auto errors = dbop_sqlite_integcheck(db, LV_ERR);
686686
if (errors != 0) {
687-
mlog(LV_ERR, "Upgrade of %s not started because of %zd integrity problems",
687+
mlog(LV_ERR, "Upgrade of %s not started because of %zd integrity problems"
688+
" <https://docs.grommunio.com/kb/sqlite.html>",
688689
filedesc, errors);
689690
return -EIO;
690691
}

0 commit comments

Comments
 (0)