Subject: Developers of Sympa
List archive
- From: Sergiy Zhuk <address@concealed>
- To: address@concealed
- Subject: minor bugs in 3.3 release
- Date: Wed, 9 Jan 2002 18:24:44 -0800 (PST)
hi
There's a couple of minor bugs in the latest sympa release (3.3).
- alias_manager.pl doesn't remove temp file it's using to remove aliases when
you close the list
it also doesn't remove comment describing the list, so IMHO it's better
off w/o any comments
patch is attached for the above
- create_list.intranet scenario has a whitespace in
is_listmaster([ sender]) statement, so it doesn't work
should be is_listmaster([sender]) instead
- us.msg
LDAP (2 pass) messages are not translated
thanks
--
rgds,
serge
Index: alias_manager.pl
===================================================================
RCS file: /CVSROOT/yahoo/network/email/sympa/bin/alias_manager.pl,v
retrieving revision 1.1
diff -u -r1.1 alias_manager.pl
--- alias_manager.pl 2002/01/10 02:14:31 1.1
+++ alias_manager.pl 2002/01/10 02:15:58
@@ -65,7 +65,7 @@
}
unless (-w "$alias_file") {
- die "Unable to access to $alias_file";
+ die "Unable to access $alias_file";
}
if ($operation eq 'add') {
@@ -81,7 +81,7 @@
}
## Write aliases
- print ALIAS "# --- aliases for list $listname\n";
+# print ALIAS "# --- aliases for list $listname\n";
foreach my $suffix ('', '-request', '-owner', '-unsubscribe') {
my $address = $listname . $suffix;
@@ -157,6 +157,7 @@
print OLDALIAS <NEWALIAS>;
close OLDALIAS ;
close NEWALIAS;
+ unlink $tmp_alias_file;
## Newaliases
unless (system($alias_wrapper) == 0) {
- minor bugs in 3.3 release, Sergiy Zhuk, 01/10/2002
Archive powered by MHonArc 2.6.19+.