Micah Anderson wrote:
The patch wasn't attached to the bug, as I previously said it was. I'm
attaching it to this email instead.
This patch also contains a fix for #498144 (attached to that bug report
as well).
The upload has been sent to the 5-day delayed queue.
The patch is attached now. I tried to build the packages, but it didn't
work yet:
# Install logrotate configuration
install -m 0644 /space/build/sympa/sympa-5.3.4/debian/conf/logrotate
/space/build/sympa/sympa-5.3.4/debian/sympa/etc/logrotate.d/sympa
install: cannot create regular file
`/space/build/sympa/sympa-5.3.4/debian/sympa/etc/logrotate.d/sympa': No such
file or directory
make: *** [install-stamp] Error 1
I'll look at it ASAP.
Regards
Racke
--
LinuXia Systems => http://www.linuxia.de/
Expert Interchange Consulting and System Administration
ICDEVGROUP => http://www.icdevgroup.org/
Interchange Development Team
--- sympa-5.4-branch/src/tools.pl 2008/04/08 13:18:17 4943
+++ sympa-5.4-branch/src/tools.pl 2008/09/11 09:40:54 5124
@@ -748,7 +748,7 @@
## first step is the msg signing OK ; /tmp/sympa-smime.$$ is created
## to store the signer certificat for step two. I known, that's durty.
- my $temporary_file = "/tmp/smime-sender.".$$ ;
+ my $temporary_file = $Conf{'tmpdir'}."/".'smime-sender.'.$$ ;
my $trusted_ca_options = '';
$trusted_ca_options = "-CAfile $Conf{'cafile'} " if ($Conf{'cafile'});
$trusted_ca_options .= "-CApath $Conf{'capath'} " if ($Conf{'capath'});