Marcin Owsiany wrote:
> On Wed, May 25, 2005 at 10:37:51AM -0400, Dickenson, Steven wrote:
>
>> regex = "^.{131071}$"
>> message = MIME error: Line length in message or single header
>>exceeds 131071.
>
>
> Does the regex really match all lines of length >= 131071, or only those
> with lenght exactly equal to 131071? I.e. should both leading and
> trailing anchor be present?
Oops sorry, either the leading or trailing one should be omitted. Also
the quotes must be removed, making it:
regex = ^.{131071}
Sorry.