masqmail-0.2

view src/Makefile.am @ 171:349518b940db

added support for STARTTLS wrappers added the route config option `instant_helo' which causes masqmail, as SMTP client, not to wait for the server's 220 greeting. Instead if says EHLO right at once. You'll need this for STARTTLS wrappers that usually eat the greeting line.
author meillo@marmaro.de
date Thu, 22 Jul 2010 23:30:05 +0200
parents
children
line source
1 SUBDIRS=base64 md5 libident
3 AM_CFLAGS=@CFLAGS@ @GLIB_CFLAGS@ -D_GNU_SOURCE -DG_DISABLE_DEPRECATED
5 sbin_PROGRAMS=masqmail
6 bin_PROGRAMS=mservdetect
7 noinst_PROGRAMS=smtpsend readtest
9 masqmail_SOURCES=\
10 dotlock.h\
11 masqmail.h\
12 readsock.h\
13 smtp_out.h\
14 lookup.h\
15 mserver.h\
16 accept.c\
17 address.c\
18 alias.c\
19 child.c\
20 connect.c\
21 conf.c\
22 deliver.c\
23 dotlock.c\
24 expand.c\
25 fail_msg.c\
26 get.c\
27 header.c\
28 interface.c\
29 local.c\
30 log.c\
31 listen.c\
32 lookup.c\
33 masqmail.c\
34 message.c\
35 mserver.c\
36 online.c\
37 parse.c\
38 peopen.c\
39 peopen.h\
40 permissions.c\
41 pop3_in.c\
42 pop3_in.h\
43 readsock.c\
44 rewrite.c\
45 route.c\
46 queue.c\
47 smtp_in.c\
48 smtp_out.c\
49 spool.c\
50 tables.c\
51 timeival.c
53 smtpsend_SOURCES=\
54 smtpsend.c\
55 masqmail.h\
56 readsock.h\
57 smtp_out.h\
58 lookup.h\
59 accept.c\
60 address.c\
61 child.c\
62 connect.c\
63 header.c\
64 interface.c\
65 lookup.c\
66 message.c\
67 parse.c\
68 peopen.c\
69 readsock.c\
70 smtp_out.c
72 mservdetect_SOURCES=\
73 masqmail.h\
74 readsock.h\
75 mserver.h\
76 mservdetect.c\
77 interface.c\
78 mserver.c\
79 readsock.c\
80 peopen.c
82 readtest_SOURCES=\
83 readsock.c\
84 readsock.h\
85 readtest.c
87 masqmail_LDADD=@RESOLV_LIBS@ @GLIB_LIBS@ @LOCKFILE_LIBS@ @MD5_LIBS@ @BASE64_LIBS@ @IDENT_LIBS@
88 smtpsend_LDADD=@RESOLV_LIBS@ @GLIB_LIBS@ @MD5_LIBS@ @BASE64_LIBS@
89 mservdetect_LDADD=@GLIB_LIBS@
90 readtest_LDADD=@GLIB_LIBS@