SHELL = /bin/sh SRCS = cleanup.c cleanup_out.c cleanup_envelope.c cleanup_message.c \ cleanup_extracted.c cleanup_state.c cleanup_rewrite.c \ cleanup_map11.c cleanup_map1n.c cleanup_masquerade.c \ cleanup_out_recipient.c cleanup_init.c cleanup_api.c \ cleanup_addr.c cleanup_bounce.c cleanup_milter.c \ cleanup_body_edit.c cleanup_region.c cleanup_final.c OBJS = cleanup.o cleanup_out.o cleanup_envelope.o cleanup_message.o \ cleanup_extracted.o cleanup_state.o cleanup_rewrite.o \ cleanup_map11.o cleanup_map1n.o cleanup_masquerade.o \ cleanup_out_recipient.o cleanup_init.o cleanup_api.o \ cleanup_addr.o cleanup_bounce.o cleanup_milter.o \ cleanup_body_edit.o cleanup_region.o cleanup_final.o HDRS = TESTSRC = DEFS = -I. -I$(INC_DIR) -D$(SYSTYPE) CFLAGS = $(DEBUG) $(OPT) $(DEFS) TESTPROG= cleanup_masquerade cleanup_milter PROG = cleanup INC_DIR = ../../include LIBS = ../../lib/lib$(LIB_PREFIX)master$(LIB_SUFFIX) \ ../../lib/libmilter.a \ ../../lib/lib$(LIB_PREFIX)global$(LIB_SUFFIX) \ ../../lib/lib$(LIB_PREFIX)util$(LIB_SUFFIX) .c.o:; $(CC) $(CFLAGS) -c $*.c $(PROG): $(OBJS) $(LIBS) $(CC) $(CFLAGS) $(SHLIB_RPATH) -o $@ $(OBJS) $(LIBS) $(SYSLIBS) $(OBJS): ../../conf/makedefs.out Makefile: Makefile.in cat ../../conf/makedefs.out $? >$@ test: $(TESTPROG) update: ../../libexec/$(PROG) ../../libexec/$(PROG): $(PROG) cp $(PROG) ../../libexec printfck: $(OBJS) $(PROG) rm -rf printfck mkdir printfck cp *.h printfck sed '1,/^# do not edit/!d' Makefile > printfck/Makefile set -e; for i in *.c; do printfck -f .printfck $$i >printfck/$$i; done cd printfck; make "INC_DIR=../../../include" `cd ..; ls *.o` lint: lint $(DEFS) $(SRCS) $(LINTFIX) clean: rm -f *.o *core $(PROG) $(TESTPROG) junk rm -rf printfck tidy: clean cleanup_masquerade: cleanup_masquerade.o mv cleanup_masquerade.o junk $(CC) $(CFLAGS) -DTEST -o $@ $@.c $(LIBS) $(SYSLIBS) mv junk cleanup_masquerade.o CLEANUP_MILTER_OBJS = cleanup_state.o cleanup_out.o cleanup_addr.o \ cleanup_out_recipient.o cleanup_body_edit.o cleanup_region.o cleanup_milter: cleanup_milter.o $(CLEANUP_MILTER_OBJS) $(LIBS) mv cleanup_milter.o junk $(CC) $(CFLAGS) -DTEST -o $@ $@.c $(CLEANUP_MILTER_OBJS) $(LIBS) $(SYSLIBS) mv junk cleanup_milter.o tests: cleanup_masquerade_test milter_tests milter_tests: cleanup_milter_test bug_tests \ cleanup_milter_test2 cleanup_milter_test3 cleanup_milter_test4 \ cleanup_milter_test5 cleanup_milter_test6 cleanup_milter_test7 \ cleanup_milter_test8 cleanup_milter_test9 cleanup_milter_test10a \ cleanup_milter_test10b cleanup_milter_test10c cleanup_milter_test10d \ cleanup_milter_test10e cleanup_milter_test11 cleanup_milter_test12 \ cleanup_milter_test13a cleanup_milter_test13b cleanup_milter_test13c \ cleanup_milter_test13d cleanup_milter_test13e cleanup_milter_test13f \ cleanup_milter_test13g cleanup_milter_test13h cleanup_milter_test13i \ cleanup_milter_test14a cleanup_milter_test14b cleanup_milter_test14c \ cleanup_milter_test14d cleanup_milter_test14e cleanup_milter_test14f \ cleanup_milter_test14g \ cleanup_milter_test15a cleanup_milter_test15b cleanup_milter_test15c \ cleanup_milter_test15d cleanup_milter_test15e cleanup_milter_test15f \ cleanup_milter_test15g cleanup_milter_test15h cleanup_milter_test15i \ cleanup_milter_test16a cleanup_milter_test16b cleanup_milter_test17a \ cleanup_milter_test17b cleanup_milter_test17c cleanup_milter_test17d \ cleanup_milter_test17e cleanup_milter_test17f cleanup_milter_test17g root_tests: cleanup_masquerade_test: cleanup_masquerade cleanup_masq.ref rm -f cleanup_masq.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_masquerade '' a.b.c,b.c xxx@aa.a.b.c >>cleanup_masq.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_masquerade '' A.B.C,B.C xxx@aa.a.b.c >>cleanup_masq.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_masquerade '' a.b.c,b.c xxx@AA.A.B.C >>cleanup_masq.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_masquerade 'xxx' a.b.c,b.c xxx@aa.a.b.c >>cleanup_masq.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_masquerade 'yyy' a.b.c,b.c xxx@aa.a.b.c >>cleanup_masq.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_masquerade '' !a.b.c,b.c xxx@aa.a.b.c >>cleanup_masq.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_masquerade '' a.b.c,b.c xxx@a.b.c >>cleanup_masq.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_masquerade '' !a.b.c,b.c xxx@a.b.c >>cleanup_masq.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_masquerade '' a.b.c,b.c xxx@aaa.b.c >>cleanup_masq.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_masquerade '' a.b.c,b.c xxx@b.c >>cleanup_masq.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_masquerade 'fail:whatever' xy xxx@b.c >>cleanup_masq.tmp diff cleanup_masq.ref cleanup_masq.tmp rm -f cleanup_masq.tmp bug_tests: bug1_test bug2_test bug3_test ../postcat/postcat: cd ../postcat; make bug1_test: cleanup_milter bug1.file bug1.in bug1.ref bug1.text.ref \ ../postcat/postcat cp bug1.file bug1.file.tmp chmod u+w bug1.file.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >bug1.tmp diff bug1.ref bug1.tmp $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat bug1.file.tmp 2>/dev/null >bug1.tmp diff bug1.text.ref bug1.tmp rm -f bug1.file.tmp bug1.tmp bug2_test: cleanup_milter bug2.file bug2.in bug2.ref bug2.text.ref \ ../postcat/postcat cp bug2.file bug2.file.tmp chmod u+w bug2.file.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >bug2.tmp diff bug2.ref bug2.tmp $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat bug2.file.tmp 2>/dev/null >bug2.tmp diff bug2.text.ref bug2.tmp rm -f bug2.file.tmp bug2.tmp bug3_test: cleanup_milter bug3.file bug3.in bug3.ref bug3.text.ref \ ../postcat/postcat cp bug3.file bug3.file.tmp chmod u+w bug3.file.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >bug3.tmp diff bug3.ref bug3.tmp $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat bug3.file.tmp 2>/dev/null >bug3.tmp diff bug3.text.ref bug3.tmp rm -f bug3.file.tmp bug3.tmp # Test queue file editing routines. cleanup_milter_test: cleanup_milter test-queue-file cleanup_milter.in1 \ cleanup_milter.ref1 ../postcat/postcat cp test-queue-file test-queue-file.tmp chmod u+w test-queue-file.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref1 cleanup_milter.tmp rm -f test-queue-file.tmp cleanup_milter.tmp cleanup_milter_test2: cleanup_milter test-queue-file2 cleanup_milter.in2 \ cleanup_milter.ref2 ../postcat/postcat cp test-queue-file2 test-queue-file2.tmp chmod u+w test-queue-file2.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref2 cleanup_milter.tmp rm -f test-queue-file2.tmp cleanup_milter.tmp cleanup_milter_test3: cleanup_milter test-queue-file3 cleanup_milter.in3 \ cleanup_milter.ref3 ../postcat/postcat cp test-queue-file3 test-queue-file3.tmp chmod u+w test-queue-file3.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref3 cleanup_milter.tmp rm -f test-queue-file3.tmp cleanup_milter.tmp cleanup_milter_test4: cleanup_milter test-queue-file4 cleanup_milter.in4a \ cleanup_milter.in4b cleanup_milter.in4c cleanup_milter.ref4 \ test-queue-file4 ../postcat/postcat cp test-queue-file4 test-queue-file4.tmp chmod u+w test-queue-file4.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref4 cleanup_milter.tmp cp test-queue-file4 test-queue-file4.tmp chmod u+w test-queue-file4.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref4 cleanup_milter.tmp cp test-queue-file4 test-queue-file4.tmp chmod u+w test-queue-file4.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref4 cleanup_milter.tmp rm -f test-queue-file4.tmp cleanup_milter.tmp cleanup_milter_test5: cleanup_milter test-queue-file5 cleanup_milter.in5 \ cleanup_milter.ref5 ../postcat/postcat cp test-queue-file5 test-queue-file5.tmp chmod u+w test-queue-file5.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref5 cleanup_milter.tmp rm -f test-queue-file5.tmp cleanup_milter.tmp cleanup_milter_test6: cleanup_milter_test6a cleanup_milter_test6b cleanup_milter_test6c rm -f test-queue-file6.tmp cleanup_milter.tmp cleanup_milter_test6a: cleanup_milter test-queue-file6 cleanup_milter.in6a \ cleanup_milter.ref6a test-queue-file6 ../postcat/postcat cp test-queue-file6 test-queue-file6.tmp chmod u+w test-queue-file6.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref6a cleanup_milter.tmp rm -f test-queue-file6.tmp cleanup_milter.tmp cleanup_milter_test6b: cleanup_milter test-queue-file6 cleanup_milter.in6b \ cleanup_milter.ref6b ../postcat/postcat cp test-queue-file6 test-queue-file6.tmp chmod u+w test-queue-file6.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref6b cleanup_milter.tmp rm -f test-queue-file6.tmp cleanup_milter.tmp cleanup_milter_test6c: cleanup_milter test-queue-file6 cleanup_milter.in6c \ cleanup_milter.ref6c ../postcat/postcat cp test-queue-file6 test-queue-file6.tmp chmod u+w test-queue-file6.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref6c cleanup_milter.tmp rm -f test-queue-file6.tmp cleanup_milter.tmp cleanup_milter_test7: cleanup_milter test-queue-file7 cleanup_milter.in7 \ cleanup_milter.ref7 ../postcat/postcat cp test-queue-file7 test-queue-file7.tmp chmod u+w test-queue-file7.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref7 cleanup_milter.tmp rm -f test-queue-file7.tmp cleanup_milter.tmp cleanup_milter_test8: cleanup_milter test-queue-file8 cleanup_milter.in8 \ cleanup_milter.ref8 ../postcat/postcat cp test-queue-file8 test-queue-file8.tmp chmod u+w test-queue-file8.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref8 cleanup_milter.tmp rm -f test-queue-file8.tmp cleanup_milter.tmp cleanup_milter_test9: cleanup_milter test-queue-file9 cleanup_milter.in9 \ cleanup_milter.ref9 ../postcat/postcat cp test-queue-file9 test-queue-file9.tmp chmod u+w test-queue-file9.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref9 cleanup_milter.tmp rm -f test-queue-file9.tmp cleanup_milter.tmp cleanup_milter_test10a: cleanup_milter test-queue-file10 cleanup_milter.in10a \ cleanup_milter.ref10a ../postcat/postcat cp test-queue-file10 test-queue-file10.tmp chmod u+w test-queue-file10.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref10a cleanup_milter.tmp rm -f test-queue-file10.tmp cleanup_milter.tmp cleanup_milter_test10b: cleanup_milter test-queue-file10 cleanup_milter.in10b \ cleanup_milter.ref10b ../postcat/postcat cp test-queue-file10 test-queue-file10.tmp chmod u+w test-queue-file10.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref10b cleanup_milter.tmp rm -f test-queue-file10.tmp cleanup_milter.tmp cleanup_milter_test10c: cleanup_milter test-queue-file10 cleanup_milter.in10c \ cleanup_milter.ref10c ../postcat/postcat cp test-queue-file10 test-queue-file10.tmp chmod u+w test-queue-file10.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref10c cleanup_milter.tmp rm -f test-queue-file10.tmp cleanup_milter.tmp cleanup_milter_test10d: cleanup_milter test-queue-file10 cleanup_milter.in10c \ cleanup_milter.ref10d ../postcat/postcat cp test-queue-file10 test-queue-file10.tmp chmod u+w test-queue-file10.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref10d cleanup_milter.tmp rm -f test-queue-file10.tmp cleanup_milter.tmp cleanup_milter_test10e: cleanup_milter test-queue-file10 cleanup_milter.in10c \ cleanup_milter.ref10e ../postcat/postcat cp test-queue-file10 test-queue-file10.tmp chmod u+w test-queue-file10.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref10e cleanup_milter.tmp rm -f test-queue-file10.tmp cleanup_milter.tmp cleanup_milter_test11: cleanup_milter test-queue-file11 cleanup_milter.in11 \ cleanup_milter.ref11 ../postcat/postcat cp test-queue-file11 test-queue-file11.tmp chmod u+w test-queue-file11.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref11 cleanup_milter.tmp rm -f test-queue-file11.tmp cleanup_milter.tmp cleanup_milter_test12: cleanup_milter test-queue-file12 cleanup_milter.in12 \ cleanup_milter.ref12 ../postcat/postcat cp test-queue-file12 test-queue-file12.tmp chmod u+w test-queue-file12.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref12 cleanup_milter.tmp rm -f test-queue-file12.tmp cleanup_milter.tmp cleanup_milter_test13a: cleanup_milter test-queue-file13a cleanup_milter.in13a \ cleanup_milter.ref13a ../postcat/postcat cp test-queue-file13a test-queue-file13a.tmp chmod u+w test-queue-file13a.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref13a cleanup_milter.tmp rm -f test-queue-file13a.tmp cleanup_milter.tmp cleanup_milter_test13b: cleanup_milter test-queue-file13b cleanup_milter.in13b \ cleanup_milter.ref13b ../postcat/postcat cp test-queue-file13b test-queue-file13b.tmp chmod u+w test-queue-file13b.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref13b cleanup_milter.tmp rm -f test-queue-file13b.tmp cleanup_milter.tmp cleanup_milter_test13c: cleanup_milter test-queue-file13c cleanup_milter.in13c \ cleanup_milter.ref13c ../postcat/postcat cp test-queue-file13c test-queue-file13c.tmp chmod u+w test-queue-file13c.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref13c cleanup_milter.tmp rm -f test-queue-file13c.tmp cleanup_milter.tmp cleanup_milter_test13d: cleanup_milter test-queue-file13d cleanup_milter.in13d \ cleanup_milter.ref13d ../postcat/postcat cp test-queue-file13d test-queue-file13d.tmp chmod u+w test-queue-file13d.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref13d cleanup_milter.tmp rm -f test-queue-file13d.tmp cleanup_milter.tmp cleanup_milter_test13e: cleanup_milter test-queue-file13e cleanup_milter.in13e \ cleanup_milter.ref13e ../postcat/postcat cp test-queue-file13e test-queue-file13e.tmp chmod u+w test-queue-file13e.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref13e cleanup_milter.tmp rm -f test-queue-file13e.tmp cleanup_milter.tmp cleanup_milter_test13g: cleanup_milter test-queue-file13g cleanup_milter.in13g \ cleanup_milter.ref13g ../postcat/postcat cp test-queue-file13g test-queue-file13g.tmp chmod u+w test-queue-file13g.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref13g cleanup_milter.tmp rm -f test-queue-file13g.tmp cleanup_milter.tmp cleanup_milter_test13h: cleanup_milter test-queue-file13h cleanup_milter.in13h \ cleanup_milter.ref13h ../postcat/postcat cp test-queue-file13h test-queue-file13h.tmp chmod u+w test-queue-file13h.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref13h cleanup_milter.tmp rm -f test-queue-file13h.tmp cleanup_milter.tmp cleanup_milter_test13i: cleanup_milter test-queue-file13i cleanup_milter.in13i \ cleanup_milter.ref13i ../postcat/postcat cp test-queue-file13i test-queue-file13i.tmp chmod u+w test-queue-file13i.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref13i cleanup_milter.tmp rm -f test-queue-file13i.tmp cleanup_milter.tmp cleanup_milter_test13f: cleanup_milter test-queue-file13f cleanup_milter.in13f \ cleanup_milter.ref13f ../postcat/postcat cp test-queue-file13f test-queue-file13f.tmp chmod u+w test-queue-file13f.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter /dev/null >cleanup_milter.tmp diff cleanup_milter.ref13f cleanup_milter.tmp rm -f test-queue-file13f.tmp cleanup_milter.tmp cleanup_milter_test14a: cleanup_milter test-queue-file14 cleanup_milter.in14a \ cleanup_milter.ref14a1 ../postcat/postcat cleanup_milter.ref14a2 \ cleanup_milter.reg14a cp test-queue-file14 test-queue-file14a.tmp chmod u+w test-queue-file14a.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref14a1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file14a.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref14a2 cleanup_milter.tmp2 rm -f test-queue-file14a.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 cleanup_milter_test14b: cleanup_milter test-queue-file14 cleanup_milter.in14b \ cleanup_milter.ref14b1 ../postcat/postcat cleanup_milter.ref14b2 \ cleanup_milter.reg14b cp test-queue-file14 test-queue-file14b.tmp chmod u+w test-queue-file14b.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref14b1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file14b.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref14b2 cleanup_milter.tmp2 rm -f test-queue-file14b.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 cleanup_milter_test14c: cleanup_milter test-queue-file14 cleanup_milter.in14c \ cleanup_milter.ref14c1 ../postcat/postcat cleanup_milter.ref14c2 \ cleanup_milter.reg14c cp test-queue-file14 test-queue-file14c.tmp chmod u+w test-queue-file14c.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref14c1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file14c.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref14c2 cleanup_milter.tmp2 rm -f test-queue-file14c.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 cleanup_milter_test14d: cleanup_milter test-queue-file14 cleanup_milter.in14d \ cleanup_milter.ref14d1 ../postcat/postcat cleanup_milter.ref14d2 \ cleanup_milter.reg14d cp test-queue-file14 test-queue-file14d.tmp chmod u+w test-queue-file14d.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref14d1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file14d.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref14d2 cleanup_milter.tmp2 rm -f test-queue-file14d.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 cleanup_milter_test14e: cleanup_milter test-queue-file14 cleanup_milter.in14e \ cleanup_milter.ref14e1 ../postcat/postcat cleanup_milter.ref14e2 \ cleanup_milter.reg14e cp test-queue-file14 test-queue-file14e.tmp chmod u+w test-queue-file14e.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref14e1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file14e.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref14e2 cleanup_milter.tmp2 rm -f test-queue-file14e.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 cleanup_milter_test14f: cleanup_milter test-queue-file14 cleanup_milter.in14f \ cleanup_milter.ref14f1 ../postcat/postcat cleanup_milter.ref14f2 \ cleanup_milter.reg14f cp test-queue-file14 test-queue-file14f.tmp chmod u+w test-queue-file14f.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref14f1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file14f.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref14f2 cleanup_milter.tmp2 rm -f test-queue-file14f.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 cleanup_milter_test14g: cleanup_milter test-queue-file14 cleanup_milter.in14g \ cleanup_milter.ref14g1 ../postcat/postcat cleanup_milter.ref14g2 \ cleanup_milter.reg14g cp test-queue-file14 test-queue-file14g.tmp chmod u+w test-queue-file14g.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref14g1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file14g.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref14g2 cleanup_milter.tmp2 rm -f test-queue-file14g.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 cleanup_milter_test15a: cleanup_milter test-queue-file15 cleanup_milter.in15a \ cleanup_milter.ref15a1 ../postcat/postcat cleanup_milter.ref15a2 \ cleanup_milter.reg15a cp test-queue-file15 test-queue-file15a.tmp chmod u+w test-queue-file15a.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref15a1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file15a.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref15a2 cleanup_milter.tmp2 rm -f test-queue-file15a.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 cleanup_milter_test15b: cleanup_milter test-queue-file15 cleanup_milter.in15b \ cleanup_milter.ref15b1 ../postcat/postcat cleanup_milter.ref15b2 \ cleanup_milter.reg15b cp test-queue-file15 test-queue-file15b.tmp chmod u+w test-queue-file15b.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref15b1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file15b.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref15b2 cleanup_milter.tmp2 rm -f test-queue-file15b.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 cleanup_milter_test15c: cleanup_milter test-queue-file15 cleanup_milter.in15c \ cleanup_milter.ref15c1 ../postcat/postcat cleanup_milter.ref15c2 \ cleanup_milter.reg15c cp test-queue-file15 test-queue-file15c.tmp chmod u+w test-queue-file15c.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref15c1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file15c.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref15c2 cleanup_milter.tmp2 rm -f test-queue-file15c.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 cleanup_milter_test15d: cleanup_milter test-queue-file15 cleanup_milter.in15d \ cleanup_milter.ref15d1 ../postcat/postcat cleanup_milter.ref15d2 \ cleanup_milter.reg15d cp test-queue-file15 test-queue-file15d.tmp chmod u+w test-queue-file15d.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref15d1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file15d.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref15d2 cleanup_milter.tmp2 rm -f test-queue-file15d.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 cleanup_milter_test15e: cleanup_milter test-queue-file15 cleanup_milter.in15e \ cleanup_milter.ref15e1 ../postcat/postcat cleanup_milter.ref15e2 \ cleanup_milter.reg15e cp test-queue-file15 test-queue-file15e.tmp chmod u+w test-queue-file15e.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref15e1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file15e.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref15e2 cleanup_milter.tmp2 rm -f test-queue-file15e.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 cleanup_milter_test15f: cleanup_milter test-queue-file15 cleanup_milter.in15f \ cleanup_milter.ref15f1 ../postcat/postcat cleanup_milter.ref15f2 \ cleanup_milter.reg15f cp test-queue-file15 test-queue-file15f.tmp chmod u+w test-queue-file15f.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref15f1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file15f.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref15f2 cleanup_milter.tmp2 rm -f test-queue-file15f.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 cleanup_milter_test15g: cleanup_milter test-queue-file15 cleanup_milter.in15g \ cleanup_milter.ref15g1 ../postcat/postcat cleanup_milter.ref15g2 \ cleanup_milter.reg15g cp test-queue-file15 test-queue-file15g.tmp chmod u+w test-queue-file15g.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref15g1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file15g.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref15g2 cleanup_milter.tmp2 rm -f test-queue-file15g.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 cleanup_milter_test15h: cleanup_milter test-queue-file15 cleanup_milter.in15h \ cleanup_milter.ref15h1 ../postcat/postcat cleanup_milter.ref15h2 \ cleanup_milter.reg15h cp test-queue-file15 test-queue-file15h.tmp chmod u+w test-queue-file15h.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref15h1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file15h.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref15h2 cleanup_milter.tmp2 rm -f test-queue-file15h.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 cleanup_milter_test15i: cleanup_milter test-queue-file15 cleanup_milter.in15i \ cleanup_milter.ref15i1 ../postcat/postcat cleanup_milter.ref15i2 \ cleanup_milter.reg15i cp test-queue-file15 test-queue-file15i.tmp chmod u+w test-queue-file15i.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref15i1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file15i.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref15i2 cleanup_milter.tmp2 rm -f test-queue-file15i.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 cleanup_milter_test16a: cleanup_milter test-queue-file16 cleanup_milter.in16a \ cleanup_milter.ref16a1 ../postcat/postcat cleanup_milter.ref16a2 cp test-queue-file16 test-queue-file16a.tmp chmod u+w test-queue-file16a.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref16a1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file16a.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref16a2 cleanup_milter.tmp2 rm -f test-queue-file16a.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 cleanup_milter_test16b: cleanup_milter test-queue-file16 cleanup_milter.in16b \ cleanup_milter.ref16b1 ../postcat/postcat cleanup_milter.ref16b2 cp test-queue-file16 test-queue-file16b.tmp chmod u+w test-queue-file16b.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref16b1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file16b.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref16b2 cleanup_milter.tmp2 rm -f test-queue-file16b.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 cleanup_milter_test17a: cleanup_milter test-queue-file17 cleanup_milter.in17a \ cleanup_milter.ref17a1 ../postcat/postcat cleanup_milter.ref17a2 cp test-queue-file17 test-queue-file17a.tmp chmod u+w test-queue-file17a.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref17a1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file17a.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref17a2 cleanup_milter.tmp2 rm -f test-queue-file17a.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 cleanup_milter_test17b: cleanup_milter test-queue-file17 cleanup_milter.in17b \ cleanup_milter.ref17b1 ../postcat/postcat cleanup_milter.ref17b2 cp test-queue-file17 test-queue-file17b.tmp chmod u+w test-queue-file17b.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref17b1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file17b.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref17b2 cleanup_milter.tmp2 rm -f test-queue-file17b.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 cleanup_milter_test17c: cleanup_milter test-queue-file17 cleanup_milter.in17c \ cleanup_milter.ref17c1 ../postcat/postcat cleanup_milter.ref17c2 cp test-queue-file17 test-queue-file17c.tmp chmod u+w test-queue-file17c.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref17c1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file17c.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref17c2 cleanup_milter.tmp2 rm -f test-queue-file17c.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 cleanup_milter_test17d: cleanup_milter test-queue-file17 cleanup_milter.in17d \ cleanup_milter.ref17d1 ../postcat/postcat cleanup_milter.ref17d2 cp test-queue-file17 test-queue-file17d.tmp chmod u+w test-queue-file17d.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref17d1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file17d.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref17d2 cleanup_milter.tmp2 rm -f test-queue-file17d.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 cleanup_milter_test17e: cleanup_milter test-queue-file17 cleanup_milter.in17e \ cleanup_milter.ref17e1 ../postcat/postcat cleanup_milter.ref17e2 cp test-queue-file17 test-queue-file17e.tmp chmod u+w test-queue-file17e.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref17e1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file17e.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref17e2 cleanup_milter.tmp2 rm -f test-queue-file17e.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 cleanup_milter_test17f: cleanup_milter test-queue-file17 cleanup_milter.in17f \ cleanup_milter.ref17f1 ../postcat/postcat cleanup_milter.ref17f2 cp test-queue-file17 test-queue-file17f.tmp chmod u+w test-queue-file17f.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref17f1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file17f.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref17f2 cleanup_milter.tmp2 rm -f test-queue-file17f.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 cleanup_milter_test17g: cleanup_milter test-queue-file17 cleanup_milter.in17g \ cleanup_milter.ref17g1 ../postcat/postcat cleanup_milter.ref17g2 cp test-queue-file17 test-queue-file17g.tmp chmod u+w test-queue-file17g.tmp $(SHLIB_ENV) $(VALGRIND) ./cleanup_milter cleanup_milter.tmp1 diff cleanup_milter.ref17g1 cleanup_milter.tmp1 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file17g.tmp 2>/dev/null >cleanup_milter.tmp2 diff cleanup_milter.ref17g2 cleanup_milter.tmp2 rm -f test-queue-file17g.tmp cleanup_milter.tmp1 cleanup_milter.tmp2 depend: $(MAKES) (sed '1,/^# do not edit/!d' Makefile.in; \ set -e; for i in [a-z][a-z0-9]*.c; do \ $(CC) -E $(DEFS) $(INCL) $$i | grep -v '[<>]' | sed -n -e '/^# *1 *"\([^"]*\)".*/{' \ -e 's//'`echo $$i|sed 's/c$$/o/'`': \1/' \ -e 's/o: \.\//o: /' -e p -e '}' ; \ done | LANG=C sort -u) | grep -v '[.][o][:][ ][/]' >$$$$ && mv $$$$ Makefile.in @$(EXPORT) make -f Makefile.in Makefile 1>&2 # do not edit below this line - it is generated by 'make depend' cleanup.o: ../../include/argv.h cleanup.o: ../../include/attr.h cleanup.o: ../../include/been_here.h cleanup.o: ../../include/check_arg.h cleanup.o: ../../include/cleanup_user.h cleanup.o: ../../include/dict.h cleanup.o: ../../include/dsn_mask.h cleanup.o: ../../include/header_body_checks.h cleanup.o: ../../include/header_opts.h cleanup.o: ../../include/htable.h cleanup.o: ../../include/iostuff.h cleanup.o: ../../include/mail_conf.h cleanup.o: ../../include/mail_params.h cleanup.o: ../../include/mail_proto.h cleanup.o: ../../include/mail_server.h cleanup.o: ../../include/mail_stream.h cleanup.o: ../../include/mail_version.h cleanup.o: ../../include/maps.h cleanup.o: ../../include/match_list.h cleanup.o: ../../include/milter.h cleanup.o: ../../include/mime_state.h cleanup.o: ../../include/msg.h cleanup.o: ../../include/myflock.h cleanup.o: ../../include/mymalloc.h cleanup.o: ../../include/nvtable.h cleanup.o: ../../include/rec_type.h cleanup.o: ../../include/record.h cleanup.o: ../../include/resolve_clnt.h cleanup.o: ../../include/string_list.h cleanup.o: ../../include/sys_defs.h cleanup.o: ../../include/tok822.h cleanup.o: ../../include/vbuf.h cleanup.o: ../../include/vstream.h cleanup.o: ../../include/vstring.h cleanup.o: cleanup.c cleanup.o: cleanup.h cleanup_addr.o: ../../include/argv.h cleanup_addr.o: ../../include/attr.h cleanup_addr.o: ../../include/been_here.h cleanup_addr.o: ../../include/canon_addr.h cleanup_addr.o: ../../include/check_arg.h cleanup_addr.o: ../../include/cleanup_user.h cleanup_addr.o: ../../include/dict.h cleanup_addr.o: ../../include/dsn_mask.h cleanup_addr.o: ../../include/ext_prop.h cleanup_addr.o: ../../include/header_body_checks.h cleanup_addr.o: ../../include/header_opts.h cleanup_addr.o: ../../include/htable.h cleanup_addr.o: ../../include/iostuff.h cleanup_addr.o: ../../include/mail_addr.h cleanup_addr.o: ../../include/mail_addr_find.h cleanup_addr.o: ../../include/mail_addr_form.h cleanup_addr.o: ../../include/mail_conf.h cleanup_addr.o: ../../include/mail_params.h cleanup_addr.o: ../../include/mail_proto.h cleanup_addr.o: ../../include/mail_stream.h cleanup_addr.o: ../../include/maps.h cleanup_addr.o: ../../include/match_list.h cleanup_addr.o: ../../include/milter.h cleanup_addr.o: ../../include/mime_state.h cleanup_addr.o: ../../include/msg.h cleanup_addr.o: ../../include/myflock.h cleanup_addr.o: ../../include/mymalloc.h cleanup_addr.o: ../../include/nvtable.h cleanup_addr.o: ../../include/rec_type.h cleanup_addr.o: ../../include/record.h cleanup_addr.o: ../../include/resolve_clnt.h cleanup_addr.o: ../../include/smtputf8.h cleanup_addr.o: ../../include/string_list.h cleanup_addr.o: ../../include/stringops.h cleanup_addr.o: ../../include/sys_defs.h cleanup_addr.o: ../../include/tok822.h cleanup_addr.o: ../../include/vbuf.h cleanup_addr.o: ../../include/vstream.h cleanup_addr.o: ../../include/vstring.h cleanup_addr.o: cleanup.h cleanup_addr.o: cleanup_addr.c cleanup_api.o: ../../include/argv.h cleanup_api.o: ../../include/attr.h cleanup_api.o: ../../include/been_here.h cleanup_api.o: ../../include/bounce.h cleanup_api.o: ../../include/check_arg.h cleanup_api.o: ../../include/cleanup_user.h cleanup_api.o: ../../include/deliver_request.h cleanup_api.o: ../../include/dict.h cleanup_api.o: ../../include/dsn.h cleanup_api.o: ../../include/dsn_buf.h cleanup_api.o: ../../include/dsn_mask.h cleanup_api.o: ../../include/header_body_checks.h cleanup_api.o: ../../include/header_opts.h cleanup_api.o: ../../include/htable.h cleanup_api.o: ../../include/iostuff.h cleanup_api.o: ../../include/mail_conf.h cleanup_api.o: ../../include/mail_flow.h cleanup_api.o: ../../include/mail_params.h cleanup_api.o: ../../include/mail_proto.h cleanup_api.o: ../../include/mail_queue.h cleanup_api.o: ../../include/mail_stream.h cleanup_api.o: ../../include/maps.h cleanup_api.o: ../../include/match_list.h cleanup_api.o: ../../include/milter.h cleanup_api.o: ../../include/mime_state.h cleanup_api.o: ../../include/msg.h cleanup_api.o: ../../include/msg_stats.h cleanup_api.o: ../../include/myflock.h cleanup_api.o: ../../include/mymalloc.h cleanup_api.o: ../../include/nvtable.h cleanup_api.o: ../../include/rec_type.h cleanup_api.o: ../../include/recipient_list.h cleanup_api.o: ../../include/resolve_clnt.h cleanup_api.o: ../../include/smtputf8.h cleanup_api.o: ../../include/string_list.h cleanup_api.o: ../../include/sys_defs.h cleanup_api.o: ../../include/tok822.h cleanup_api.o: ../../include/vbuf.h cleanup_api.o: ../../include/vstream.h cleanup_api.o: ../../include/vstring.h cleanup_api.o: cleanup.h cleanup_api.o: cleanup_api.c cleanup_body_edit.o: ../../include/argv.h cleanup_body_edit.o: ../../include/attr.h cleanup_body_edit.o: ../../include/been_here.h cleanup_body_edit.o: ../../include/check_arg.h cleanup_body_edit.o: ../../include/cleanup_user.h cleanup_body_edit.o: ../../include/dict.h cleanup_body_edit.o: ../../include/dsn_mask.h cleanup_body_edit.o: ../../include/header_body_checks.h cleanup_body_edit.o: ../../include/header_opts.h cleanup_body_edit.o: ../../include/htable.h cleanup_body_edit.o: ../../include/mail_conf.h cleanup_body_edit.o: ../../include/mail_stream.h cleanup_body_edit.o: ../../include/maps.h cleanup_body_edit.o: ../../include/match_list.h cleanup_body_edit.o: ../../include/milter.h cleanup_body_edit.o: ../../include/mime_state.h cleanup_body_edit.o: ../../include/msg.h cleanup_body_edit.o: ../../include/myflock.h cleanup_body_edit.o: ../../include/mymalloc.h cleanup_body_edit.o: ../../include/nvtable.h cleanup_body_edit.o: ../../include/rec_type.h cleanup_body_edit.o: ../../include/record.h cleanup_body_edit.o: ../../include/resolve_clnt.h cleanup_body_edit.o: ../../include/string_list.h cleanup_body_edit.o: ../../include/sys_defs.h cleanup_body_edit.o: ../../include/tok822.h cleanup_body_edit.o: ../../include/vbuf.h cleanup_body_edit.o: ../../include/vstream.h cleanup_body_edit.o: ../../include/vstring.h cleanup_body_edit.o: cleanup.h cleanup_body_edit.o: cleanup_body_edit.c cleanup_bounce.o: ../../include/argv.h cleanup_bounce.o: ../../include/attr.h cleanup_bounce.o: ../../include/been_here.h cleanup_bounce.o: ../../include/bounce.h cleanup_bounce.o: ../../include/check_arg.h cleanup_bounce.o: ../../include/cleanup_user.h cleanup_bounce.o: ../../include/deliver_request.h cleanup_bounce.o: ../../include/dict.h cleanup_bounce.o: ../../include/dsn.h cleanup_bounce.o: ../../include/dsn_buf.h cleanup_bounce.o: ../../include/dsn_mask.h cleanup_bounce.o: ../../include/dsn_util.h cleanup_bounce.o: ../../include/header_body_checks.h cleanup_bounce.o: ../../include/header_opts.h cleanup_bounce.o: ../../include/htable.h cleanup_bounce.o: ../../include/iostuff.h cleanup_bounce.o: ../../include/mail_conf.h cleanup_bounce.o: ../../include/mail_params.h cleanup_bounce.o: ../../include/mail_proto.h cleanup_bounce.o: ../../include/mail_queue.h cleanup_bounce.o: ../../include/mail_stream.h cleanup_bounce.o: ../../include/maps.h cleanup_bounce.o: ../../include/match_list.h cleanup_bounce.o: ../../include/milter.h cleanup_bounce.o: ../../include/mime_state.h cleanup_bounce.o: ../../include/msg.h cleanup_bounce.o: ../../include/msg_stats.h cleanup_bounce.o: ../../include/myflock.h cleanup_bounce.o: ../../include/mymalloc.h cleanup_bounce.o: ../../include/nvtable.h cleanup_bounce.o: ../../include/rec_attr_map.h cleanup_bounce.o: ../../include/rec_type.h cleanup_bounce.o: ../../include/recipient_list.h cleanup_bounce.o: ../../include/record.h cleanup_bounce.o: ../../include/resolve_clnt.h cleanup_bounce.o: ../../include/string_list.h cleanup_bounce.o: ../../include/stringops.h cleanup_bounce.o: ../../include/sys_defs.h cleanup_bounce.o: ../../include/tok822.h cleanup_bounce.o: ../../include/vbuf.h cleanup_bounce.o: ../../include/vstream.h cleanup_bounce.o: ../../include/vstring.h cleanup_bounce.o: cleanup.h cleanup_bounce.o: cleanup_bounce.c cleanup_envelope.o: ../../include/argv.h cleanup_envelope.o: ../../include/attr.h cleanup_envelope.o: ../../include/been_here.h cleanup_envelope.o: ../../include/check_arg.h cleanup_envelope.o: ../../include/cleanup_user.h cleanup_envelope.o: ../../include/deliver_request.h cleanup_envelope.o: ../../include/dict.h cleanup_envelope.o: ../../include/dsn.h cleanup_envelope.o: ../../include/dsn_mask.h cleanup_envelope.o: ../../include/header_body_checks.h cleanup_envelope.o: ../../include/header_opts.h cleanup_envelope.o: ../../include/htable.h cleanup_envelope.o: ../../include/iostuff.h cleanup_envelope.o: ../../include/mail_conf.h cleanup_envelope.o: ../../include/mail_params.h cleanup_envelope.o: ../../include/mail_proto.h cleanup_envelope.o: ../../include/mail_stream.h cleanup_envelope.o: ../../include/maps.h cleanup_envelope.o: ../../include/match_list.h cleanup_envelope.o: ../../include/milter.h cleanup_envelope.o: ../../include/mime_state.h cleanup_envelope.o: ../../include/msg.h cleanup_envelope.o: ../../include/msg_stats.h cleanup_envelope.o: ../../include/myflock.h cleanup_envelope.o: ../../include/mymalloc.h cleanup_envelope.o: ../../include/nvtable.h cleanup_envelope.o: ../../include/qmgr_user.h cleanup_envelope.o: ../../include/rec_attr_map.h cleanup_envelope.o: ../../include/rec_type.h cleanup_envelope.o: ../../include/recipient_list.h cleanup_envelope.o: ../../include/record.h cleanup_envelope.o: ../../include/resolve_clnt.h cleanup_envelope.o: ../../include/smtputf8.h cleanup_envelope.o: ../../include/string_list.h cleanup_envelope.o: ../../include/stringops.h cleanup_envelope.o: ../../include/sys_defs.h cleanup_envelope.o: ../../include/tok822.h cleanup_envelope.o: ../../include/vbuf.h cleanup_envelope.o: ../../include/verp_sender.h cleanup_envelope.o: ../../include/vstream.h cleanup_envelope.o: ../../include/vstring.h cleanup_envelope.o: cleanup.h cleanup_envelope.o: cleanup_envelope.c cleanup_extracted.o: ../../include/argv.h cleanup_extracted.o: ../../include/attr.h cleanup_extracted.o: ../../include/been_here.h cleanup_extracted.o: ../../include/check_arg.h cleanup_extracted.o: ../../include/cleanup_user.h cleanup_extracted.o: ../../include/dict.h cleanup_extracted.o: ../../include/dsn_mask.h cleanup_extracted.o: ../../include/header_body_checks.h cleanup_extracted.o: ../../include/header_opts.h cleanup_extracted.o: ../../include/htable.h cleanup_extracted.o: ../../include/iostuff.h cleanup_extracted.o: ../../include/mail_conf.h cleanup_extracted.o: ../../include/mail_params.h cleanup_extracted.o: ../../include/mail_proto.h cleanup_extracted.o: ../../include/mail_stream.h cleanup_extracted.o: ../../include/maps.h cleanup_extracted.o: ../../include/match_list.h cleanup_extracted.o: ../../include/milter.h cleanup_extracted.o: ../../include/mime_state.h cleanup_extracted.o: ../../include/msg.h cleanup_extracted.o: ../../include/myflock.h cleanup_extracted.o: ../../include/mymalloc.h cleanup_extracted.o: ../../include/nvtable.h cleanup_extracted.o: ../../include/qmgr_user.h cleanup_extracted.o: ../../include/rec_attr_map.h cleanup_extracted.o: ../../include/rec_type.h cleanup_extracted.o: ../../include/record.h cleanup_extracted.o: ../../include/resolve_clnt.h cleanup_extracted.o: ../../include/string_list.h cleanup_extracted.o: ../../include/stringops.h cleanup_extracted.o: ../../include/sys_defs.h cleanup_extracted.o: ../../include/tok822.h cleanup_extracted.o: ../../include/vbuf.h cleanup_extracted.o: ../../include/vstream.h cleanup_extracted.o: ../../include/vstring.h cleanup_extracted.o: cleanup.h cleanup_extracted.o: cleanup_extracted.c cleanup_final.o: ../../include/argv.h cleanup_final.o: ../../include/attr.h cleanup_final.o: ../../include/been_here.h cleanup_final.o: ../../include/check_arg.h cleanup_final.o: ../../include/cleanup_user.h cleanup_final.o: ../../include/dict.h cleanup_final.o: ../../include/dsn_mask.h cleanup_final.o: ../../include/header_body_checks.h cleanup_final.o: ../../include/header_opts.h cleanup_final.o: ../../include/htable.h cleanup_final.o: ../../include/mail_conf.h cleanup_final.o: ../../include/mail_stream.h cleanup_final.o: ../../include/maps.h cleanup_final.o: ../../include/match_list.h cleanup_final.o: ../../include/milter.h cleanup_final.o: ../../include/mime_state.h cleanup_final.o: ../../include/msg.h cleanup_final.o: ../../include/myflock.h cleanup_final.o: ../../include/mymalloc.h cleanup_final.o: ../../include/nvtable.h cleanup_final.o: ../../include/rec_type.h cleanup_final.o: ../../include/resolve_clnt.h cleanup_final.o: ../../include/string_list.h cleanup_final.o: ../../include/sys_defs.h cleanup_final.o: ../../include/tok822.h cleanup_final.o: ../../include/vbuf.h cleanup_final.o: ../../include/vstream.h cleanup_final.o: ../../include/vstring.h cleanup_final.o: cleanup.h cleanup_final.o: cleanup_final.c cleanup_init.o: ../../include/argv.h cleanup_init.o: ../../include/attr.h cleanup_init.o: ../../include/been_here.h cleanup_init.o: ../../include/check_arg.h cleanup_init.o: ../../include/cleanup_user.h cleanup_init.o: ../../include/dict.h cleanup_init.o: ../../include/dsn_mask.h cleanup_init.o: ../../include/ext_prop.h cleanup_init.o: ../../include/flush_clnt.h cleanup_init.o: ../../include/header_body_checks.h cleanup_init.o: ../../include/header_opts.h cleanup_init.o: ../../include/hfrom_format.h cleanup_init.o: ../../include/htable.h cleanup_init.o: ../../include/iostuff.h cleanup_init.o: ../../include/mail_addr.h cleanup_init.o: ../../include/mail_conf.h cleanup_init.o: ../../include/mail_params.h cleanup_init.o: ../../include/mail_stream.h cleanup_init.o: ../../include/mail_version.h cleanup_init.o: ../../include/maps.h cleanup_init.o: ../../include/match_list.h cleanup_init.o: ../../include/milter.h cleanup_init.o: ../../include/mime_state.h cleanup_init.o: ../../include/msg.h cleanup_init.o: ../../include/myflock.h cleanup_init.o: ../../include/mymalloc.h cleanup_init.o: ../../include/name_code.h cleanup_init.o: ../../include/name_mask.h cleanup_init.o: ../../include/nvtable.h cleanup_init.o: ../../include/resolve_clnt.h cleanup_init.o: ../../include/string_list.h cleanup_init.o: ../../include/stringops.h cleanup_init.o: ../../include/sys_defs.h cleanup_init.o: ../../include/tok822.h cleanup_init.o: ../../include/vbuf.h cleanup_init.o: ../../include/vstream.h cleanup_init.o: ../../include/vstring.h cleanup_init.o: cleanup.h cleanup_init.o: cleanup_init.c cleanup_map11.o: ../../include/argv.h cleanup_map11.o: ../../include/attr.h cleanup_map11.o: ../../include/been_here.h cleanup_map11.o: ../../include/check_arg.h cleanup_map11.o: ../../include/cleanup_user.h cleanup_map11.o: ../../include/dict.h cleanup_map11.o: ../../include/dsn_mask.h cleanup_map11.o: ../../include/header_body_checks.h cleanup_map11.o: ../../include/header_opts.h cleanup_map11.o: ../../include/htable.h cleanup_map11.o: ../../include/mail_addr_form.h cleanup_map11.o: ../../include/mail_addr_map.h cleanup_map11.o: ../../include/mail_conf.h cleanup_map11.o: ../../include/mail_stream.h cleanup_map11.o: ../../include/maps.h cleanup_map11.o: ../../include/match_list.h cleanup_map11.o: ../../include/milter.h cleanup_map11.o: ../../include/mime_state.h cleanup_map11.o: ../../include/msg.h cleanup_map11.o: ../../include/myflock.h cleanup_map11.o: ../../include/mymalloc.h cleanup_map11.o: ../../include/nvtable.h cleanup_map11.o: ../../include/quote_822_local.h cleanup_map11.o: ../../include/quote_flags.h cleanup_map11.o: ../../include/resolve_clnt.h cleanup_map11.o: ../../include/string_list.h cleanup_map11.o: ../../include/stringops.h cleanup_map11.o: ../../include/sys_defs.h cleanup_map11.o: ../../include/tok822.h cleanup_map11.o: ../../include/vbuf.h cleanup_map11.o: ../../include/vstream.h cleanup_map11.o: ../../include/vstring.h cleanup_map11.o: cleanup.h cleanup_map11.o: cleanup_map11.c cleanup_map1n.o: ../../include/argv.h cleanup_map1n.o: ../../include/attr.h cleanup_map1n.o: ../../include/been_here.h cleanup_map1n.o: ../../include/check_arg.h cleanup_map1n.o: ../../include/cleanup_user.h cleanup_map1n.o: ../../include/dict.h cleanup_map1n.o: ../../include/dsn_mask.h cleanup_map1n.o: ../../include/header_body_checks.h cleanup_map1n.o: ../../include/header_opts.h cleanup_map1n.o: ../../include/htable.h cleanup_map1n.o: ../../include/mail_addr_form.h cleanup_map1n.o: ../../include/mail_addr_map.h cleanup_map1n.o: ../../include/mail_conf.h cleanup_map1n.o: ../../include/mail_params.h cleanup_map1n.o: ../../include/mail_stream.h cleanup_map1n.o: ../../include/maps.h cleanup_map1n.o: ../../include/match_list.h cleanup_map1n.o: ../../include/milter.h cleanup_map1n.o: ../../include/mime_state.h cleanup_map1n.o: ../../include/msg.h cleanup_map1n.o: ../../include/myflock.h cleanup_map1n.o: ../../include/mymalloc.h cleanup_map1n.o: ../../include/nvtable.h cleanup_map1n.o: ../../include/quote_822_local.h cleanup_map1n.o: ../../include/quote_flags.h cleanup_map1n.o: ../../include/resolve_clnt.h cleanup_map1n.o: ../../include/string_list.h cleanup_map1n.o: ../../include/stringops.h cleanup_map1n.o: ../../include/sys_defs.h cleanup_map1n.o: ../../include/tok822.h cleanup_map1n.o: ../../include/vbuf.h cleanup_map1n.o: ../../include/vstream.h cleanup_map1n.o: ../../include/vstring.h cleanup_map1n.o: cleanup.h cleanup_map1n.o: cleanup_map1n.c cleanup_masquerade.o: ../../include/argv.h cleanup_masquerade.o: ../../include/attr.h cleanup_masquerade.o: ../../include/been_here.h cleanup_masquerade.o: ../../include/check_arg.h cleanup_masquerade.o: ../../include/cleanup_user.h cleanup_masquerade.o: ../../include/dict.h cleanup_masquerade.o: ../../include/dsn_mask.h cleanup_masquerade.o: ../../include/header_body_checks.h cleanup_masquerade.o: ../../include/header_opts.h cleanup_masquerade.o: ../../include/htable.h cleanup_masquerade.o: ../../include/mail_conf.h cleanup_masquerade.o: ../../include/mail_params.h cleanup_masquerade.o: ../../include/mail_stream.h cleanup_masquerade.o: ../../include/maps.h cleanup_masquerade.o: ../../include/match_list.h cleanup_masquerade.o: ../../include/milter.h cleanup_masquerade.o: ../../include/mime_state.h cleanup_masquerade.o: ../../include/msg.h cleanup_masquerade.o: ../../include/myflock.h cleanup_masquerade.o: ../../include/mymalloc.h cleanup_masquerade.o: ../../include/nvtable.h cleanup_masquerade.o: ../../include/quote_822_local.h cleanup_masquerade.o: ../../include/quote_flags.h cleanup_masquerade.o: ../../include/resolve_clnt.h cleanup_masquerade.o: ../../include/string_list.h cleanup_masquerade.o: ../../include/stringops.h cleanup_masquerade.o: ../../include/sys_defs.h cleanup_masquerade.o: ../../include/tok822.h cleanup_masquerade.o: ../../include/vbuf.h cleanup_masquerade.o: ../../include/vstream.h cleanup_masquerade.o: ../../include/vstring.h cleanup_masquerade.o: cleanup.h cleanup_masquerade.o: cleanup_masquerade.c cleanup_message.o: ../../include/argv.h cleanup_message.o: ../../include/attr.h cleanup_message.o: ../../include/been_here.h cleanup_message.o: ../../include/check_arg.h cleanup_message.o: ../../include/cleanup_user.h cleanup_message.o: ../../include/conv_time.h cleanup_message.o: ../../include/dict.h cleanup_message.o: ../../include/dsn_mask.h cleanup_message.o: ../../include/dsn_util.h cleanup_message.o: ../../include/ext_prop.h cleanup_message.o: ../../include/header_body_checks.h cleanup_message.o: ../../include/header_opts.h cleanup_message.o: ../../include/hfrom_format.h cleanup_message.o: ../../include/htable.h cleanup_message.o: ../../include/info_log_addr_form.h cleanup_message.o: ../../include/iostuff.h cleanup_message.o: ../../include/is_header.h cleanup_message.o: ../../include/lex_822.h cleanup_message.o: ../../include/mail_addr.h cleanup_message.o: ../../include/mail_conf.h cleanup_message.o: ../../include/mail_date.h cleanup_message.o: ../../include/mail_params.h cleanup_message.o: ../../include/mail_proto.h cleanup_message.o: ../../include/mail_stream.h cleanup_message.o: ../../include/maps.h cleanup_message.o: ../../include/match_list.h cleanup_message.o: ../../include/milter.h cleanup_message.o: ../../include/mime_state.h cleanup_message.o: ../../include/msg.h cleanup_message.o: ../../include/myflock.h cleanup_message.o: ../../include/mymalloc.h cleanup_message.o: ../../include/nvtable.h cleanup_message.o: ../../include/quote_822_local.h cleanup_message.o: ../../include/quote_flags.h cleanup_message.o: ../../include/rec_type.h cleanup_message.o: ../../include/record.h cleanup_message.o: ../../include/resolve_clnt.h cleanup_message.o: ../../include/split_at.h cleanup_message.o: ../../include/string_list.h cleanup_message.o: ../../include/stringops.h cleanup_message.o: ../../include/sys_defs.h cleanup_message.o: ../../include/tok822.h cleanup_message.o: ../../include/vbuf.h cleanup_message.o: ../../include/vstream.h cleanup_message.o: ../../include/vstring.h cleanup_message.o: cleanup.h cleanup_message.o: cleanup_message.c cleanup_milter.o: ../../include/argv.h cleanup_milter.o: ../../include/attr.h cleanup_milter.o: ../../include/been_here.h cleanup_milter.o: ../../include/check_arg.h cleanup_milter.o: ../../include/cleanup_user.h cleanup_milter.o: ../../include/dict.h cleanup_milter.o: ../../include/dsn_mask.h cleanup_milter.o: ../../include/dsn_util.h cleanup_milter.o: ../../include/header_body_checks.h cleanup_milter.o: ../../include/header_opts.h cleanup_milter.o: ../../include/htable.h cleanup_milter.o: ../../include/inet_proto.h cleanup_milter.o: ../../include/info_log_addr_form.h cleanup_milter.o: ../../include/iostuff.h cleanup_milter.o: ../../include/is_header.h cleanup_milter.o: ../../include/lex_822.h cleanup_milter.o: ../../include/mail_conf.h cleanup_milter.o: ../../include/mail_params.h cleanup_milter.o: ../../include/mail_proto.h cleanup_milter.o: ../../include/mail_stream.h cleanup_milter.o: ../../include/maps.h cleanup_milter.o: ../../include/match_list.h cleanup_milter.o: ../../include/milter.h cleanup_milter.o: ../../include/mime_state.h cleanup_milter.o: ../../include/msg.h cleanup_milter.o: ../../include/myflock.h cleanup_milter.o: ../../include/mymalloc.h cleanup_milter.o: ../../include/nvtable.h cleanup_milter.o: ../../include/off_cvt.h cleanup_milter.o: ../../include/quote_821_local.h cleanup_milter.o: ../../include/quote_flags.h cleanup_milter.o: ../../include/rec_attr_map.h cleanup_milter.o: ../../include/rec_type.h cleanup_milter.o: ../../include/record.h cleanup_milter.o: ../../include/resolve_clnt.h cleanup_milter.o: ../../include/string_list.h cleanup_milter.o: ../../include/stringops.h cleanup_milter.o: ../../include/sys_defs.h cleanup_milter.o: ../../include/tok822.h cleanup_milter.o: ../../include/vbuf.h cleanup_milter.o: ../../include/vstream.h cleanup_milter.o: ../../include/vstring.h cleanup_milter.o: ../../include/xtext.h cleanup_milter.o: cleanup.h cleanup_milter.o: cleanup_milter.c cleanup_out.o: ../../include/argv.h cleanup_out.o: ../../include/attr.h cleanup_out.o: ../../include/been_here.h cleanup_out.o: ../../include/check_arg.h cleanup_out.o: ../../include/cleanup_user.h cleanup_out.o: ../../include/dict.h cleanup_out.o: ../../include/dsn_mask.h cleanup_out.o: ../../include/header_body_checks.h cleanup_out.o: ../../include/header_opts.h cleanup_out.o: ../../include/htable.h cleanup_out.o: ../../include/lex_822.h cleanup_out.o: ../../include/mail_conf.h cleanup_out.o: ../../include/mail_params.h cleanup_out.o: ../../include/mail_stream.h cleanup_out.o: ../../include/maps.h cleanup_out.o: ../../include/match_list.h cleanup_out.o: ../../include/milter.h cleanup_out.o: ../../include/mime_state.h cleanup_out.o: ../../include/msg.h cleanup_out.o: ../../include/myflock.h cleanup_out.o: ../../include/mymalloc.h cleanup_out.o: ../../include/nvtable.h cleanup_out.o: ../../include/rec_type.h cleanup_out.o: ../../include/record.h cleanup_out.o: ../../include/resolve_clnt.h cleanup_out.o: ../../include/smtputf8.h cleanup_out.o: ../../include/split_at.h cleanup_out.o: ../../include/string_list.h cleanup_out.o: ../../include/stringops.h cleanup_out.o: ../../include/sys_defs.h cleanup_out.o: ../../include/tok822.h cleanup_out.o: ../../include/vbuf.h cleanup_out.o: ../../include/vstream.h cleanup_out.o: ../../include/vstring.h cleanup_out.o: cleanup.h cleanup_out.o: cleanup_out.c cleanup_out_recipient.o: ../../include/argv.h cleanup_out_recipient.o: ../../include/attr.h cleanup_out_recipient.o: ../../include/been_here.h cleanup_out_recipient.o: ../../include/bounce.h cleanup_out_recipient.o: ../../include/check_arg.h cleanup_out_recipient.o: ../../include/cleanup_user.h cleanup_out_recipient.o: ../../include/deliver_request.h cleanup_out_recipient.o: ../../include/dict.h cleanup_out_recipient.o: ../../include/dsn.h cleanup_out_recipient.o: ../../include/dsn_buf.h cleanup_out_recipient.o: ../../include/dsn_mask.h cleanup_out_recipient.o: ../../include/ext_prop.h cleanup_out_recipient.o: ../../include/header_body_checks.h cleanup_out_recipient.o: ../../include/header_opts.h cleanup_out_recipient.o: ../../include/htable.h cleanup_out_recipient.o: ../../include/iostuff.h cleanup_out_recipient.o: ../../include/mail_conf.h cleanup_out_recipient.o: ../../include/mail_params.h cleanup_out_recipient.o: ../../include/mail_proto.h cleanup_out_recipient.o: ../../include/mail_queue.h cleanup_out_recipient.o: ../../include/mail_stream.h cleanup_out_recipient.o: ../../include/maps.h cleanup_out_recipient.o: ../../include/match_list.h cleanup_out_recipient.o: ../../include/milter.h cleanup_out_recipient.o: ../../include/mime_state.h cleanup_out_recipient.o: ../../include/msg.h cleanup_out_recipient.o: ../../include/msg_stats.h cleanup_out_recipient.o: ../../include/myflock.h cleanup_out_recipient.o: ../../include/mymalloc.h cleanup_out_recipient.o: ../../include/nvtable.h cleanup_out_recipient.o: ../../include/rec_type.h cleanup_out_recipient.o: ../../include/recipient_list.h cleanup_out_recipient.o: ../../include/resolve_clnt.h cleanup_out_recipient.o: ../../include/string_list.h cleanup_out_recipient.o: ../../include/sys_defs.h cleanup_out_recipient.o: ../../include/tok822.h cleanup_out_recipient.o: ../../include/trace.h cleanup_out_recipient.o: ../../include/vbuf.h cleanup_out_recipient.o: ../../include/verify.h cleanup_out_recipient.o: ../../include/vstream.h cleanup_out_recipient.o: ../../include/vstring.h cleanup_out_recipient.o: cleanup.h cleanup_out_recipient.o: cleanup_out_recipient.c cleanup_region.o: ../../include/argv.h cleanup_region.o: ../../include/attr.h cleanup_region.o: ../../include/been_here.h cleanup_region.o: ../../include/check_arg.h cleanup_region.o: ../../include/cleanup_user.h cleanup_region.o: ../../include/dict.h cleanup_region.o: ../../include/dsn_mask.h cleanup_region.o: ../../include/header_body_checks.h cleanup_region.o: ../../include/header_opts.h cleanup_region.o: ../../include/htable.h cleanup_region.o: ../../include/mail_conf.h cleanup_region.o: ../../include/mail_stream.h cleanup_region.o: ../../include/maps.h cleanup_region.o: ../../include/match_list.h cleanup_region.o: ../../include/milter.h cleanup_region.o: ../../include/mime_state.h cleanup_region.o: ../../include/msg.h cleanup_region.o: ../../include/myflock.h cleanup_region.o: ../../include/mymalloc.h cleanup_region.o: ../../include/nvtable.h cleanup_region.o: ../../include/resolve_clnt.h cleanup_region.o: ../../include/string_list.h cleanup_region.o: ../../include/sys_defs.h cleanup_region.o: ../../include/tok822.h cleanup_region.o: ../../include/vbuf.h cleanup_region.o: ../../include/vstream.h cleanup_region.o: ../../include/vstring.h cleanup_region.o: ../../include/warn_stat.h cleanup_region.o: cleanup.h cleanup_region.o: cleanup_region.c cleanup_rewrite.o: ../../include/argv.h cleanup_rewrite.o: ../../include/attr.h cleanup_rewrite.o: ../../include/been_here.h cleanup_rewrite.o: ../../include/check_arg.h cleanup_rewrite.o: ../../include/cleanup_user.h cleanup_rewrite.o: ../../include/dict.h cleanup_rewrite.o: ../../include/dsn_mask.h cleanup_rewrite.o: ../../include/header_body_checks.h cleanup_rewrite.o: ../../include/header_opts.h cleanup_rewrite.o: ../../include/htable.h cleanup_rewrite.o: ../../include/iostuff.h cleanup_rewrite.o: ../../include/mail_conf.h cleanup_rewrite.o: ../../include/mail_proto.h cleanup_rewrite.o: ../../include/mail_stream.h cleanup_rewrite.o: ../../include/maps.h cleanup_rewrite.o: ../../include/match_list.h cleanup_rewrite.o: ../../include/milter.h cleanup_rewrite.o: ../../include/mime_state.h cleanup_rewrite.o: ../../include/msg.h cleanup_rewrite.o: ../../include/myflock.h cleanup_rewrite.o: ../../include/mymalloc.h cleanup_rewrite.o: ../../include/nvtable.h cleanup_rewrite.o: ../../include/quote_822_local.h cleanup_rewrite.o: ../../include/quote_flags.h cleanup_rewrite.o: ../../include/resolve_clnt.h cleanup_rewrite.o: ../../include/rewrite_clnt.h cleanup_rewrite.o: ../../include/string_list.h cleanup_rewrite.o: ../../include/sys_defs.h cleanup_rewrite.o: ../../include/tok822.h cleanup_rewrite.o: ../../include/vbuf.h cleanup_rewrite.o: ../../include/vstream.h cleanup_rewrite.o: ../../include/vstring.h cleanup_rewrite.o: cleanup.h cleanup_rewrite.o: cleanup_rewrite.c cleanup_state.o: ../../include/argv.h cleanup_state.o: ../../include/attr.h cleanup_state.o: ../../include/been_here.h cleanup_state.o: ../../include/check_arg.h cleanup_state.o: ../../include/cleanup_user.h cleanup_state.o: ../../include/dict.h cleanup_state.o: ../../include/dsn_mask.h cleanup_state.o: ../../include/header_body_checks.h cleanup_state.o: ../../include/header_opts.h cleanup_state.o: ../../include/htable.h cleanup_state.o: ../../include/iostuff.h cleanup_state.o: ../../include/mail_conf.h cleanup_state.o: ../../include/mail_params.h cleanup_state.o: ../../include/mail_proto.h cleanup_state.o: ../../include/mail_stream.h cleanup_state.o: ../../include/maps.h cleanup_state.o: ../../include/match_list.h cleanup_state.o: ../../include/milter.h cleanup_state.o: ../../include/mime_state.h cleanup_state.o: ../../include/myflock.h cleanup_state.o: ../../include/mymalloc.h cleanup_state.o: ../../include/nvtable.h cleanup_state.o: ../../include/resolve_clnt.h cleanup_state.o: ../../include/string_list.h cleanup_state.o: ../../include/sys_defs.h cleanup_state.o: ../../include/tok822.h cleanup_state.o: ../../include/vbuf.h cleanup_state.o: ../../include/vstream.h cleanup_state.o: ../../include/vstring.h cleanup_state.o: cleanup.h cleanup_state.o: cleanup_state.c