aboutsummaryrefslogtreecommitdiff
path: root/libsylph/prefs_common.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2009-02-27 07:54:09 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2009-02-27 07:54:09 +0000
commitdfad6357498ce8f7c0f051027dec550449c5b143 (patch)
treecb6609c58e3f955d2878fac16778e53d1b492cf9 /libsylph/prefs_common.c
parent71b2c3dc0b1eb1059374d1a4f50169af73e0f2fa (diff)
modified the default command line option of spam filters.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2116 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph/prefs_common.c')
-rw-r--r--libsylph/prefs_common.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libsylph/prefs_common.c b/libsylph/prefs_common.c
index 5c3103af..be37ba90 100644
--- a/libsylph/prefs_common.c
+++ b/libsylph/prefs_common.c
@@ -346,16 +346,16 @@ static PrefParam param[] = {
/* Junk mail */
{"enable_junk", "FALSE", &prefs_common.enable_junk, P_BOOL},
#ifdef G_OS_WIN32
- {"junk_learn_command", "bsfilterw -su", &prefs_common.junk_learncmd,
- P_STRING},
- {"nojunk_learn_command", "bsfilterw -cu",
+ {"junk_learn_command", "bsfilterw -C -s -u",
+ &prefs_common.junk_learncmd, P_STRING},
+ {"nojunk_learn_command", "bsfilterw -c -S -u",
&prefs_common.nojunk_learncmd, P_STRING},
{"junk_classify_command", "bsfilterw",
&prefs_common.junk_classify_cmd, P_STRING},
#else
- {"junk_learn_command", "bogofilter -s -I", &prefs_common.junk_learncmd,
- P_STRING},
- {"nojunk_learn_command", "bogofilter -n -I",
+ {"junk_learn_command", "bogofilter -N -s -I",
+ &prefs_common.junk_learncmd, P_STRING},
+ {"nojunk_learn_command", "bogofilter -n -S -I",
&prefs_common.nojunk_learncmd, P_STRING},
{"junk_classify_command", "bogofilter -I",
&prefs_common.junk_classify_cmd, P_STRING},