diff options
author | Tom Kistner <tom@duncanthrax.net> | 2005-03-10 08:56:03 +0000 |
---|---|---|
committer | Tom Kistner <tom@duncanthrax.net> | 2005-03-10 08:56:03 +0000 |
commit | 441b73cf02d8657de2ff8b72cf524e87a408a98e (patch) | |
tree | 5e936e7f804e327dedcead833e18a6cab16a314f | |
parent | ebe2da9781157d14b0c9e91f08e93bd67755f0dd (diff) |
Define ACL_SMTP_MIME unconditionally in macros.h to avoid too much clutter in acl.c
-rw-r--r-- | src/src/macros.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/src/macros.h b/src/src/macros.h index 2795f32ac..d69da22f7 100644 --- a/src/src/macros.h +++ b/src/src/macros.h @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/macros.h,v 1.9 2005/02/17 11:58:26 ph10 Exp $ */ +/* $Cambridge: exim/src/src/macros.h,v 1.10 2005/03/10 08:56:03 tom Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -746,9 +746,11 @@ enum { ACL_WHERE_RCPT, /* Some controls are for RCPT only */ ACL_WHERE_MAIL, /* ) */ ACL_WHERE_PREDATA, /* ) There are several tests for "in message", */ /* ) implemented by <= WHERE_NOTSMTP */ -#ifdef WITH_CONTENT_SCAN /* ) */ + +/* Remove next line in case of removeing WITH_CONTENT_SCAN. + ACL_WHERE_MIME is defined unconditionally to avoid clutter in acl.c */ ACL_WHERE_MIME, /* ) */ -#endif /* ) */ + ACL_WHERE_DATA, /* ) */ ACL_WHERE_NOTSMTP, /* ) */ |