OSEC

Neohapsis is currently accepting applications for employment. For more information, please visit our website www.neohapsis.com or email hr@neohapsis.com
 
Subject: Re: Is this possible with postfix?
From: Wietse Venema (wietseporcupine.org)
Date: Sun Mar 05 2000 - 09:25:13 CST


Parkhaev Vladimir:
> > > Mar 5 14:11:57 myhost postfix/smtp[566]: 262C0330A7: to=<postmastermydomain.com>, relay=none, delay=0, status=bounced (Name service error for domain postmaster: Host not found)
> > >
> > > smtp treats user name as domain name. Any ideas why?
> >
> > This was fixed with Postfix 19991231 patch mumble.
>
> Hmmm, I am running postfix-19991231-pl4....

My copy of postfix-19991231-pl04 qmgr/qmgr_message.c says:

   529 if ((at = strrchr(STR(reply.recipient), '')) == 0
   530 || resolve_local(at + 1)) {
   531 #if 0
   532 vstring_strcpy(reply.nexthop, STR(reply.recipient));
   533 (void) split_at_right(STR(reply.nexthop), '');
   534 #endif
   535 #if 0
   536 if (*var_rcpt_delim)
   537 (void) split_addr(STR(reply.nexthop), *var_rcpt_delim);
   538 #endif

It therefore no longer sets the next-hop hostname equal to username.

        wietse