1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
From: =?utf-8?q?Christian_G=C3=B6ttsche?= <cgzones@googlemail.com>
Date: Sun, 31 May 2020 00:55:07 +0200
Subject: Correct misspellings
Found by Lintian
---
ChangeLog | 6 +++---
NEWS | 2 +-
pigeonhole/src/lib-sieve/sieve-address.c | 2 +-
src/director/director-connection.c | 2 +-
src/lib-index/mail-index-transaction-finish.c | 2 +-
src/lib-index/mail-index.h | 2 +-
src/lib-index/mail-transaction-log-file.c | 2 +-
src/lib-storage/index/index-sync-pvt.c | 2 +-
8 files changed, 10 insertions(+), 10 deletions(-)
Index: dovecot/ChangeLog
===================================================================
--- dovecot.orig/ChangeLog
+++ dovecot/ChangeLog
@@ -70625,7 +70625,7 @@ M src/lib-storage/index/index-mail.c
lib-index: Add mail_cache_close_mail() to smartly drop cached data with
INDEX=MEMORY
- Instead of reseting the entire transaction buffer when 256 kB is reached,
+ Instead of resetting the entire transaction buffer when 256 kB is reached,
just drop mails have have been marked closed with mail_cache_close_mail().
If that's not enough, continue deleting forcibly until the buffer is below
256 kB.
@@ -90525,7 +90525,7 @@ M src/lib-storage/index/dbox-single/sdbo
2016-09-21 20:50:24 +0300 Timo Sirainen <timo.sirainen@dovecot.fi> (2e5e2047af)
- login-proxy: Fixed "Host is down" never reseting itself.
+ login-proxy: Fixed "Host is down" never resetting itself.
Broken by c8eb8314a, which moved adding num_waiting_connections earlier.
After that it was never 0 at the check time.
@@ -107467,7 +107467,7 @@ M src/login-common/ssl-proxy-openssl.c
2015-12-07 11:29:29 +0200 Timo Sirainen <tss@iki.fi> (975c2cdc1b)
- doveadm: Fixed reseting getopt() with glibc when processing multiple
+ doveadm: Fixed resetting getopt() with glibc when processing multiple
commands in a single process. This means commands run with doveadm batch or
multiple commands in a single doveadm-server connection.
Index: dovecot/NEWS
===================================================================
--- dovecot.orig/NEWS
+++ dovecot/NEWS
@@ -2010,7 +2010,7 @@ v2.2.26 2016-10-27 Timo Sirainen <tss@i
- zlib, IMAP BINARY: Fixed internal caching when accessing multiple
newly created mails. They all had UID=0 and the next mail could have
wrongly used the previously cached mail.
- - doveadm stats reset wasn't reseting all the stats.
+ - doveadm stats reset wasn't resetting all the stats.
- auth_stats=yes: Don't update num_logins, since it doubles them when
using with mail stats.
- quota count: Fixed deadlocks when updating vsize header.
Index: dovecot/pigeonhole/src/lib-sieve/sieve-address.c
===================================================================
--- dovecot.orig/pigeonhole/src/lib-sieve/sieve-address.c
+++ dovecot/pigeonhole/src/lib-sieve/sieve-address.c
@@ -449,7 +449,7 @@ parse_mailbox_address(struct sieve_messa
if (ctx->parser.data != ctx->parser.end) {
if (*ctx->parser.data == ',') {
sieve_address_error(
- ctx, "not a single addres (found ',')");
+ ctx, "not a single address (found ',')");
} else {
sieve_address_error(
ctx, "address ends in invalid characters");
Index: dovecot/src/director/director-connection.c
===================================================================
--- dovecot.orig/src/director/director-connection.c
+++ dovecot/src/director/director-connection.c
@@ -896,7 +896,7 @@ static bool director_cmd_director(struct
/* already have this. just reset its last_network_failure
timestamp, since it might be up now, but only if this
- isn't part of the handshake. (if it was, reseting the
+ isn't part of the handshake. (if it was, resetting the
timestamp could cause us to rapidly keep trying to connect
to it) */
if (conn->handshake_received)
Index: dovecot/src/lib-index/mail-index-transaction-finish.c
===================================================================
--- dovecot.orig/src/lib-index/mail-index-transaction-finish.c
+++ dovecot/src/lib-index/mail-index-transaction-finish.c
@@ -53,7 +53,7 @@ ext_reset_update_atomic(struct mail_inde
array_idx_set(&t->ext_reset_ids, ext_id, &reset_id);
- /* reseting existing data is optional */
+ /* resetting existing data is optional */
if (array_is_created(&t->ext_resets)) {
reset = array_idx_modifiable(&t->ext_resets, ext_id);
if (reset->new_reset_id == (uint32_t)-1)
Index: dovecot/src/lib-index/mail-index.h
===================================================================
--- dovecot.orig/src/lib-index/mail-index.h
+++ dovecot/src/lib-index/mail-index.h
@@ -384,7 +384,7 @@ void mail_index_set_lock_method(struct m
use the default. */
void mail_index_set_optimization_settings(struct mail_index *index,
const struct mail_index_optimization_settings *set);
-/* When creating a new index file or reseting an existing one, add the given
+/* When creating a new index file or resetting an existing one, add the given
extension header data immediately to it. */
void mail_index_set_ext_init_data(struct mail_index *index, uint32_t ext_id,
const void *data, size_t size);
Index: dovecot/src/lib-index/mail-transaction-log-file.c
===================================================================
--- dovecot.orig/src/lib-index/mail-transaction-log-file.c
+++ dovecot/src/lib-index/mail-transaction-log-file.c
@@ -760,7 +760,7 @@ mail_transaction_log_file_create2(struct
return -1;
if (reset) {
- /* don't reset modseqs. if we're reseting due to rebuilding
+ /* don't reset modseqs. if we're resetting due to rebuilding
indexes we'll probably want to keep uidvalidity and in such
cases we really don't want to shrink modseqs. */
file->hdr.prev_file_seq = 0;
Index: dovecot/src/lib-storage/index/index-sync-pvt.c
===================================================================
--- dovecot.orig/src/lib-storage/index/index-sync-pvt.c
+++ dovecot/src/lib-storage/index/index-sync-pvt.c
@@ -185,7 +185,7 @@ index_mailbox_sync_pvt_index(struct inde
} else {
/* mailbox created/recreated */
reset = TRUE;
- i_info("Mailbox %s UIDVALIDITY changed (%u -> %u), reseting private index",
+ i_info("Mailbox %s UIDVALIDITY changed (%u -> %u), resetting private index",
ctx->box->vname, hdr_pvt->uid_validity,
hdr_shared->uid_validity);
}
|