Penguin
Diff: POPbeforeSMTP
EditPageHistoryDiffInfoLikePages

Differences between version 2 and predecessor to the previous major change of POPbeforeSMTP.

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

Newer page: version 2 Last edited on Sunday, August 17, 2003 2:28:13 pm by DanielLawson Revert
Older page: version 1 Last edited on Sunday, August 3, 2003 1:11:15 am by BlairHarrison Revert
@@ -15,6 +15,29 @@
 put 
  kill `cat /var/run/exact/exact.pid` 
  
 Note, I could never get it going properly on sendmail using the provided instructions. 
+  
+----  
+  
+For Cyrus 2.x under debian, I had to change the logfile regex a bit:  
+  
+It used to read:  
+  
+ # Cyrus  
+ # =====  
+ order address,username  
+ match (login): \[([0-9\.]*)\] ([^ ]*)  
+  
+Which is fine, except it matches on text like:  
+ ..... login: [ip.ad.dr.ess] someusername ...  
+  
+Whereas, the cyrus 2.x logfiles (under Debian anyway, backported from unstable), look more like:  
+ ..... login: some.host.name[ip.ad.dr.ess] someusername ...  
+  
+  
+The following like will naively match. It works for me :)  
+ match (login): .*\[([0-9\.]*)\] ([^ ]*)  
+  
+--DanielLawson  
  
 See also EximSmtpAuth for an alternative method of achieving the same end.