summaryrefslogtreecommitdiff
path: root/doc/proxsmtpd.conf
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2004-09-23 23:39:04 +0000
committerStef Walter <stef@memberwebs.com>2004-09-23 23:39:04 +0000
commit4e26cc585b631e1938b370048f98abdcca85c210 (patch)
treef9c50f5aca63e04f43bc8be994155a0059a75bb1 /doc/proxsmtpd.conf
parent018e03329151439318a8485b9225b660a88c27fc (diff)
Man pages and sample config file.
Diffstat (limited to 'doc/proxsmtpd.conf')
-rw-r--r--doc/proxsmtpd.conf43
1 files changed, 43 insertions, 0 deletions
diff --git a/doc/proxsmtpd.conf b/doc/proxsmtpd.conf
new file mode 100644
index 0000000..0138e94
--- /dev/null
+++ b/doc/proxsmtpd.conf
@@ -0,0 +1,43 @@
+# ------------------------------------------------------------------------------
+# SAMPLE PROXSMTPD CONFIG FILE
+# ------------------------------------------------------------------------------
+#
+# - Comments are a line that starts with a #
+# - All the options are found below with sample settings
+
+
+# The address to send scanned mail to.
+# This option is required unless TransparentProxy is enabled
+OutAddress: 10026
+
+# The Filter Command run for each email. See 'man proxsmtpd' for details
+# The following command is a simple which just creates temp files.
+#FilterCommand: tee `mktemp -t sample-filter.XXXXXX`
+
+# The amount of time to wait for data from FilterCommand
+#FilterTimeout: 10
+
+# The type of filter ('pipe' to pipe data through filter,
+# or 'file' to pass a file to the filter)
+#FilterType: pipe
+
+# The maximum number of connection allowed at once.
+# Be sure that clamd can also handle this many connections
+#MaxConnections: 64
+
+# Amount of time (in seconds) to wait on network IO
+#TimeOut: 180
+
+# Address to listen on (defaults to all local addresses on port 10025)
+#Listen: 0.0.0.0:10025
+
+# Directory for temporary files
+#TempDirectory: /tmp
+
+# Enable transparent proxy support
+#TransparentProxy: off
+
+# User to switch to
+#User: nobody
+
+