summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Process
diff options
context:
space:
mode:
authorfukachan <fukachan>2004-05-19 09:19:04 +0000
committerfukachan <fukachan>2004-05-19 09:19:04 +0000
commit43afdefddee2f9b3276e3786ed16968a29f9d36c (patch)
tree119c4a591c84bc0dafbcf191ce69a3f5abbeecdf /fml/lib/FML/Process
parent0513c069e57b74c50cd774d766719c10c1caeff1 (diff)
downloadfml8-43afdefddee2f9b3276e3786ed16968a29f9d36c.tar.gz
fml8-43afdefddee2f9b3276e3786ed16968a29f9d36c.tar.bz2
fml8-43afdefddee2f9b3276e3786ed16968a29f9d36c.zip
not process _deliver_article() when error set by stop_this_process().
Diffstat (limited to 'fml/lib/FML/Process')
-rw-r--r--fml/lib/FML/Process/Distribute.pm6
1 files changed, 4 insertions, 2 deletions
diff --git a/fml/lib/FML/Process/Distribute.pm b/fml/lib/FML/Process/Distribute.pm
index f5dbf6cf..255077a8 100644
--- a/fml/lib/FML/Process/Distribute.pm
+++ b/fml/lib/FML/Process/Distribute.pm
@@ -3,7 +3,7 @@
# Copyright (C) 2000,2001,2002,2003,2004 Ken'ichi Fukamachi
# All rights reserved.
#
-# $FML: Distribute.pm,v 1.144 2004/05/18 00:36:44 fukachan Exp $
+# $FML: Distribute.pm,v 1.145 2004/05/18 08:43:11 fukachan Exp $
#
package FML::Process::Distribute;
@@ -314,7 +314,9 @@ sub finish
# XXX [queue-based-distrbute] HACK
# deferred delivery starts !
- $curproc->_deliver_article();
+ unless ($curproc->is_refused()) {
+ $curproc->_deliver_article();
+ }
$curproc->inform_reply_messages();
unless ($curproc->smtp_server_state_get_error()) {