Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #371

Merged
merged 27 commits into from
Feb 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
80969e4
Loglevel Debug is sufficient as it gets retried (#337)
jrse Jul 6, 2022
690127d
Bugfix/339 rados config timeout (#340)
jrse Aug 25, 2022
dde2fb3
Feature/342 object search (#343)
jrse Sep 22, 2022
30798cd
Bugfix/342 logging multithreading (#344)
jrse Sep 27, 2022
a58c735
Bugfix/rbox copy context (#347)
jrse Oct 20, 2022
09311f7
Merge branch 'master' into develop
jrse Oct 20, 2022
574fa4a
#364 and code cleanup
jrse Oct 27, 2022
1ef3f70
Merge branch 'master' into develop
jrse Oct 27, 2022
364e18d
Feature/349 ceph object index (#350)
jrse Nov 21, 2022
f0741a6
#349 bugfix return code doveadm rmb (#351)
jrse Nov 22, 2022
eb41db1
Merge branch 'master' into develop
jrse Nov 22, 2022
4efa9f1
#349 validate object (#353)
jrse Nov 26, 2022
8eac746
Merge branch 'master' into develop
jrse Nov 26, 2022
d2366a2
Bugfix/355 fix gzip trailer for empty stream (#357)
jrse Dec 5, 2022
8aa1297
Merge branch 'master' into develop
jrse Dec 5, 2022
3be0cff
#349 fix threshold calc for ceph index file
jrse Dec 5, 2022
0cbb2c0
#355 fix buffersize for write method 1 and 2 (#360)
jrse Dec 5, 2022
c05d89e
Merge branch 'master' into develop
jrse Dec 5, 2022
e6e6685
Bugfix 355 fix buffersize write method (#363)
jrse Dec 16, 2022
582f0a1
delete ceph index if doveadm mailbox delete -u <> INBOX
jrse Jan 26, 2023
32aa297
Fix/ceph index (#367)
jrse Jan 29, 2023
788cc32
Merge branch 'master' into develop
jrse Jan 29, 2023
012aac7
fix ceph-index-file-size calculation
jrse Feb 2, 2023
4ac7984
Merge branch 'master' into develop
jrse Feb 2, 2023
311335e
added unit test for object calculation
jrse Feb 2, 2023
4292fdc
fix not escaped % i_warning
jrse Feb 9, 2023
727046c
Merge branch 'master' into develop
jrse Feb 9, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Change Log
## [0.0.51](https://github.com/ceph-dovecot/dovecot-ceph-plugin/tree/0.0.51) (2023-02-09)
- fix: not escaped % in i_warning.

## [0.0.50](https://github.com/ceph-dovecot/dovecot-ceph-plugin/tree/0.0.50) (2023-02-02)
- fix: cleanup ceph-index size calculation

## [0.0.50](https://github.com/ceph-dovecot/dovecot-ceph-plugin/tree/0.0.50) (2023-02-02)
- fix: cleanup ceph-index size calculation
Expand Down
3 changes: 2 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
AC_PREREQ([2.59])


AC_INIT([dovecot-ceph-plugin], [0.0.50], [https://github.com/ceph-dovecot/dovecot-ceph-plugin/issues/new], ,[https://github.com/ceph-dovecot/dovecot-ceph-plugin])
AC_INIT([dovecot-ceph-plugin], [0.0.51], [https://github.com/ceph-dovecot/dovecot-ceph-plugin/issues/new], ,[https://github.com/ceph-dovecot/dovecot-ceph-plugin])



AC_CONFIG_AUX_DIR([.])
Expand Down
3 changes: 2 additions & 1 deletion rpm/dovecot-ceph-plugin.spec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
Name: dovecot-ceph-plugin
Summary: Dovecot Ceph RADOS plugins

Version: 0.0.50
Version: 0.0.51


Release: 0%{?dist}
URL: https://github.com/ceph-dovecot/dovecot-ceph-plugin
Expand Down
2 changes: 1 addition & 1 deletion src/storage-rbox/rbox-save.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ int rbox_save_finish(struct mail_save_context *_ctx) {
(double)r_storage->s->ceph_index_size(),
(double) r_storage->s->get_max_object_size())
) {
i_warning("ceph_index file(%d) close to exceed max_object size(%d) 80%, recalc index !", r_storage->s->ceph_index_size(), r_storage->s->get_max_object_size() );
i_warning("ceph index file (%lu) close to exceed max object size(%d) 80%%",r_storage->s->ceph_index_size(), r_storage->s->get_max_object_size());
}
}
}
Expand Down