Re: New sendmail: junk characters in header

2000-08-13 Thread Andrey A. Chernov

On Sun, Aug 13, 2000 at 11:39:30AM -0700, Andrey A. Chernov wrote:
> To see the bug, just send any mail to yourself.
> 
> Received: (from ache@localhost)
> by nagual.pp.ru (8.11.0/8.11.0) id e7DIV4a34899
> for [EMAIL PROTECTED]; Sun, 13 Aug 2000 22:31:04 +0400 (MSD)?g
> ^
> (envelope-from ache)œ
>   ^^^


It is stable effect. It seems that something wrong in "$.$b?g" macro for the 
first case and something wrong for "(envelope-from $g)$." in second one.

-- 
Andrey A. Chernov
<[EMAIL PROTECTED]>
http://ache.pp.ru/


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: New sendmail: junk characters in header

2000-08-13 Thread Gregory Neil Shapiro

ache> To see the bug, just send any mail to yourself.

ache> Received: (from ache@localhost)
ache> by nagual.pp.ru (8.11.0/8.11.0) id e7DIV4a34899
ache> for [EMAIL PROTECTED]; Sun, 13 Aug 2000 22:31:04 +0400 (MSD)?g
ache> ^
ache> (envelope-from ache)œ
ache> ^^^

Thanks for the report, fixed with the following patch:

Index: cfhead.m4
===
RCS file: /home/ncvs/src/contrib/sendmail/cf/m4/cfhead.m4,v
retrieving revision 1.4
diff -u -u -r1.4 cfhead.m4
--- cfhead.m4   2000/08/12 22:19:05 1.4
+++ cfhead.m4   2000/08/13 18:45:51
@@ -213,7 +213,7 @@
 define(`_REC_FULL_AUTH_', `$.$?{auth_type}(authenticated as ${auth_authen} 
$?{auth_author}for ${auth_author} $.with ${auth_type}')
 define(`_REC_HDR_', `$?sfrom $s $.$?_($?s$|from $.$_)')
 define(`_REC_END_', `for $u; $|;
-   $.$b?g
+   $.$b$?g
(envelope-from $g)$.')
 define(`_REC_TLS_', `(using ${tls_version} with cipher ${cipher} (${cipher_bits} 
bits) verified ${verify})$.$?u')
 define(`_REC_BY_', `$.by $j ($v/$Z)$?r with $r$. id $i$?{tls_version}')


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message