Differences between version 56 and predecessor to the previous major change of EximNotes.
Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History
Newer page: | version 56 | Last edited on Saturday, June 25, 2005 3:55:26 pm | by DanielLawson | Revert |
Older page: | version 55 | Last edited on Thursday, March 24, 2005 10:20:38 am | by GreigMcGill | Revert |
@@ -105,8 +105,9 @@
query = "ldap://127.0.0.1/ou=Aliases,o=$domain,ou=Domains,BASEDN?mailAlias?sub?cn=$local_part"
</verbatim>
but there are probably other ways of doing this too :)
+
!!! Delivering to [Cyrus]21 from [Exim] 3.3 ([Woody])
The mighty Cuchulain's config:
@@ -134,8 +135,37 @@
local_user_cyrus:
driver = localuser
transport = local_delivery_cyrus
</verbatim>
+
+!!! Delivering to [Cyrus] from [Exim] 4.x
+
+Exim 4.x has native [LMTP] support, so you don't need to pipe the mail to cyrus's deliver program. Instead, you can do the following:
+
+Note that the same rules about placing local_user_cyrus in a sensible place apply here as well!
+
+Router:
+
+<verbatim>
+local_user_cyrus:
+ debug_print = "R: local_user_cyrus for $local_part@$domain"
+ driver = accept
+ local_part_suffix = +*
+ local_part_suffix_optional
+ transport = cyrus_ltcp
+</verbatim>
+
+Transport:
+
+<verbatim>
+cyrus_ltcp:
+ debug_print = "T: cyrus_ltcp for $local_part@$domain"
+ driver = smtp
+ protocol = lmtp
+ hosts = carbon.meta.net.nz
+ allow_localhost
+</verbatim>
+
!!! Using MailDir format instead of [MBox]
This is for version 3.35 (the version with [Debian] [Woody]).