Hi Friedrich, *,

On Fri, Dec 10, 2010 at 12:11 PM, Friedrich Strohmaier
<damokles4-lis...@bits-fritz.de> 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/;  # usern...@domain.com
>>    $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
disc...@documentfoundation.org 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/disc...@documentfoundation.org/msg00453.html
>
> to get a first glue how to proceed:
> could You post the $orig_address value of URL
> http://www.mail-archive.com/disc...@openoffice.org/msg13845.html ?

Very likely disc...@openoffice.org as max. 4 characters from the start
are preserved, followed by three dots, and what follows the @
disc...@openoffice.org  → disc...@openoffice.org

ciao
Christian


--
To unsubscribe, send mail to gossip-unsubscr...@jab.org.

Reply via email to