In article < >,
sams <> wrote:
:Anyone help me how to tell perl not to convert the @MyDomain part of
:the
inside a body of a mailmessage? In the
:received mails I do see only myname.com the @myDomain part is missing.
It isn't clear what connection perl has to your email ??
For what you describe to be happening, you would have to be
effectively -executing- the body of the email rather than just
doing some kind of textual processing on it. If your script is
doing that, it shouldn't be!!! What happens if someone sends you email
that happens to include $ or % or ${} constructs?
What I would suggest is that you edit your script, and on the #! line
at the beginning, you add -T to turn on taint checking; and I
suggest you use strict; use warnings; if you are not already doing
so. If whatever problem you are seeing does have to do with your
perl script, then between -T and using strict and warnings, you
will probably find a number of places in your script that aren't
properly written.
--
Rome was built one paycheck at a time. -- Walter Roberson