Package: dovecot / 1:2.3.21.1+dfsg1-1~bpo12+1
Metadata
Package | Version | Patches format |
---|---|---|
dovecot | 1:2.3.21.1+dfsg1-1~bpo12+1 | 3.0 (quilt) |
Patch series
view the series filePatch | File delta | Description |
---|---|---|
split protocols.patch | (download) |
doc/example-config/dovecot.conf |
4 2 + 2 - 0 ! |
split-protocols Updated: Mon, 25 Nov 2013 20:11:59 -0500 |
fix mail_plugin_dir default.patch | (download) |
doc/example-config/conf.d/10-mail.conf |
2 1 + 1 - 0 ! |
fix mail_plugin_dir default Bug: #624294 |
ssl cert location.patch | (download) |
doc/example-config/conf.d/10-ssl.conf |
7 4 + 3 - 0 ! |
ssl cert location Bug: #608719 |
tcpwrapper.patch | (download) |
doc/example-config/conf.d/10-tcpwrapper.conf |
14 14 + 0 - 0 ! |
add tcp wrapper support Bug: #685850 |
default mail_location.patch | (download) |
doc/example-config/conf.d/10-mail.conf |
4 2 + 2 - 0 ! |
default location for user mailboxes Bug: #623440 |
mboxlocking.patch | (download) |
doc/example-config/conf.d/10-mail.conf |
8 7 + 1 - 0 ! |
policy 22.6 compliant mbox write locking For NFS safety, prefer fcntl to dotlocks. Dovecots default is the other way around. Bug: #720502 |
dovecot_name.patch | (download) |
configure.ac |
7 6 + 1 - 0 ! |
update dovecot name to include distribution in login greeting message This patch was found at: https://blueprints.launchpad.net/ubuntu/+spec/servercloud-s-server-app-banner-updates and originally provided by Ubuntu for their 2.1.7 package. The original author is Yolanda Robla <yolanda.robla@canonical.com>. I updated it for Debian's 2.2.5 package. |
ssl dh params location.patch | (download) |
doc/example-config/conf.d/10-ssl.conf |
2 1 + 1 - 0 ! |
set dh params location |
skip rfc subdir.patch | (download) |
pigeonhole/configure.ac |
1 0 + 1 - 0 ! |
don't try to build doc/rfc subdir components |
Correct misspellings.patch | (download) |
ChangeLog |
6 3 + 3 - 0 ! |
correct misspellings Found by Lintian |
test backtrace.patch | (download) |
src/lib/test-backtrace.c |
12 7 + 5 - 0 ! |
updates the symbol to check for in the backtrace unit tests Updates the symbol to check for in the backtrace unit tests to something that appears in all the traces on the platforms we support. Also dump the actual backtrace for debugging buildd failures. |
doveadm director.1 drop acute accent.patch | (download) |
doc/man/doveadm-director.1.in |
6 3 + 3 - 0 ! |
doveadm-director.1: drop acute accent Found by Lintian: This manual page uses the \' groff sequence. Usually, the intent to generate an apostrophe, but that sequence actually renders as a an acute accent. For an apostrophe or a single closing quote, use plain '. For single opening quote, i.e. a straight downward line ' like the one used in shell commands, use \(aq. |
Fix 32bit sign comparisons.patch | (download) |
pigeonhole/src/lib-sieve/sieve-binary.c |
2 1 + 1 - 0 ! |
fix 32bit sign comparisons sieve-binary.c: In function 'sieve_binary_get_resource_usage': |
Improve cross compile support.patch | (download) |
m4/want_mysql.m4 |
54 26 + 28 - 0 ! |
improve cross-compile support The check for the signedness of size_t really doesn't have to be run as that is a compile time property. Beyond that, dovecot uses mysql_config. I've looked into that and mysql_config is unfixably broken during cross builds. It will not be fixed. Instead, please use pkg-config. My patch implements that with a fallback to mysql_config to avoid breaking other users. Last but not least, src/lib-lua/Makefile.am adds $(LUA_LIBS) to libdovecot_lua_la_DEPENDENCIES. As it happens, LUA_LIBS contains a -L flag and when that flag shows up in a dependency, make gives up. I have no clue why one would add LUA_LIBS to DEPENDENCIES as it already is being correctly added to LIBADD. My patch suggests to quite simply drop that. |
Silence LTO related compiler warning.patch | (download) |
src/lib-master/master-service-settings-cache.c |
2 1 + 1 - 0 ! |
silence lto related compiler warning master-service-settings-cache.c: In function 'master_service_settings_cache_init_filter': master-service-settings-cache.c:94:3: warning: 'error' may be used uninitialized in this function [-Wmaybe-uninitialized] 94 | i_error("master-service: cannot get filters: %s", error); | ^ master-service-settings-cache.c:89:14: note: 'error' was declared here 89 | const char *error; | ^ |
md4 md5 disable optimization causing unaligned access.patch | (download) |
src/lib/md4.c |
2 1 + 1 - 0 ! |
md4/md5: disable optimization causing unaligned access This restores unit tests with GCC 11 and LTO. md5.c:92:23: warning: cast from 'const unsigned char *' to 'const uint32_t *' (aka 'const unsigned int *') increases required alignment from 1 to 4 [-Wcast-align] STEP(F, a, b, c, d, SET(0), 0xd76aa478, 7) ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~ md5.c:51:4: note: expanded from macro 'SET' (*(const uint32_t *)&ptr[(n) * 4]) ^ md5.c:37:29: note: expanded from macro 'STEP' (a) += f((b), (c), (d)) + (x) + (t); \ ^ md5.c:92:3: runtime error: load of misaligned address 0x61900000008b for type 'const uint32_t' (aka 'const unsigned int'), which requires 4 byte alignment 0x61900000008b: note: pointer points here 41 41 41 41 41 41 41 41 41 41 41 41 41 41 41 41 41 41 41 41 41 41 41 41 41 41 41 41 41 41 41 41 ^ |
Support openssl 3.0.patch | (download) |
src/lib-dcrypt/dcrypt-openssl.c |
20 20 + 0 - 0 ! |
support openssl 3.0 |
Debug flaky unit test.patch | (download) |
src/lib-smtp/test-smtp-server-errors.c |
12 9 + 3 - 0 ! |
debug flaky unit test See #1007744 |
Avoid usage of PATH_MAX not available on hurd.patch | (download) |
src/lib/test-net.c |
2 1 + 1 - 0 ! |
avoid usage of path_max not available on hurd |
auth Fix handling passdbs with identical driver args but .patch | (download) |
src/auth/auth-request.c |
6 3 + 3 - 0 ! |
auth: fix handling passdbs with identical driver/args but different mechanisms/username_filter The passdb was wrongly deduplicated in this situation, causing wrong mechanisms or username_filter setting to be used. This would be a rather unlikely configuration though. Fixed by moving mechanisms and username_filter from struct passdb_module to struct auth_passdb, which is where they should have been in the first place. |
auth Add a comment about updating userdb_find.patch | (download) |
src/auth/userdb.c |
3 2 + 1 - 0 ! |
auth: add a comment about updating userdb_find() |
Fix uninitialized read in doveadm oldstats.patch | (download) |
src/doveadm/doveadm-oldstats.c |
2 1 + 1 - 0 ! |
fix uninitialized read in doveadm-oldstats The third argument to doveadm_cmd_param_bool() is only set on a return value of TRUE. Since disk_input_field and disk_output_field should be set if the value of show-disk-io is specified and specified to true, fix the condition. doveadm-oldstats.c: In function 'cmd_stats_top': doveadm-oldstats.c:551:63: warning: 'b' may be used uninitialized [-Wmaybe-uninitialized] 551 | if (!doveadm_cmd_param_bool(cctx, "show-disk-io", &b) && b) { | ^ doveadm-oldstats.c:545:14: note: 'b' was declared here 545 | bool b; | ^ |
Use _FORTIFY_SOURCE level 3.patch | (download) |
m4/dovecot.m4 |
6 3 + 3 - 0 ! |
use _fortify_source level 3 |
Cleanup temporary build files.patch | (download) |
src/plugins/quota/Makefile.am |
2 1 + 1 - 0 ! |
cleanup temporary build files |
Silence prototype conflicts.patch | (download) |
src/auth/db-lua.h |
7 4 + 3 - 0 ! |
silence prototype conflicts |