Penguin

Differences between version 64 and revision by previous author of EximNotes.

Other diffs: Previous Major Revision, Previous Revision, or view the Annotated Edit History

Newer page: version 64 Last edited on Friday, July 28, 2006 10:48:45 am by CraigBox Revert
Older page: version 61 Last edited on Friday, December 16, 2005 7:16:11 am by JohnMcPherson Revert
@@ -411,7 +411,28 @@
 
 </verbatim> 
  
 One issue I found was that I wasn't able to query the whole forest using port 389. I needed to use port 3268 (GC). If you're having problems, there's a high chance you haven't got the DN correct. Use adsiedit to check (found in the Windows Support Tools). More information can be found at http://www.exim.org/eximwiki/MsExchangeAddressVerification. 
+  
+!!! /dev/null or other file alias doesn't work (Exim 4.5)  
+  
+<verbatim>  
+root@firewall.tla:/etc # exim4 -bv -v junk@firewall.tla  
+R: spam_redirect for firewall.tla  
+R: system_aliases for junk@firewall.tla  
+junk@firewall.tla -> /dev/null  
+*** Error in setting up pipe, file, or autoreply:  
+file_transport unset in system_aliases router  
+</verbatim>  
+  
+There is a macro defined for the file_transport router, but its unset by default. To allow this behaivour, add to the bottom of your /etc/exim4/conf.d/main/02_exim4-config_options.rul:  
+<verbatim>  
+# allow writing to files in system aliases (potentially bad!)  
+.ifndef SYSTEM_ALIASES_FILE_TRANSPORT  
+SYSTEM_ALIASES_FILE_TRANSPORT = address_file  
+.endif  
+</verbatim>  
+  
+A better answer is changing the destination using the [redirect router alias|http://www.exim.org/exim-html-4.62/doc/html/spec_html/ch22.html#SECTspecitredli] <tt>:blackhole:</tt>.  
  
 ---- 
 Part of CategoryMailNotes