From 85ffcba677df89c58014ec6258a1984a8f63f95a Mon Sep 17 00:00:00 2001 From: Andreas Metzler Date: Tue, 29 Mar 2016 18:57:55 +0200 Subject: [PATCH] Typo fix. messsage -> message receved -> received Found/reported by Vincent Lefevre in . --- doc/doc-docbook/spec.xfpt | 2 +- doc/doc-src/FAQ.src | 2 +- doc/doc-txt/NewStuff | 2 +- src/src/configure.default | 4 ++-- src/src/globals.h | 2 +- src/src/receive.c | 8 ++++---- src/src/spool_out.c | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/doc/doc-docbook/spec.xfpt b/doc/doc-docbook/spec.xfpt index 7dc05c64a..6185536b9 100644 --- a/doc/doc-docbook/spec.xfpt +++ b/doc/doc-docbook/spec.xfpt @@ -14170,7 +14170,7 @@ If the message being returned has lines longer than this value it is treated as if the &%bounce_return_size_limit%& (below) restriction was exceeded. The option also applies to bounces returned when an error is detected -during reception of a messsage. +during reception of a message. In this case lines from the original are truncated. The option does not apply to messages generated by an &(autoreply)& transport. diff --git a/doc/doc-src/FAQ.src b/doc/doc-src/FAQ.src index 03360be6a..9280e0314 100644 --- a/doc/doc-src/FAQ.src +++ b/doc/doc-src/FAQ.src @@ -2316,7 +2316,7 @@ A0310: If a DNS lookup returns no MXs, Exim looks for an address record, in Q0311: When a DNS lookup for MX records fails to complete, why doesn't Exim - send the messsage to the host defined by the A record? + send the message to the host defined by the A record? A0311: The RFCs are quite clear on this. Only if it is known that there are no MX records is an MTA allowed to make use of the A record. When an MX diff --git a/doc/doc-txt/NewStuff b/doc/doc-txt/NewStuff index 80c92a536..4c42c75a4 100644 --- a/doc/doc-txt/NewStuff +++ b/doc/doc-txt/NewStuff @@ -269,7 +269,7 @@ Version 4.82 "aaaa" and "a" lookups is done and the full set of results returned. 14. New expansion variable $headers_added with content from ACL add_header - modifier (but not yet added to messsage). + modifier (but not yet added to message). 15. New 8bitmime status logging option for received messages. Log field "M8S". diff --git a/src/src/configure.default b/src/src/configure.default index e5feb7751..3c8cf97ed 100644 --- a/src/src/configure.default +++ b/src/src/configure.default @@ -707,8 +707,8 @@ begin transports # This transport is used for delivering messages over SMTP connections. -# Refuse to send any messsage with over-long lines, which could have -# been receved other than via SMTP. The use of message_size_limit to +# Refuse to send any message with over-long lines, which could have +# been received other than via SMTP. The use of message_size_limit to # enforce this is a red herring. remote_smtp: diff --git a/src/src/globals.h b/src/src/globals.h index b7f9c3489..b83f9fe8a 100644 --- a/src/src/globals.h +++ b/src/src/globals.h @@ -193,7 +193,7 @@ extern uschar *acl_smtp_starttls; /* ACL run for STARTTLS */ extern uschar *acl_smtp_vrfy; /* ACL run for VRFY */ extern BOOL acl_temp_details; /* TRUE to give details for 4xx error */ extern tree_node *acl_var_c; /* ACL connection variables */ -extern tree_node *acl_var_m; /* ACL messsage variables */ +extern tree_node *acl_var_m; /* ACL message variables */ extern uschar *acl_verify_message; /* User message for verify failure */ extern string_item *acl_warn_logged; /* Logged lines */ extern uschar *acl_wherecodes[]; /* Response codes for ACL fails */ diff --git a/src/src/receive.c b/src/src/receive.c index 6b69bcb2a..f4b3d7824 100644 --- a/src/src/receive.c +++ b/src/src/receive.c @@ -1292,7 +1292,7 @@ else if (rc != OK) if ( smtp_input && smtp_handle_acl_fail(ACL_WHERE_MIME, rc, user_msg, log_msg) != 0) { - *smtp_yield_ptr = FALSE; /* No more messsages after dropped connection */ + *smtp_yield_ptr = FALSE; /* No more messages after dropped connection */ *smtp_reply_ptr = US""; /* Indicate reply already sent */ } message_id[0] = 0; /* Indicate no message accepted */ @@ -3275,7 +3275,7 @@ else { Uunlink(spool_name); if (smtp_handle_acl_fail(ACL_WHERE_DKIM, rc, user_msg, log_msg) != 0) - smtp_yield = FALSE; /* No more messsages after dropped connection */ + smtp_yield = FALSE; /* No more messages after dropped connection */ smtp_reply = US""; /* Indicate reply already sent */ message_id[0] = 0; /* Indicate no message accepted */ goto TIDYUP; /* Skip to end of function */ @@ -3393,7 +3393,7 @@ else dcc_ok = 0; #endif if (smtp_handle_acl_fail(ACL_WHERE_DATA, rc, user_msg, log_msg) != 0) - smtp_yield = FALSE; /* No more messsages after dropped connection */ + smtp_yield = FALSE; /* No more messages after dropped connection */ smtp_reply = US""; /* Indicate reply already sent */ message_id[0] = 0; /* Indicate no message accepted */ goto TIDYUP; /* Skip to end of function */ @@ -3987,7 +3987,7 @@ for this message. */ */ if(cutthrough.fd >= 0) { - uschar * msg= cutthrough_finaldot(); /* Ask the target system to accept the messsage */ + uschar * msg= cutthrough_finaldot(); /* Ask the target system to accept the message */ /* Logging was done in finaldot() */ switch(msg[0]) { diff --git a/src/src/spool_out.c b/src/src/spool_out.c index 638190f84..ad12d1a94 100644 --- a/src/src/spool_out.c +++ b/src/src/spool_out.c @@ -498,7 +498,7 @@ then removing the old links. When moving messages onto the main spool, the -H file should be set up last, because that's the one that tells Exim there is a message to be delivered, so we create its new link last and remove its old link first. Programs that look at the alternate directories should follow the same -rule of waiting for a -H file before doing anything. When moving messsages off +rule of waiting for a -H file before doing anything. When moving messages off the mail spool, the -D file should be open and locked at the time, thus keeping Exim's hands off. */ -- 2.30.2