don't do extra userdb lookups in VRFYONLY mode
authorEric Allman <eric@ucbvax.Berkeley.EDU>
Fri, 2 Apr 1993 04:32:03 +0000 (20:32 -0800)
committerEric Allman <eric@ucbvax.Berkeley.EDU>
Fri, 2 Apr 1993 04:32:03 +0000 (20:32 -0800)
SCCS-vsn: usr.sbin/sendmail/src/recipient.c 6.34

usr/src/usr.sbin/sendmail/src/recipient.c

index f32e1fb..e682aa6 100644 (file)
@@ -7,7 +7,7 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)recipient.c        6.33 (Berkeley) %G%";
+static char sccsid[] = "@(#)recipient.c        6.34 (Berkeley) %G%";
 #endif /* not lint */
 
 # include "sendmail.h"
 #endif /* not lint */
 
 # include "sendmail.h"
@@ -360,7 +360,7 @@ recipient(a, sendq, e)
 
 # ifdef USERDB
        /* if not aliased, look it up in the user database */
 
 # ifdef USERDB
        /* if not aliased, look it up in the user database */
-       if (!bitset(QDONTSEND|QNOTREMOTE, a->q_flags))
+       if (!bitset(QDONTSEND|QNOTREMOTE|QVERIFIED, a->q_flags))
        {
                extern int udbexpand();
 
        {
                extern int udbexpand();