

![]() | Start a set with this search |
![]() | Include this search in one of my sets |
![]() | Exclude this search from one of my sets |
![]() | Permalink to these results Paste this link in email or IM: |
| Atom feed for tracking future search results Paste this URL into your reader: |
43 messages in net.sourceforge.lists.courier-maildropRe: [maildropl] Help with /etc/maildr...| From | Sent On | Attachments |
|---|---|---|
| Courier | Dec 29, 2005 5:46 pm | |
| Sam Varshavchik | Dec 29, 2005 6:25 pm | |
| Truong Tan Son | Dec 29, 2005 7:03 pm | |
| Courier | Dec 29, 2005 8:07 pm | |
| Truong Tan Son | Dec 29, 2005 8:18 pm | |
| Courier | Dec 29, 2005 8:50 pm | |
| Thorsten Haude | Dec 30, 2005 1:28 am | |
| Courier | Dec 30, 2005 9:08 am | |
| Thorsten Haude | Dec 30, 2005 9:34 am | |
| Courier | Dec 30, 2005 2:35 pm | |
| Todd Lyons | Dec 30, 2005 2:56 pm | |
| Courier | Dec 30, 2005 3:38 pm | |
| Todd Lyons | Jan 2, 2006 1:21 pm | |
| Courier | Jan 3, 2006 2:40 pm | |
| Devin Rubia | Jan 4, 2006 7:03 am | |
| Todd Lyons | Jan 4, 2006 8:07 am | |
| Courier | Jan 4, 2006 1:56 pm | |
| Todd Lyons | Jan 4, 2006 2:54 pm | |
| Courier | Jan 4, 2006 6:28 pm | |
| Devin Rubia | Jan 5, 2006 6:11 am | |
| Courier | Jan 5, 2006 11:28 am | |
| Devin Rubia | Jan 5, 2006 11:46 am | |
| Courier | Jan 5, 2006 1:01 pm | |
| Todd Lyons | Jan 5, 2006 1:20 pm | |
| Devin Rubia | Jan 5, 2006 1:21 pm | |
| Courier | Jan 5, 2006 3:06 pm | |
| Devin Rubia | Jan 6, 2006 6:23 am | |
| Courier | Jan 6, 2006 1:29 pm | |
| Devin Rubia | Jan 9, 2006 7:13 am | |
| Courier | Jan 9, 2006 2:08 pm | |
| Todd Lyons | Jan 9, 2006 3:54 pm | |
| Courier | Jan 9, 2006 4:32 pm | |
| Devin Rubia | Jan 10, 2006 9:02 am | |
| Courier | Jan 10, 2006 10:36 am | |
| Devin Rubia | Jan 10, 2006 11:46 am | |
| Courier | Jan 10, 2006 12:10 pm | |
| Devin Rubia | Jan 10, 2006 1:01 pm | |
| Courier | Jan 10, 2006 1:11 pm | |
| Devin Rubia | Jan 10, 2006 1:29 pm | |
| Courier | Jan 10, 2006 1:56 pm | |
| Devin Rubia | Jan 11, 2006 6:52 am | |
| Courier | Jan 11, 2006 7:29 am | |
| Devin Rubia | Jan 11, 2006 7:52 am |

![]() | Permalink for this message Paste this link in email or IM: |
![]() | Permalink for this thread Paste this link in email or IM: |
| Atom feed for this thread Paste this URL into your reader: |
| Subject: | Re: [maildropl] Help with /etc/maildroprc file | Actions... |
|---|---|---|
| From: | Courier (Cour...@light-hall.com) | |
| Date: | Jan 9, 2006 4:32:42 pm | |
| List: | net.sourceforge.lists.courier-maildrop | |
if ( /^X-Spam-Status:[:space:]+Yes/ )
You know, you are putting that regex in to allow for something that I don't think will ever happen. There is only one space after that colon and there will probably always be one space after that colon. So in the interests of testing, and possibly a long term fix for you, how about this:
if ( /^X-Spam-Status:[ ]Yes/ )
Same - drops into .Spam/ subdirectory Of note - SIZE=1649 (Subject and Text read "Test 3")
if ( /^X-Spam-Status:.Yes/ )
Same - drops into .Spam/ subdirectory Of note - SIZE=14 & Subj: was blank (Subject and Text read "Test 4")
Both yield: MATCH=
So the regex match fails, but still ends up inside the loop. That's explained further down in your debug test. But obviously that's a problem that shouldn't be happening.
Tokenized ; Tokenized eof /etc/maildroprc(7): SHELL="/bin/bash" /etc/maildroprc(8):
POSIX error now gone - The maildrop log now (at the end) reads:
Tokenized eof /etc/maildroprc(7): SHELL="/bin/bash" /etc/maildroprc(8): DEFAULT="/var/spool/mail/vhosts/domain-name.com.com/user-name/Maildir" /etc/maildroprc(10): Opening logfile /var/log/maildrop.log /etc/maildroprc(11): VERBOSE="8" #
That makes sense now. Experiment with the regex to see if you can get it to match using different methods as I suggested above.
So let's guess this is NOT good...did I leave something out of a compile or something ? We have something to troubleshoot now ?
I don't know, I assume you've googled for this to no avail. Maybe the other guy has some suggestions for that one. You definitely are doing something that the man page says is supported, so I'm not sure why it isn't working.
google was not a lot of help - it found over 47,000 hits with this verbage in the php source code and if I add "maildrop" to it, zero...







