exim: Add transport configuration.
authorMatthijs Kooijman <matthijs@stdin.nl>
Tue, 10 Aug 2010 09:59:27 +0000 (11:59 +0200)
committerMatthijs Kooijman <matthijs@stdin.nl>
Tue, 10 Aug 2010 09:59:27 +0000 (11:59 +0200)
For some reason, these configuration files never got committed.

etc/exim4/conf.d/transport/30_dovecot_delivery [new file with mode: 0644]
etc/exim4/conf.d/transport/30_remote_smtp [new file with mode: 0644]

diff --git a/etc/exim4/conf.d/transport/30_dovecot_delivery b/etc/exim4/conf.d/transport/30_dovecot_delivery
new file mode 100644 (file)
index 0000000..e623a43
--- /dev/null
@@ -0,0 +1,14 @@
+dovecot_deliver:
+  driver = pipe
+  command = /usr/lib/dovecot/deliver -e
+  # deliver expects just the message, nothing surrounding it
+  message_prefix =
+  message_suffix =
+  # Log (the first line of) any output generated
+  log_output
+  # Add some headers
+  delivery_date_add
+  envelope_to_add
+  return_path_add
+
+# vim: set sts=2 expandtab sw=2 ai:
diff --git a/etc/exim4/conf.d/transport/30_remote_smtp b/etc/exim4/conf.d/transport/30_remote_smtp
new file mode 100644 (file)
index 0000000..2b05dee
--- /dev/null
@@ -0,0 +1,10 @@
+
+### transport/30_exim4-config_remote_smtp
+#################################
+# This transport is used for delivering messages over SMTP connections.
+
+remote_smtp:
+  debug_print = "T: remote_smtp for $local_part@$domain"
+  driver = smtp
+
+# vim: set sts=2 expandtab sw=2 ai: