dovecot-2.2-pigeonhole: Fixed consistent spelling mistake.

pigeonhole at rename-it.nl pigeonhole at rename-it.nl
Wed Dec 25 22:57:44 EET 2013


details:   http://hg.rename-it.nl/dovecot-2.2-pigeonhole/rev/da0fb6e98b2f
changeset: 1831:da0fb6e98b2f
user:      Stephan Bosch <stephan at rename-it.nl>
date:      Wed Dec 25 21:57:38 2013 +0100
description:
Fixed consistent spelling mistake.

diffstat:

 NEWS                                                |  20 ++++++++++----------
 src/lib-sieve/mcht-matches.c                        |   2 +-
 src/lib-sieve/plugins/editheader/cmd-deleteheader.c |  12 ++++++------
 src/lib-sieve/sieve-validator.c                     |   4 ++--
 src/lib-sieve/util/edit-mail.c                      |   2 +-
 tests/compile/redirect.sieve                        |   2 +-
 6 files changed, 21 insertions(+), 21 deletions(-)

diffs (187 lines):

diff -r 570b58093003 -r da0fb6e98b2f NEWS
--- a/NEWS	Wed Dec 25 21:48:15 2013 +0100
+++ b/NEWS	Wed Dec 25 21:57:38 2013 +0100
@@ -91,14 +91,14 @@
 	  checking. This extension is in the process of being standardized
 	  (https://tools.ietf.org/html/draft-bosch-sieve-duplicate-01).
 	+ Sieve date extension: generate warning when invalid date part is specified.
-	- Sieve editheader extension: fixed crash occuring when addheader :last was
+	- Sieve editheader extension: fixed crash occurring when addheader :last was
 	  used.
 	- Sieve include extension: fixed missing error cleanup that caused a resource
 	  leak.
 	- Sieve vacation extension: fixed determination of From: address for when
 	  sieve_vacation_dont_check_recipient is active.
 	- Sieve tools: the -D option wasn't enabled and documented for all tools.
-	- Siev dict script storage: fixed potential segfault occuring when dict
+	- Siev dict script storage: fixed potential segfault occurring when dict
 	  initialization fails.
 	- ManageSieve: fixed bug in skipping of CRLF at end of AUTHENTICATE command.
 	- ManageSieve: fixed handling of unkown commands pre-login.
@@ -296,7 +296,7 @@
 	  notice that the default limits are too low and you need to increase them.
 	  This problem will show up in logs as "out of memory" errors. See
 	  default_vsz_limit and service { vsz_limit } settings.
-	- Imap4flags: fixed segfault bug occuring in multiscript context.
+	- Imap4flags: fixed segfault bug occurring in multiscript context.
 	- Added version checking to the ManageSieve settings plugin. This plugin was
 	  forgotten when the LDA plugin was updated with this change in the previous
 	  release.
@@ -508,7 +508,7 @@
 	+ Body extension: implemented proper handling of the :raw transform and added
 	  various new tests to the test suite. However, :content "multipart" and
 	  :content "message/rfc822" are still not working.
-	+ Fixed race condition occuring when multiple instances are saving the same
+	+ Fixed race condition occurring when multiple instances are saving the same
 	  binary (patch by Timo Sirainen).
 	+ Test suite: added support for testing multiscript execution.
 	- Made compiler more lenient towars missing CRLF at the end of the script in a
@@ -519,7 +519,7 @@
 	- Fixed bugs in multiscript support; subsequent keep actions were not always
 	  merged correctly and implicit side effects were not always handled
 	  correctly.
-	- Fixed a segfault bug in the sieve-test tool occuring when compile fails.
+	- Fixed a segfault bug in the sieve-test tool occurring when compile fails.
 	- Fixed segfault bug in action procesing. It was triggered while merging side
 	  effects in duplicate actions.
 	- Fixed bug in the Sieve plugin that caused it to try to stat() a NULL path,
@@ -610,7 +610,7 @@
 	- Fixed a potential segfault in the argument validation. It didn't surface
 	  because no command could have a :tag followed by an associated parameter as
 	  last argument.
-	- Fixed segfault bug occuring in envelope test when performed on null (<>)
+	- Fixed segfault bug occurring in envelope test when performed on null (<>)
 	  envelope path. The fix involves a rather large restructuring of the code to
 	  make sure envelope addresses are properly handled everywhere (bug reported
 	  by Nikita Koshikov)
@@ -720,11 +720,11 @@
 	  compatibility with CMUSieve. This also implements the mark/unmark commands.
 	- Fixed bugs in the regex extension: 1) if an optional match value did not in
 	  fact match, subsequent match values would get unexpected indexes. 2) fixed
-	  segfault bug occuring when regex is freed.
+	  segfault bug occurring when regex is freed.
 	- Fixed bug in the use of the :from agrument for the vacation command. If this
 	  address included a phrase part, the response would not be a valid RFC822
 	  message.
-	- Plugged a theoretical security hole occuring when a directory is opened as a
+	- Plugged a theoretical security hole occurring when a directory is opened as a
 	  Sieve binary.
 	- Cleaned up and fixed various log messages.
 	- Fixed bug in the outgoing address verification. Addresses ending in ',' were
@@ -789,7 +789,7 @@
 	+ Added MAXREDIRECTS capability after login.
 	+ Implemented new script name rules specified in most recent ManageSieve
 	  draft.
-	- Fixed assertion failure occuring with challenge-response SASL mechanisms.
+	- Fixed assertion failure occurring with challenge-response SASL mechanisms.
 	- Made configure complain about trying to compile against installed Dovecot
 	  headers alone.
 	- Fixed compile warning for compilation against CMUSieve.
