Jonathan Hahn writes:
>
> Majordomo 1.92
>
> When people submit addresses with '/' in them, majordomo complains
> that they are hostile addresses and rejects them. E.g.:
>
> augustine_kate/furman@furman.edu
>
> This is a vaild address, and the second one I've seen of its type.
> Comments?
This is easily disabled by editing majordomo.pl and changing
# if there's a "|" or a "/" in it, it's hostile
if (tr/|\//|\// != 0) {
to read
# if there's a "|" or a "/" in it, it's hostile
if (tr/|/|/ != 0) {
(This still leaves the check for "|" enabled...)
In majordomo 1.93, checking for hostile addresses is a configurable
option, disabled by default, which you can enable by changing
$analyze_slash_in_address = 0;
to
$analyze_slash_in_address = 1;
in /etc/majordomo.cf.
--
Bryan Curnutt Stoner Associates, Inc.
bryan.curnutt@stoner.com 5177 Richmond Ave., Suite 900
+1 713 626 9568 voice +1 713 622 7832 fax Houston TX 77056
References:
|
|