Donald (and Gary),
> I've googled this one but didn't find a definitive answer. It seems like
> we have a problem with a config line somewhere, but it passed
> amavisd debug check for syntax errors.
>
> Apr 26 13:44:04 apollo amavis[66023]: (65934-01-2) (!!) run_command:
> child process [66023]: run_command: failed to exec SCALAR(0x855c1cc)
> lq /usr/local/var/amavis/tmp/amavis-20060426T134343-65934/parts/p004.exe:
> No such file or directory at /usr/local/sbin/amavisd line 2124.
The bug will be fixed in 2.4.1 (in a couple of days):
- fixed old nuisance bug (probably present since 2.3.0) when an external
decoder program for self-extracting archives (rar/unrar, lha, arj/unarj)
is defined but the program does not exist, which resulted in logged
non-fatal errors like:
run_command: failed to exec SCALAR(0x8598550) lq ...
run_command: failed to exec REF(0x85985c8) v -c- -p- -av- -idcdp -- ...
run_command: failed to exec ARRAY(0x89e5f0c) l ...
No such file or directory
reported by Martin Baertl, Maurizio Marini, boka, and Donald Teed,
investigated by Gary V;
Here is the patch:
--- amavisd.orig Tue Apr 25 12:19:13 2006
+++ amavisd Thu May 4 02:44:22 2006
@@ -8883,6 +8883,9 @@
my($dd) = (ref $d eq 'SCALAR' || ref $d eq 'REF') ? $$d : $d;
my($found) = find_program_path($dd, $path_list_ref, 1);
- if (defined $found) { $any = 1; $dd = $found; $d = $dd; push(@found,
$dd)}
- else { push(@tried, !ref($dd) ? $dd : join(", ",@$dd)) if $dd ne '' }
+ if (defined $found) { $any = 1; $d = $dd = $found; push(@found,$dd)}
+ else {
+ push(@tried, !ref($dd) ? $dd : join(", ",@$dd)) if $dd ne '';
+ $d = undef;
+ }
}
my($is_a_backup) = $any_st{$short_type};
Mark
-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
AMaViS-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/amavis-user
AMaViS-FAQ:http://www.amavis.org/amavis-faq.php3
AMaViS-HowTos:http://www.amavis.org/howto/