diff options
author | Philip Hazel <ph10@hermes.cam.ac.uk> | 2004-11-05 14:59:12 +0000 |
---|---|---|
committer | Philip Hazel <ph10@hermes.cam.ac.uk> | 2004-11-05 14:59:12 +0000 |
commit | 650edc6fbfceeb90635fbe3019c419387ba9542b (patch) | |
tree | b63fc7152d899b876031c4161bd35ef98de935a1 /src | |
parent | 926e1192c5762fc251a8f8e275f4a21119cea050 (diff) |
A "Completed" log line is now written for messages that are removed from
the spool by the -Mrm option.
Diffstat (limited to 'src')
-rw-r--r-- | src/src/queue.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/src/queue.c b/src/src/queue.c index cfcb0440a..c3e81a09d 100644 --- a/src/src/queue.c +++ b/src/src/queue.c @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/queue.c,v 1.1 2004/10/07 10:39:01 ph10 Exp $ */ +/* $Cambridge: exim/src/src/queue.c,v 1.2 2004/11/05 14:59:12 ph10 Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -1190,7 +1190,11 @@ switch(action) if (deliver_datafile >= 0) printf("has been removed\n"); else printf("has been removed or did not exist\n"); - if (removed) log_write(0, LOG_MAIN, "removed by %s", username); + if (removed) + { + log_write(0, LOG_MAIN, "removed by %s", username); + log_write(0, LOG_MAIN, "Completed"); + } break; |