Jul 17 10:26:30 host@our.domain.edu sendmail[8436]:
e2HERfF08329: to="a-marsh@ussr.net" <a-marsh@ussr.net>,
delay=00:00:49, xdelay=00:00:01, mailer=esmtp, pri=889271,
relay=mxpool01.netaddress.ussr.net. [204.68.24.19],
stat=250 2.0.0 Sent (Mail accepted (634ejqoAE1429M05))

This log line (and others like it, all have double quotes in the email address), does not behave as i think it should. $_ contains the log line when i execute the following statement:

($to_addr = $_) =~ s/.* to=([^,]+), .*/$1/;
However, $to_addr does not end up containing the data following the 'to=' delimiter, it ends up containing the whole log line. It would seem that somehow the whole log line is getting matched by the ([^,]+) part of the regex because that's what's getting substituted back in.

What's even stranger is if i simulate this situation in the debugger (by entering the log line into a variable and performing the same substition) it works exactly as expected.

The log line has been altered for obvious reasons. It is of course on a single line in its original form.

And yes, I know you can't technically write a regex to match an email address, but this *should* be close enough.

Thanks.


In reply to Strange Behavior while Parsing Sendmail logs by Russ

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.