Woody Mon via Mailman-Users writes: > So I tried entering RegExp ^.*+ but Mailman rejected this entry.
That's illegal syntax for a regexp because "+" is an operator. The version you want is "^.*\+". However, that is a very bad idea if you have any posters with email skills, because embedding "+" in the return address for outgoing mail is a common way to identify the source of incoming replies. A more conservative regexp would be "^[a-z]+\+[0-9]+@" which will catch the pattern of LETTERS "+" DIGITS. ------------------------------------------------------ Mailman-Users mailing list [email protected] https://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://wiki.list.org/x/AgA3 Security Policy: http://wiki.list.org/x/QIA9 Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: https://mail.python.org/mailman/options/mailman-users/archive%40jab.org
