diff options
author | Vivek Jain <jvivek@novell.com> | 2005-10-06 19:19:39 +0800 |
---|---|---|
committer | Jain Vivek <jvivek@src.gnome.org> | 2005-10-06 19:19:39 +0800 |
commit | 11f58b12100ae5177675ef31d16340b9e435e00a (patch) | |
tree | 994605b1d430e886eaf70ce14be2be1e7c803a1c /plugins/sa-junk-plugin | |
parent | 2fffd4b350a9e1623f7c699d29b97f831d95049c (diff) | |
download | gsoc2013-evolution-11f58b12100ae5177675ef31d16340b9e435e00a.tar.gz gsoc2013-evolution-11f58b12100ae5177675ef31d16340b9e435e00a.tar.zst gsoc2013-evolution-11f58b12100ae5177675ef31d16340b9e435e00a.zip |
** See Bug #268852 allow max one chid to be spawned for spamd.
2005-10-06 Vivek Jain <jvivek@novell.com>
** See Bug #268852
* em-junk-filter.c : (em_junk_sa_run_spamd)
allow max one chid to be spawned for
spamd.
svn path=/trunk/; revision=30496
Diffstat (limited to 'plugins/sa-junk-plugin')
-rw-r--r-- | plugins/sa-junk-plugin/ChangeLog | 7 | ||||
-rw-r--r-- | plugins/sa-junk-plugin/em-junk-filter.c | 6 |
2 files changed, 11 insertions, 2 deletions
diff --git a/plugins/sa-junk-plugin/ChangeLog b/plugins/sa-junk-plugin/ChangeLog index cb32b8cbdd..f1d8bfb1f9 100644 --- a/plugins/sa-junk-plugin/ChangeLog +++ b/plugins/sa-junk-plugin/ChangeLog @@ -1,3 +1,10 @@ +2005-10-06 Vivek Jain <jvivek@novell.com> + + ** See Bug #268852 + * em-junk-filter.c : (em_junk_sa_run_spamd) + allow max one chid to be spawned for + spamd. + 2005-10-03 Vivek Jain <jvivek@novell.com> * em-junk-filter.c: added (e_plugin_lib_enable) diff --git a/plugins/sa-junk-plugin/em-junk-filter.c b/plugins/sa-junk-plugin/em-junk-filter.c index 0e7b29469f..431b0b3a12 100644 --- a/plugins/sa-junk-plugin/em-junk-filter.c +++ b/plugins/sa-junk-plugin/em-junk-filter.c @@ -311,8 +311,10 @@ em_junk_sa_run_spamd (char *binary) if (em_junk_sa_local_only) argv[i++] = "--local"; - - //argv[i++] = "--daemonize"; + + /* See bug #268852*/ + argv[i++] = "--max-children=1"; + /*argv[i++] = "--daemonize";*/ argv[i++] = "--pidfile"; argv[i++] = em_junk_sa_spamd_pidfile; argv[i] = NULL; |