Penguin

Differences between version 62 and predecessor to the previous major change of EximNotes.

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

Newer page: version 62 Last edited on Thursday, December 22, 2005 9:34:05 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,29 @@
 
 </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>  
+  
+  
+  
  
 ---- 
 Part of CategoryMailNotes