diff options
author | endico%mozilla.org <> | 2000-06-13 19:00:32 +0200 |
---|---|---|
committer | endico%mozilla.org <> | 2000-06-13 19:00:32 +0200 |
commit | c5665cfc09cc4d69d171821149b4d1b93e3543eb (patch) | |
tree | 8db3eae38e4e7fda77ec06a82bf6ff0465438a64 /move.cgi | |
parent | cae3bdbf14780427e5b9594d625e2440401756f5 (diff) | |
download | bugzilla-c5665cfc09cc4d69d171821149b4d1b93e3543eb.tar.gz bugzilla-c5665cfc09cc4d69d171821149b4d1b93e3543eb.tar.xz |
use background delivery instead of defered so mail is delivered sooner and bug moving process goes faster.
Diffstat (limited to 'move.cgi')
-rwxr-xr-x | move.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -99,7 +99,7 @@ $msg .= "Subject: Moving bugs $::FORM{'buglist'}\n\n"; $msg .= $xml . "\n"; open(SENDMAIL, - "|/usr/lib/sendmail -ODeliveryMode=deferred -t") || + "|/usr/lib/sendmail -ODeliveryMode=background -t") || die "Can't open sendmail"; print SENDMAIL $msg; |