David A Galbraith CIRT <[EMAIL PROTECTED]> writes:
| 921710651.349026 starting delivery 46759: msg 2501 to remote [EMAIL PROTECTED]
| 921710651.378220 delivery 46759: deferral: CNAME_lookup_failed_temporarily._(#4.4.3)/
|
|
| Is this something I should fix/can fix? or is this something aol has
| broken?
Yes, it's a deliberate bug in dns.c. The simplest fix is this:
diff -r1.1 dns.c
24c24
< static union { HEADER hdr; unsigned char buf[PACKETSZ]; } response;
---
> static union { HEADER hdr; unsigned char buf[1<<15]; } response;