Where did you get the idea of using backslashes on folder names from? Use forward slashes instead if you mean maildir format.
Your problem is with treating the regular expressions procmail is expecting in your filter lines (those lines starting with an asterisk) only partially as regular expressions, and partially as fixed strings. You have put the square brackets you mean to match in the subject of various email lists as simple square brackets, forgetting that square brackets are the regex way (and shell glob way) of saying "any one of these characters inside these brackets". You need to put backslashes in front of brackets you mean to match literally. In procmail, and only there, you may omit escaping the closing bracket if you have escaped the opening one. As is, first recipe which matches any one of the characters of the brackets in the subject of the email gets the cake. Typically one of the earlier recipes... Volker -- Volker Kuhlmann is list0570 with the domain in header http://volker.dnsalias.net/ Please do not CC list postings to me.
