SOCKS: as a client, talk SMTP via a socks5 proxy. Bug 1590
[exim.git] / test / confs / 4020
diff --git a/test/confs/4020 b/test/confs/4020
new file mode 100644 (file)
index 0000000..8a3a91f
--- /dev/null
@@ -0,0 +1,44 @@
+# Exim test configuration 4020
+
+OPT =
+
+exim_path = EXIM_PATH
+host_lookup_order = bydns
+primary_hostname = myhost.test.ex
+spool_directory = DIR/spool
+log_file_path = DIR/spool/log/%slog
+gecos_pattern = ""
+gecos_name = CALLER_NAME
+
+# ----- Main settings -----
+
+domainlist local_domains = test.ex : *.test.ex
+acl_smtp_rcpt = accept
+
+
+# ----- Routers -----
+
+begin routers
+
+my_main_router:
+  driver = manualroute
+  route_list = * 127.0.0.1
+  self = send
+  transport = my_smtp
+  debug_print = router_name <$router_name>
+  no_more
+
+
+# ----- Transports -----
+
+begin transports
+
+my_smtp:
+  driver = smtp
+  interface = HOSTIPV4
+  port = PORT_S
+  socks_proxy = 127.0.0.1 port=PORT_S OPT
+  debug_print = transport_name <$transport_name>
+
+
+# End