summaryrefslogtreecommitdiff
path: root/doc/proxsmtpd.conf
diff options
context:
space:
mode:
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
+
+