Hi Friedrich, *,

On Fri, Dec 10, 2010 at 12:11 PM, Friedrich Strohmaier
<[email protected]> wrote:
> Jeff Breidenbach schrieb:
>
> [..]
>
>> http://www.mhonarc.org/MHonArc/doc/resources/addressmodifycode.html
>
>> <AddressModifyCode>
>> $orig_address = $_;
>> $address = lc($orig_address);
>> if ($ENV{'MAILLIST'} eq $address) {
>>    # If it's the list address, leave it alone.
>>    $final_address = $orig_address;
>> } else {
>>    # Otherwise, conceal the address. (Choose ONE option below.)
>>    $address =~ s/(.).{0,3}(@.*)/$1\.\.\.$2/;  # [email protected]
>>    $final_address = $address;
>> }
>> $_ = $final_address;
>> </AddressModifyCode>
>
> Did You already stumble over the definition what is considered an
> address, loaded to $orig_address?

Judging from the substitute statement (and also by the comparison
whether it is the list address itself). it just is the
[email protected] part, the email itself, not the
complete URL.
Thus to disable mangling of URLs, you would have to disable that whole
thing/look at the surroundings of that snippet.

> http://www.mail-archive.com/[email protected]/msg00453.html
>
> to get a first glue how to proceed:
> could You post the $orig_address value of URL
> http://www.mail-archive.com/[email protected]/msg13845.html ?

Very likely [email protected] as max. 4 characters from the start
are preserved, followed by three dots, and what follows the @
[email protected][email protected]

ciao
Christian


--
To unsubscribe, send mail to [email protected].

Reply via email to