@@ -912,7 +912,7 @@
 	  managesieve.
 	+ Added short proxy configuration explanation to the README file
 	+ Added 'Known Issues' section to the README file
-	- Fixed assert bug in sieve-storage occuring when save is canceled.
+	- Fixed assert bug in sieve-storage occurring when save is canceled.
 
 v0.10.0
 	* Upgraded to Dovecot 1.1:
diff -r 570b58093003 -r da0fb6e98b2f src/lib-sieve/mcht-matches.c
--- a/src/lib-sieve/mcht-matches.c	Wed Dec 25 21:48:15 2013 +0100
+++ b/src/lib-sieve/mcht-matches.c	Wed Dec 25 21:57:38 2013 +0100
@@ -313,7 +313,7 @@
 					!cmp->def->char_match(cmp, &vp, vend, &needle, nend) ) {
 
 					/* Match failed: now we have a problem. We need to backtrack to the previous
-					 * '*' wildcard occurence and start scanning for the next possible match.
+					 * '*' wildcard occurrence and start scanning for the next possible match.
 					 */
 
 					debug_printf("  failed fixed match\n");
diff -r 570b58093003 -r da0fb6e98b2f src/lib-sieve/plugins/editheader/cmd-deleteheader.c
--- a/src/lib-sieve/plugins/editheader/cmd-deleteheader.c	Wed Dec 25 21:48:15 2013 +0100
+++ b/src/lib-sieve/plugins/editheader/cmd-deleteheader.c	Wed Dec 25 21:57:38 2013 +0100
@@ -453,11 +453,11 @@
 			sieve_runtime_trace_descend(renv);
 			if ( index_offset != 0 ) {
 				sieve_runtime_trace(renv, 0,
-					"deleting matching occurences of header `%s' at index %u%s",
+					"deleting matching occurrences of header `%s' at index %u%s",
 					str_c(field_name), index_offset, ( index_last ? " from last": ""));
 			} else {
 				sieve_runtime_trace(renv, 0,
-					"deleting matching occurences of header `%s'", str_c(field_name));
+					"deleting matching occurrences of header `%s'", str_c(field_name));
 			}
 		}
 
@@ -511,7 +511,7 @@
 			sieve_runtime_trace(renv, 0, "header `%s' not found", str_c(field_name));
 		} else if ( ret < 0 ) {
 			sieve_runtime_warning(renv, NULL, "deleteheader action: "
-				"failed to delete occurences of header `%s' (this should not happen!)",
+				"failed to delete occurrences of header `%s' (this should not happen!)",
 				str_c(field_name));
 		}
 
@@ -528,15 +528,15 @@
 			}
 		}
 
-		/* Delete all occurences of header */
+		/* Delete all occurrences of header */
 		ret = edit_mail_header_delete(edmail, str_c(field_name), index);
 
 		if ( ret < 0 ) {
 			sieve_runtime_warning(renv, NULL, "deleteheader action: "
-				"failed to delete occurences of header `%s' (this should not happen!)",
+				"failed to delete occurrences of header `%s' (this should not happen!)",
 				str_c(field_name));
 		} else if ( trace ) {
-			sieve_runtime_trace(renv, 0, "deleted %d occurences of header `%s'",
+			sieve_runtime_trace(renv, 0, "deleted %d occurrences of header `%s'",
 				ret, str_c(field_name));
 		}
 
diff -r 570b58093003 -r da0fb6e98b2f src/lib-sieve/sieve-validator.c
--- a/src/lib-sieve/sieve-validator.c	Wed Dec 25 21:48:15 2013 +0100
+++ b/src/lib-sieve/sieve-validator.c	Wed Dec 25 21:57:38 2013 +0100
@@ -904,7 +904,7 @@
 		if ( tag_reg == NULL ) {
 			sieve_argument_validate_error(valdtr, arg,
 				"unknown tagged argument ':%s' for the %s %s "
-				"(reported only once at first occurence)",
+				"(reported only once at first occurrence)",
 				sieve_ast_argument_tag(arg), sieve_command_identifier(cmd),
 				sieve_command_type_name(cmd));
 			sieve_validator_register_unknown_tag
@@ -1202,7 +1202,7 @@
 	}	else {
 		sieve_validator_error(
 			valdtr, cmd_node->source_line,
-			"unknown %s '%s' (only reported once at first occurence)",
+			"unknown %s '%s' (only reported once at first occurrence)",
 			sieve_ast_type_name(ast_type), cmd_node->identifier);
 
 		sieve_validator_register_unknown_command(valdtr, cmd_node->identifier);
diff -r 570b58093003 -r da0fb6e98b2f src/lib-sieve/util/edit-mail.c
--- a/src/lib-sieve/util/edit-mail.c	Wed Dec 25 21:48:15 2013 +0100
+++ b/src/lib-sieve/util/edit-mail.c	Wed Dec 25 21:57:38 2013 +0100
@@ -1190,7 +1190,7 @@
 		return 0;
 	}
 
-	/* Get the first occurence */
+	/* Get the first occurrence */
 	if ( edmail->header_fields_appended == NULL ) {
 		/* There are no appended headers, so first is found directly */
 		field = header_idx->first->field;
diff -r 570b58093003 -r da0fb6e98b2f tests/compile/redirect.sieve
--- a/tests/compile/redirect.sieve	Wed Dec 25 21:48:15 2013 +0100
+++ b/tests/compile/redirect.sieve	Wed Dec 25 21:57:38 2013 +0100
@@ -1,4 +1,4 @@
-# Test various white space occurences
+# Test various white space occurrences
 redirect "stephan at example.org";
 redirect " stephan at example.org";
 redirect "stephan @example.org";


More information about the dovecot-cvs mailing list