diff options
author | Philip Hazel <ph10@hermes.cam.ac.uk> | 2006-06-27 15:07:18 +0000 |
---|---|---|
committer | Philip Hazel <ph10@hermes.cam.ac.uk> | 2006-06-27 15:07:18 +0000 |
commit | b8dc3e4a6769d5b233b1117f16b334a583716b10 (patch) | |
tree | d6b297299244950e192ef45814adca0bf32c283b /test/confs/0534 | |
parent | 4608d6834bf682e578a5d907a2f6b8fb674c07a0 (diff) |
Fix Bugzilla #101: macro definition between ACLs doesn't work.
Diffstat (limited to 'test/confs/0534')
-rw-r--r-- | test/confs/0534 | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/test/confs/0534 b/test/confs/0534 new file mode 100644 index 000000000..b148987a5 --- /dev/null +++ b/test/confs/0534 @@ -0,0 +1,30 @@ +# Exim test configuration 0534 + +exim_path = EXIM_PATH +host_lookup_order = bydns +primary_hostname = myhost.test.ex +rfc1413_query_timeout = 0s +spool_directory = DIR/spool +log_file_path = DIR/spool/log/%slog +gecos_pattern = "" +gecos_name = CALLER_NAME + +# ----- Main settings ----- + +acl_smtp_connect = two + + +# ----- ACLs ----- + +begin ACL + +one: + accept hosts = 1.2.3.4 + +MACRO_DEFINITION=5.6.7.8 + +two: + accept hosts = MACRO_DEFINITION + + +# End |