summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndreas Metzler <ametzler@bebt.de>2016-03-29 18:57:55 +0200
committerHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>2016-03-30 17:06:12 +0200
commit85ffcba677df89c58014ec6258a1984a8f63f95a (patch)
treecb470783382e6b9b566a99ed9e96412638b6ca34 /src
parent3ae121c94f0dfaeba5938de26931c49e29677d0a (diff)
Typo fix.
messsage -> message receved -> received Found/reported by Vincent Lefevre in <https://bugs.debian.org/819482>.
Diffstat (limited to 'src')
-rw-r--r--src/src/configure.default4
-rw-r--r--src/src/globals.h2
-rw-r--r--src/src/receive.c8
-rw-r--r--src/src/spool_out.c2
4 files changed, 8 insertions, 8 deletions
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. */