diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2022-02-04 21:53:28 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2022-02-05 19:34:43 +0000 |
commit | 19fdbfb4a2b6ca4a6a96ef52be848f0a23e2414f (patch) | |
tree | 0e11463bafd367fc15eb5451d9ba953821431650 /test/scripts/0000-Basic | |
parent | acfde2172e82f6b776f16d78f789c6968b69b9f0 (diff) |
Debug pretrigger capture facility
Diffstat (limited to 'test/scripts/0000-Basic')
-rw-r--r-- | test/scripts/0000-Basic/0628 (renamed from test/scripts/0000-Basic/0574) | 0 | ||||
-rw-r--r-- | test/scripts/0000-Basic/0629 | 26 | ||||
-rw-r--r-- | test/scripts/0000-Basic/0630 | 30 | ||||
-rw-r--r-- | test/scripts/0000-Basic/0631 | 30 |
4 files changed, 86 insertions, 0 deletions
diff --git a/test/scripts/0000-Basic/0574 b/test/scripts/0000-Basic/0628 index d227b5acc..d227b5acc 100644 --- a/test/scripts/0000-Basic/0574 +++ b/test/scripts/0000-Basic/0628 diff --git a/test/scripts/0000-Basic/0629 b/test/scripts/0000-Basic/0629 new file mode 100644 index 000000000..758b7b1a6 --- /dev/null +++ b/test/scripts/0000-Basic/0629 @@ -0,0 +1,26 @@ +# debug logging ACL modifier, pretrigger +# +exim -DSERVER=server -bd -oX PORT_D +**** +# +client 127.0.0.1 PORT_D +??? 220 +EHLO test.ex +??? 250- +??? 250- +??? 250- +??? 250- +??? 250 +MAIL FROM:<test_2@paniclogrcpt> +??? 250 +RCPT TO:<dest2@test.ex> +??? 550 +QUIT +??? 221 +**** +# +killdaemon +# +cp DIR/spool/log/serverdebuglog_rcpt /dev/stderr +# +no_msglog_check diff --git a/test/scripts/0000-Basic/0630 b/test/scripts/0000-Basic/0630 new file mode 100644 index 000000000..55a5290ba --- /dev/null +++ b/test/scripts/0000-Basic/0630 @@ -0,0 +1,30 @@ +# debug logging ACL modifier, trigger in router +# +exim -DSERVER=server -bd -oX PORT_D +**** +# +client 127.0.0.1 PORT_D +??? 220 +EHLO test.ex +??? 250- +??? 250- +??? 250- +??? 250- +??? 250 +MAIL FROM:<test_3@paniclogrouter> +??? 250 +RCPT TO:<dest3@test.ex> +??? 250 +DATA +??? 354 +. +??? 250 +QUIT +??? 221 +**** +# +killdaemon +# +cp DIR/spool/log/serverdebuglog_router /dev/stderr +# +no_msglog_check diff --git a/test/scripts/0000-Basic/0631 b/test/scripts/0000-Basic/0631 new file mode 100644 index 000000000..75cf31f35 --- /dev/null +++ b/test/scripts/0000-Basic/0631 @@ -0,0 +1,30 @@ +# debug logging ACL modifier, pretrigger, trigger by ACL command +# +exim -DSERVER=server -bd -oX PORT_D +**** +# +client 127.0.0.1 PORT_D +??? 220 +EHLO test.ex +??? 250- +??? 250- +??? 250- +??? 250- +??? 250 +MAIL FROM:<test_3@paniclogrouter> +??? 250 +RCPT TO:<dest3@test.ex> +??? 250 +DATA +??? 354 +. +??? 250 +QUIT +??? 221 +**** +# +killdaemon +# +cp DIR/spool/log/serverdebuglog_acl /dev/stderr +# +no_msglog_check |