On Fri, 2014-08-22 at 17:32 -0700, Ian Zimmerman wrote: > Isn't inotify a bit of overkill for this? If you have a dedicated > maildir for training, you know that anything in maildir/new is, uh, > new. So you process it and move it to maildir/cur. What am I missing?
The new/ directory is for delivery, messages moved will end up in cur/. Training on messages in new/ means training solely on classification. These messages have not been seen by a human, and he's most likely not even aware there's new mail at all. Messages moved (copied) into dedicated (ham|spam) learning folders will be placed in cur/. Thus, training on content in dedicated learning folders' new/ dirs won't work, because human reviewed mail does not go there. And training on new/ dirs in general is like overriding all of the precaution measures of SA auto-learning, and blindly train anything and everything above or below the required_score threshold. Besides, moving messages from new/ to cur/ is the IMAP server's duty. No third-party script should ever mess with that. -- char *t="\10pse\0r\0dtu\0.@ghno\x4e\xc8\x79\xf4\xab\x51\x8a\x10\xf4\xf4\xc4"; main(){ char h,m=h=*t++,*x=t+2*h,c,i,l=*x,s=0; for (i=0;i<l;i++){ i%8? c<<=1: (c=*++x); c&128 && (s+=h); if (!(h>>=1)||!t[s+h]){ putchar(t[s]);h=m;s=0; }}}