INN commit: trunk/control/modules (newgroup.pl)

INN Commit rra at isc.org
Sun Mar 14 20:55:57 UTC 2010


    Date: Sunday, March 14, 2010 @ 13:55:56
  Author: iulius
Revision: 8995

Remove the check for newsgroups containing only ASCII characters
when receiving a newgroup control article.  Otherwise, UTF-8
characters would cause a reject of the control article.

Modified:
  trunk/control/modules/newgroup.pl

-------------+
 newgroup.pl |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: newgroup.pl
===================================================================
--- newgroup.pl	2010-03-14 20:43:21 UTC (rev 8994)
+++ newgroup.pl	2010-03-14 20:55:56 UTC (rev 8995)
@@ -272,7 +272,7 @@
         return "`all' or `ctl' used as name component" if /^(?:all|ctl)$/;
 #        return 'Name component longer than 30 characters' if length $_ > 30;
         return 'Uppercase letter(s) in name' if /[A-Z]/;
-        return 'Illegal character(s) in name' if /[^a-z0-9+_\-]/;
+#        return 'Illegal character(s) in name' if /[^a-z0-9+_\-]/;
         # Sigh, c++ etc. must be allowed.
 #        return 'Repeated punctuation in name' if /--|__|\+\+./;
 #        return 'Repeated component(s) in name' if ($i + 2 <= $#components




More information about the inn-committers mailing list