diff options
author | Philip Hazel <ph10@hermes.cam.ac.uk> | 2006-07-28 11:39:11 +0000 |
---|---|---|
committer | Philip Hazel <ph10@hermes.cam.ac.uk> | 2006-07-28 11:39:11 +0000 |
commit | e85a7ad5e4b86e82cf7150532bfe8c261bd1cca9 (patch) | |
tree | 07b1d51e13aaa87ccd6cf40ed834d3940695f714 /src | |
parent | 366fc9f0fbb8ea549b36dc2f4afee4e92bf7d81d (diff) |
Add { !eq{$h_list-id:$h_list-post:$h_list-subscribe:}{} } as another
"don't send" delay warning condition by default.
Diffstat (limited to 'src')
-rw-r--r-- | src/src/globals.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/src/globals.c b/src/src/globals.c index e17eba728..84d564ab8 100644 --- a/src/src/globals.c +++ b/src/src/globals.c @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/globals.c,v 1.56 2006/07/13 14:46:05 ph10 Exp $ */ +/* $Cambridge: exim/src/src/globals.c,v 1.57 2006/07/28 11:39:11 ph10 Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -451,6 +451,7 @@ unsigned int debug_selector = 0; int delay_warning[DELAY_WARNING_SIZE] = { DELAY_WARNING_SIZE, 1, 24*60*60 }; uschar *delay_warning_condition= US"${if or {" + "{ !eq{$h_list-id:$h_list-post:$h_list-subscribe:}{} }" "{ match{$h_precedence:}{(?i)bulk|list|junk} }" "{ match{$h_auto-submitted:}{(?i)auto-generated|auto-replied} }" "} {no}{yes}}"; |