masqmail-0.2

view src/mservdetect.c @ 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 08114f7dcc23
children
line source
1 /* MasqMail
2 Copyright (C) 1999-2001 Oliver Kurth
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 */
19 /*
20 #include "masqmail.h"
21 #include "readsock.h"
22 #include "mserver.h"
23 */
25 #include "config.h"
27 /* ugly hack */
28 #ifndef ENABLE_MSERVER
29 #define ENABLE_MSERVER 1
30 #include "mserver.c"
31 #else
32 #include "masqmail.h"
33 #include "readsock.h"
34 #include "mserver.h"
35 #endif /* ENABLE_MSERVER */
37 void
38 logwrite(int pri, const char *fmt, ...)
39 {
40 va_list args;
41 va_start(args, fmt);
43 vfprintf(stdout, fmt, args);
45 va_end(args);
46 }
48 void
49 debugf(const char *fmt, ...)
50 {
51 va_list args;
52 va_start(args, fmt);
54 vfprintf(stdout, fmt, args);
56 va_end(args);
57 }
59 int
60 main(int argc, char *argv[])
61 {
62 if (argc == 3) {
63 interface iface;
64 gchar *name;
66 iface.address = g_strdup(argv[1]);
67 iface.port = atoi(argv[2]);
69 name = mserver_detect_online(&iface);
71 printf("%s\n", name);
73 exit(EXIT_SUCCESS);
74 } else {
75 fprintf(stderr, "usage %s <host> <port>\n", argv[0]);
76 exit(EXIT_FAILURE);
77 }
78 }