Re: [exim] configuration Received?

Top Page
Delete this message
Reply to this message
Author: dawnshade
Date:  
To: exim-users
Subject: Re: [exim] configuration Received?
On Saturday 25 March 2006 09:43, Heiko Schlittermann wrote:
> > I try to change (i little bit) Received headers in my exim, it changed
> > but strange. In configure i wrote:
> >
> > received_header_text = Received: \
> >   ${if def:sender_rcvhost {from $sender_rcvhost\n\t}\
> >   {${if def:sender_ident \
> >   {from ${quote_local_part: $sender_ident} }}\
>
>                            ~~~~~
>
> > Quotation with whitespace bug or feature exim?
>
> I'd vote for feature ;-)
>
> Just try:
>
>     exim -be '${quote_local_part: hans}'
>     exim -be '${quote_local_part:hans}'
>
>     exim -be '${quote_local_part: hans <hans@???>}'
>     exim -be '${quote_local_part:hans <hans@???>}'
>
> Quote_local_part has to believe that the whitespace following the :
> is already part of the local part.  How should it know that it's not?


Thanks, i understand my error. But a last question - maybe remove extra
whitespaces from spec.txt? I just copypasted from documentation this string.