annotate src/conf.c @ 190:fbb3417c1a54 default tip

Minor fixes in man pages, reported by lintian(1)
author markus schnalke <meillo@marmaro.de>
date Mon, 29 Aug 2011 19:22:51 +0200
parents 087e99c7702a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
1 /* MasqMail
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
2 Copyright (C) 1999-2001 Oliver Kurth
174
087e99c7702a added my copyright to files I worked on
meillo@marmaro.de
parents: 171
diff changeset
3 Copyright (C) 2010 markus schnalke <meillo@marmaro.de>
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
4
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
5 This program is free software; you can redistribute it and/or modify
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
6 it under the terms of the GNU General Public License as published by
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
7 the Free Software Foundation; either version 2 of the License, or
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
8 (at your option) any later version.
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
9
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
10 This program is distributed in the hope that it will be useful,
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
13 GNU General Public License for more details.
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
14
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
15 You should have received a copy of the GNU General Public License
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
16 along with this program; if not, write to the Free Software
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
18 */
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
19
13
49dab67fe461 code beautifying
meillo@marmaro.de
parents: 10
diff changeset
20 #include <pwd.h>
49dab67fe461 code beautifying
meillo@marmaro.de
parents: 10
diff changeset
21 #include <grp.h>
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
22
13
49dab67fe461 code beautifying
meillo@marmaro.de
parents: 10
diff changeset
23 #include "masqmail.h"
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
24
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
25 masqmail_conf conf;
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
26
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
27 void
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
28 init_conf()
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
29 {
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
30 struct passwd *passwd;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
31 struct group *group;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
32
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
33 memset(&conf, 0, sizeof(masqmail_conf));
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
34
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
35 conf.orig_uid = getuid();
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
36 conf.orig_gid = getgid();
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
37
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
38 if ((passwd = getpwnam(DEF_MAIL_USER)))
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
39 conf.mail_uid = passwd->pw_uid;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
40 else {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
41 fprintf(stderr, "user %s not found! (terminating)\n", DEF_MAIL_USER);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
42 exit(EXIT_FAILURE);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
43 }
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
44 if ((group = getgrnam(DEF_MAIL_GROUP)))
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
45 conf.mail_gid = group->gr_gid;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
46 else {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
47 fprintf(stderr, "group %s not found! (terminating)\n", DEF_MAIL_GROUP);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
48 exit(EXIT_FAILURE);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
49 }
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
50 }
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
51
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
52 static gchar* true_strings[] = {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
53 "yes", "on", "true", NULL
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
54 };
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
55
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
56 static gchar *false_strings[] = {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
57 "no", "off", "false", NULL
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
58 };
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
59
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
60 static gboolean
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
61 parse_boolean(gchar * rval)
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
62 {
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
63 gchar **str;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
64
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
65 DEBUG(6) fprintf(stderr, "parse_boolean: %s\n", rval);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
66
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
67 str = true_strings;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
68 while (*str) {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
69 if (strncasecmp(*str, rval, strlen(*str)) == 0)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
70 return TRUE;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
71 str++;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
72 }
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
73
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
74 str = false_strings;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
75 while (*str) {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
76 if (strncasecmp(*str, rval, strlen(*str)) == 0)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
77 return FALSE;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
78 str++;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
79 }
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
80
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
81 fprintf(stderr, "cannot parse value '%s'\n", rval);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
82 exit(EXIT_FAILURE);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
83 }
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
84
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
85 /* make a list from each line in a file */
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
86 static GList*
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
87 parse_list_file(gchar * fname)
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
88 {
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
89 GList *list = NULL;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
90 FILE *fptr;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
91
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
92 if ((fptr = fopen(fname, "rt")) == NULL) {
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
93 logwrite(LOG_ALERT, "could not open %s for reading: %s\n", fname, strerror(errno));
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
94 exit(EXIT_FAILURE);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
95 }
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
96
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
97 gchar buf[256];
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
98
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
99 while (!feof(fptr)) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
100 fgets(buf, 255, fptr);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
101 if (buf[0] && (buf[0] != '#') && (buf[0] != '\n')) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
102 g_strchomp(buf);
114
a80ebfa16cd5 better debugging output (thanks to Paolo)
meillo@marmaro.de
parents: 28
diff changeset
103 DEBUG(6) fprintf(stderr,"parse_list_file: item = %s\n", buf);
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
104 list = g_list_append(list, g_strdup(buf));
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
105 }
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
106 }
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
107 fclose(fptr);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
108
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
109 return list;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
110 }
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
111
13
49dab67fe461 code beautifying
meillo@marmaro.de
parents: 10
diff changeset
112 /* given a semicolon separated string, this function makes a GList out of it. */
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
113 GList*
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
114 parse_list(gchar * line, gboolean read_file)
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
115 {
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
116 GList *list = NULL;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
117 gchar buf[256];
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
118 gchar *p, *q;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
119
114
a80ebfa16cd5 better debugging output (thanks to Paolo)
meillo@marmaro.de
parents: 28
diff changeset
120 DEBUG(6) fprintf(stderr, "parsing list %s, file?:%d\n", line, read_file);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
121
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
122 p = line;
14
a8f3424347dc replaced number 0 with character \0 where appropriate
meillo@marmaro.de
parents: 13
diff changeset
123 while (*p != '\0') {
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
124 q = buf;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
125
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
126 while (*p && (*p != ';') && (q < buf + 255))
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
127 *(q++) = *(p++);
14
a8f3424347dc replaced number 0 with character \0 where appropriate
meillo@marmaro.de
parents: 13
diff changeset
128 *q = '\0';
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
129
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
130 if ((buf[0] == '/') && (read_file))
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
131 /* item is a filename, include its contents */
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
132 list = g_list_concat(list, parse_list_file(buf));
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
133 else
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
134 /* just a normal item */
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
135 list = g_list_append(list, g_strdup(buf));
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
136
114
a80ebfa16cd5 better debugging output (thanks to Paolo)
meillo@marmaro.de
parents: 28
diff changeset
137 DEBUG(6) fprintf(stderr, "item = %s\n", buf);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
138
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
139 if (*p)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
140 p++;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
141 }
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
142 return list;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
143 }
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
144
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
145 static GList*
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
146 parse_address_list(gchar * line, gboolean read_file)
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
147 {
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
148 GList *plain_list = parse_list(line, read_file);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
149 GList *node;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
150 GList *list = NULL;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
151
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
152 foreach(plain_list, node) {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
153 gchar *item = (gchar *) (node->data);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
154 address *addr = create_address(item, TRUE);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
155 if (addr)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
156 list = g_list_append(list, addr);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
157 g_free(item);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
158 }
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
159 g_list_free(plain_list);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
160
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
161 return list;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
162 }
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
163
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
164 static GList*
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
165 parse_resolve_list(gchar * line)
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
166 {
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
167 GList *list;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
168 GList *list_node;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
169 GList *res_list = NULL;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
170
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
171 list = parse_list(line, FALSE);
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
172 if (!list) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
173 return NULL;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
174 }
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
175
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
176 foreach(list, list_node) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
177 gchar *item = (gchar *) (list_node->data);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
178 if (strcmp(item, "byname") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
179 res_list = g_list_append(res_list, resolve_byname);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
180 #ifdef ENABLE_RESOLVER
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
181 } else if (strcmp(item, "dns_a") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
182 res_list = g_list_append(res_list, resolve_dns_a);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
183 } else if (strcmp(item, "dns_mx") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
184 res_list = g_list_append(res_list, resolve_dns_mx);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
185 #endif
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
186 } else {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
187 logwrite(LOG_ALERT, "unknown resolver %s\n", item);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
188 exit(EXIT_FAILURE);
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
189 }
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
190 g_free(item);
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
191 }
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
192 g_list_free(list);
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
193 return res_list;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
194 }
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
195
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
196 static interface*
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
197 parse_interface(gchar * line, gint def_port)
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
198 {
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
199 gchar buf[256];
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
200 gchar *p, *q;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
201 interface *iface;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
202
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
203 DEBUG(6) fprintf(stderr, "parse_interface: %s\n", line);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
204
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
205 p = line;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
206 q = buf;
14
a8f3424347dc replaced number 0 with character \0 where appropriate
meillo@marmaro.de
parents: 13
diff changeset
207 while ((*p != '\0') && (*p != ':') && (q < buf + 255))
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
208 *(q++) = *(p++);
14
a8f3424347dc replaced number 0 with character \0 where appropriate
meillo@marmaro.de
parents: 13
diff changeset
209 *q = '\0';
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
210
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
211 iface = g_malloc(sizeof(interface));
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
212 iface->address = g_strdup(buf);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
213
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
214 if (*p) {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
215 p++;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
216 iface->port = atoi(p);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
217 } else
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
218 iface->port = def_port;
114
a80ebfa16cd5 better debugging output (thanks to Paolo)
meillo@marmaro.de
parents: 28
diff changeset
219 DEBUG(6) fprintf(stderr,"rval=%s, address:port=%s:%i\n",line, iface->address, iface->port);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
220
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
221 return iface;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
222 }
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
223
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
224 #ifdef ENABLE_IDENT /* so far used for that only */
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
225 static struct in_addr*
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
226 parse_network(gchar * line, gint def_port)
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
227 {
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
228 gchar buf[256];
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
229 gchar *p, *q;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
230 struct in_addr addr, mask_addr, net_addr, *p_net_addr;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
231 guint n;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
232
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
233 DEBUG(6) fprintf(stderr, "parse_network: %s\n", line);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
234
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
235 p = line;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
236 q = buf;
14
a8f3424347dc replaced number 0 with character \0 where appropriate
meillo@marmaro.de
parents: 13
diff changeset
237 while ((*p != '\0') && (*p != '/') && (q < buf + 255))
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
238 *(q++) = *(p++);
14
a8f3424347dc replaced number 0 with character \0 where appropriate
meillo@marmaro.de
parents: 13
diff changeset
239 *q = '\0';
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
240
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
241 if ((addr.s_addr = inet_addr(buf)) == INADDR_NONE) {
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
242 fprintf(stderr, "'%s' is not a valid address (must be ip)\n", buf);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
243 exit(EXIT_FAILURE);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
244 }
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
245
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
246 if (*p) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
247 guint i;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
248 p++;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
249 i = atoi(p);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
250 if ((i >= 0) && (i <= 32))
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
251 n = i ? ~((1 << (32 - i)) - 1) : 0;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
252 else {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
253 fprintf(stderr, "'%d' is not a valid net mask (must be >= 0 and <= 32)\n", i);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
254 exit(EXIT_FAILURE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
255 }
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
256 } else
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
257 n = 0;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
258
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
259 mask_addr.s_addr = htonl(n);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
260 net_addr.s_addr = mask_addr.s_addr & addr.s_addr;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
261
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
262 p_net_addr = g_malloc(sizeof(struct in_addr));
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
263 p_net_addr->s_addr = net_addr.s_addr;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
264 return p_net_addr;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
265 }
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
266 #endif
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
267
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
268 static gboolean
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
269 eat_comments(FILE * in)
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
270 {
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
271 gint c;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
272
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
273 for (c = fgetc(in); (c == '#' || isspace(c)) && c != EOF;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
274 c = fgetc(in)) {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
275 if (c == '#') {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
276 gint c;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
277 for (c = fgetc(in); (c != '\n') && (c != EOF); c = fgetc(in));
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
278 }
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
279 }
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
280 if (c == EOF)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
281 return FALSE;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
282 ungetc(c, in);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
283 return TRUE;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
284 }
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
285
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
286 /* after parsing, eat trailing character until LF */
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
287 static gboolean
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
288 eat_line_trailing(FILE * in)
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
289 {
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
290 gint c;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
291
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
292 for (c = fgetc(in); c != EOF && c != '\n'; c = fgetc(in));
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
293 if (c == EOF)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
294 return FALSE;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
295 return TRUE;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
296 }
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
297
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
298 static gboolean
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
299 eat_spaces(FILE * in)
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
300 {
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
301 gint c;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
302
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
303 for (c = fgetc(in); c != EOF && isspace(c); c = fgetc(in)) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
304 /* empty */
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
305 }
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
306 if (c == EOF)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
307 return FALSE;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
308 ungetc(c, in);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
309 return TRUE;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
310 }
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
311
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
312 static gboolean
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
313 read_lval(FILE * in, gchar * buf, gint size)
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
314 {
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
315 gint c;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
316 gchar *ptr = buf;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
317
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
318 DEBUG(6) fprintf(stderr, "read_lval()\n");
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
319
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
320 if (!eat_spaces(in))
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
321 return FALSE;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
322
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
323 c = fgetc(in);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
324 DEBUG(6) fprintf(stderr, "read_lval() 2\n");
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
325 while ((isalnum(c) || c == '_' || c == '-' || c == '.')
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
326 && (ptr < buf + size - 1)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
327 && (c != EOF)) {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
328 *ptr = c;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
329 ptr++;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
330 c = fgetc(in);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
331 }
14
a8f3424347dc replaced number 0 with character \0 where appropriate
meillo@marmaro.de
parents: 13
diff changeset
332 *ptr = '\0';
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
333 ungetc(c, in);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
334
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
335 if (c == EOF) {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
336 fprintf(stderr, "unexpected EOF after %s\n", buf);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
337 return FALSE;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
338 } else if (ptr >= buf + size - 1) {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
339 fprintf(stderr, "lval too long\n");
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
340 }
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
341
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
342 eat_spaces(in);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
343
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
344 DEBUG(6) fprintf(stderr, "lval = %s\n", buf);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
345
14
a8f3424347dc replaced number 0 with character \0 where appropriate
meillo@marmaro.de
parents: 13
diff changeset
346 return buf[0] != '\0';
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
347 }
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
348
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
349 static gboolean
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
350 read_rval(FILE * in, gchar * buf, gint size)
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
351 {
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
352 gint c;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
353 gchar *ptr = buf;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
354
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
355 DEBUG(6) fprintf(stderr, "read_rval()\n");
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
356
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
357 if (!eat_spaces(in))
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
358 return FALSE;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
359
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
360 c = fgetc(in);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
361 if (c != '\"') {
115
315773f814f7 allow `:' unquoted too; updated masqmail.conf.5 (Thanks to Paolo)
meillo@marmaro.de
parents: 114
diff changeset
362 while ((isalnum(c) || c == '_' || c == '-' || c == '.'
315773f814f7 allow `:' unquoted too; updated masqmail.conf.5 (Thanks to Paolo)
meillo@marmaro.de
parents: 114
diff changeset
363 || c == '/' || c == '@' || c == ';' || c == ':')
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
364 && (ptr < buf + size - 1)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
365 && (c != EOF)) {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
366 *ptr = c;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
367 ptr++;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
368 c = fgetc(in);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
369 }
14
a8f3424347dc replaced number 0 with character \0 where appropriate
meillo@marmaro.de
parents: 13
diff changeset
370 *ptr = '\0';
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
371 ungetc(c, in);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
372 } else {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
373 gboolean escape = FALSE;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
374 c = fgetc(in);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
375 while (((c != '\"') || escape) && (ptr < buf + size - 1)) {
13
49dab67fe461 code beautifying
meillo@marmaro.de
parents: 10
diff changeset
376 if (c != '\n') { /* ignore line breaks */
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
377 if ((c == '\\') && (!escape)) {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
378 escape = TRUE;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
379 } else {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
380 *ptr = c;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
381 ptr++;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
382 escape = FALSE;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
383 }
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
384 }
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
385 c = fgetc(in);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
386 }
14
a8f3424347dc replaced number 0 with character \0 where appropriate
meillo@marmaro.de
parents: 13
diff changeset
387 *ptr = '\0';
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
388 }
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
389
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
390 eat_line_trailing(in);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
391
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
392 DEBUG(6) fprintf(stderr, "rval = %s\n", buf);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
393
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
394 return TRUE;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
395 }
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
396
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
397 static gboolean
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
398 read_statement(FILE * in, gchar * lval, gint lsize, gchar * rval, gint rsize)
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
399 {
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
400 gint c;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
401
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
402 DEBUG(6) fprintf(stderr, "read_statement()\n");
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
403
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
404 /* eat comments and empty lines: */
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
405 if (!eat_comments(in))
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
406 return FALSE;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
407
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
408 if (!read_lval(in, lval, lsize)) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
409 return FALSE;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
410 }
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
411
114
a80ebfa16cd5 better debugging output (thanks to Paolo)
meillo@marmaro.de
parents: 28
diff changeset
412 DEBUG(6) fprintf(stderr, " lval = %s\n", lval);
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
413 if ((c = fgetc(in) == '=')) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
414 if (read_rval(in, rval, rsize)) {
114
a80ebfa16cd5 better debugging output (thanks to Paolo)
meillo@marmaro.de
parents: 28
diff changeset
415 DEBUG(6) fprintf(stderr, " rval = %s\n", rval);
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
416 return TRUE;
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
417 }
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
418 } else {
114
a80ebfa16cd5 better debugging output (thanks to Paolo)
meillo@marmaro.de
parents: 28
diff changeset
419 DEBUG(6) fprintf(stderr," '=' expected after %s, char was '%c'\n", lval, c);
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
420 fprintf(stderr, "'=' expected after %s, char was '%c'\n", lval, c);
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
421 }
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
422 return FALSE;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
423 }
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
424
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
425 gboolean
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
426 read_conf(gchar * filename)
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
427 {
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
428 FILE *in;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
429
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
430 conf.log_max_pri = 7;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
431 conf.remote_port = 25;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
432 conf.do_relay = TRUE;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
433 conf.alias_local_cmp = strcmp;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
434 conf.max_defer_time = 86400 * 4; /* 4 days */
120
cd59a5b4d3dd added support for SMTP SIZE 0 (unlimited)
meillo@marmaro.de
parents: 117
diff changeset
435 conf.max_msg_size = 0; /* no limit on msg size */
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
436
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
437 if ((in = fopen(filename, "r")) == NULL) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
438 fprintf(stderr, "could not open config file %s: %s\n", filename, strerror(errno));
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
439 return FALSE;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
440 }
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
441
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
442 gchar lval[256], rval[2048];
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
443 while (read_statement(in, lval, 256, rval, 2048)) {
114
a80ebfa16cd5 better debugging output (thanks to Paolo)
meillo@marmaro.de
parents: 28
diff changeset
444 DEBUG(6) fprintf(stderr,"read_conf(): lval=%s\n", lval);
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
445 if (strcmp(lval, "debug_level") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
446 conf.debug_level = atoi(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
447 else if (strcmp(lval, "run_as_user") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
448 if (!conf.run_as_user) /* you should not be able to reset that flag */
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
449 conf.run_as_user = parse_boolean(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
450 } else if (strcmp(lval, "use_syslog") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
451 conf.use_syslog = parse_boolean(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
452 else if (strcmp(lval, "mail_dir") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
453 conf.mail_dir = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
454 else if (strcmp(lval, "lock_dir") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
455 conf.lock_dir = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
456 else if (strcmp(lval, "spool_dir") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
457 conf.spool_dir = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
458 else if (strcmp(lval, "log_dir") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
459 conf.log_dir = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
460 else if (strcmp(lval, "host_name") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
461 if (rval[0] != '/')
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
462 conf.host_name = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
463 else {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
464 char buf[256];
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
465 FILE *fptr = fopen(rval, "rt");
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
466 if (fptr) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
467 fprintf(stderr, "could not open %s: %s\n", rval, strerror(errno));
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
468 return FALSE;
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
469 }
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
470 fgets(buf, 255, fptr);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
471 g_strchomp(buf);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
472 conf.host_name = g_strdup(buf);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
473 fclose(fptr);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
474 }
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
475 } else if (strcmp(lval, "remote_port") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
476 fprintf(stderr, "the remote_port option is now deprecated. Use 'mail_host' in the\n"
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
477 "route configuration instead. See man masqmail.route\n");
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
478 conf.remote_port = atoi(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
479 } else if (strcmp(lval, "local_hosts") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
480 conf.local_hosts = parse_list(rval, FALSE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
481 else if (strcmp(lval, "local_addresses") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
482 conf.local_addresses = parse_list(rval, TRUE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
483 else if (strcmp(lval, "not_local_addresses") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
484 conf.not_local_addresses = parse_list(rval, TRUE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
485 else if (strcmp(lval, "local_nets") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
486 conf.local_nets = parse_list(rval, FALSE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
487 else if (strcmp(lval, "do_save_envelope_to") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
488 conf.do_save_envelope_to = parse_boolean(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
489 else if (strcmp(lval, "defer_all") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
490 conf.defer_all = parse_boolean(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
491 else if (strcmp(lval, "do_relay") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
492 conf.do_relay = parse_boolean(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
493 else if (strcmp(lval, "alias_file") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
494 conf.alias_file = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
495 } else if (strcmp(lval, "alias_local_caseless") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
496 conf.alias_local_cmp = parse_boolean(rval) ? strcasecmp : strcmp;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
497 } else if (strcmp(lval, "mbox_default") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
498 conf.mbox_default = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
499 } else if (strcmp(lval, "mbox_users") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
500 conf.mbox_users = parse_list(rval, TRUE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
501 } else if (strcmp(lval, "mda_users") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
502 conf.mda_users = parse_list(rval, TRUE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
503 } else if (strcmp(lval, "maildir_users") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
504 conf.maildir_users = parse_list(rval, TRUE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
505 } else if (strcmp(lval, "mda") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
506 conf.mda = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
507 } else if (strcmp(lval, "mda_fromline") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
508 conf.mda_fromline = parse_boolean(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
509 } else if (strcmp(lval, "mda_fromhack") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
510 conf.mda_fromhack = parse_boolean(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
511 } else if (strcmp(lval, "pipe_fromline") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
512 conf.pipe_fromline = parse_boolean(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
513 } else if (strcmp(lval, "pipe_fromhack") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
514 conf.pipe_fromhack = parse_boolean(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
515 } else if (strcmp(lval, "listen_addresses") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
516 GList *node;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
517 GList *tmp_list = parse_list(rval, FALSE);
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
518
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
519 conf.listen_addresses = NULL;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
520 foreach(tmp_list, node) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
521 conf.listen_addresses = g_list_append(conf.listen_addresses, parse_interface((gchar *) (node-> data), 25));
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
522 g_free(node->data);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
523 }
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
524 g_list_free(tmp_list);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
525 } else if (strcmp(lval, "ident_trusted_nets") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
526 #ifdef ENABLE_IDENT
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
527 GList *node;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
528 GList *tmp_list = parse_list(rval, FALSE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
529
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
530 conf.ident_trusted_nets = NULL;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
531 foreach(tmp_list, node) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
532 conf.ident_trusted_nets = g_list_append(conf.ident_trusted_nets, parse_network((gchar *) (node->data), 25));
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
533 g_free(node->data);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
534 }
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
535 g_list_free(tmp_list);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
536 #else
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
537 fprintf(stderr, "%s ignored: not compiled with ident support\n", lval);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
538 #endif
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
539 } else if ((strncmp(lval, "connect_route.", 14) == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
540 || (strncmp(lval, "online_routes.", 14) == 0)) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
541 GList *file_list = parse_list(rval, FALSE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
542 table_pair *pair = create_pair(&(lval[14]), file_list);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
543 conf.connect_routes = g_list_append(conf.connect_routes, pair);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
544 } else if (strcmp(lval, "local_net_route") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
545 conf.local_net_routes = parse_list(rval, FALSE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
546 } else if (strcmp(lval, "online_detect") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
547 conf.online_detect = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
548 else if (strcmp(lval, "online_file") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
549 conf.online_file = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
550 else if (strcmp(lval, "online_pipe") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
551 conf.online_pipe = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
552 else if (strcmp(lval, "mserver_iface") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
553 conf.mserver_iface = parse_interface(rval, 224);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
554 else if (strcmp(lval, "do_queue") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
555 conf.do_queue = parse_boolean(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
556 else if (strncmp(lval, "get.", 4) == 0) {
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
557 #ifdef ENABLE_POP3
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
558 table_pair *pair = create_pair_string(&(lval[4]), rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
559 conf.get_names = g_list_append(conf.get_names, pair);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
560 #else
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
561 fprintf(stderr, "get.<name> ignored: not compiled with pop support\n");
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
562 #endif
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
563 } else if (strncmp(lval, "online_gets.", 12) == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
564 #ifdef ENABLE_POP3
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
565 GList *file_list = parse_list(rval, FALSE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
566 table_pair *pair = create_pair(&(lval[12]), file_list);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
567 conf.online_gets = g_list_append(conf.online_gets, pair);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
568 #else
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
569 fprintf(stderr, "online_gets.<name> ignored: not compiled with pop support\n");
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
570 #endif
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
571 } else if (strcmp(lval, "errmsg_file") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
572 conf.errmsg_file = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
573 else if (strcmp(lval, "warnmsg_file") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
574 conf.warnmsg_file = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
575 else if (strcmp(lval, "warn_intervals") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
576 conf.warn_intervals = parse_list(rval, FALSE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
577 else if (strcmp(lval, "max_defer_time") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
578 gint dummy;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
579 gint ival = time_interval(rval, &dummy);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
580 if (ival < 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
581 fprintf(stderr, "invalid time interval for 'max_defer_time': %s\n", rval);
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
582 else
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
583 conf.max_defer_time = ival;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
584 } else if (strcmp(lval, "log_user") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
585 conf.log_user = g_strdup(rval);
117
5ec5e6637049 added server-side SMTP SIZE support (patch by Paolo)
meillo@marmaro.de
parents: 115
diff changeset
586 else if(strcmp(lval, "max_msg_size") == 0) {
5ec5e6637049 added server-side SMTP SIZE support (patch by Paolo)
meillo@marmaro.de
parents: 115
diff changeset
587 conf.max_msg_size = atol(rval);
5ec5e6637049 added server-side SMTP SIZE support (patch by Paolo)
meillo@marmaro.de
parents: 115
diff changeset
588 DEBUG(6) fprintf(stderr,"rval=%s, conf.max_msg_size=%ld\n",
5ec5e6637049 added server-side SMTP SIZE support (patch by Paolo)
meillo@marmaro.de
parents: 115
diff changeset
589 rval, conf.max_msg_size);
5ec5e6637049 added server-side SMTP SIZE support (patch by Paolo)
meillo@marmaro.de
parents: 115
diff changeset
590 }
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
591 else
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
592 fprintf(stderr, "var '%s' not (yet) known, ignored\n", lval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
593 }
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
594 fclose(in);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
595
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
596 if (conf.errmsg_file == NULL)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
597 conf.errmsg_file = g_strdup(DATA_DIR "/tpl/failmsg.tpl");
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
598 if (conf.warnmsg_file == NULL)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
599 conf.warnmsg_file = g_strdup(DATA_DIR "/tpl/warnmsg.tpl");
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
600
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
601 if (conf.lock_dir == NULL)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
602 conf.lock_dir = g_strdup_printf("%s/lock/", conf.spool_dir);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
603
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
604 if (conf.mbox_default == NULL)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
605 conf.mbox_default = g_strdup("mbox");
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
606
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
607 if (conf.warn_intervals == NULL)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
608 conf.warn_intervals = parse_list("1h;4h;8h;1d;2d;3d", FALSE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
609
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
610 return TRUE;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
611 }
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
612
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
613 connect_route*
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
614 read_route(gchar * filename, gboolean is_local_net)
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
615 {
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
616 gboolean ok = FALSE;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
617 FILE *in;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
618
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
619 connect_route *route = g_malloc(sizeof(connect_route));
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
620 memset(route, 0, sizeof(connect_route));
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
621
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
622 DEBUG(5) debugf("read_route, filename = %s\n", filename);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
623
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
624 route->filename = g_strdup(filename);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
625 route->name = g_strdup(filename); /* quick hack */
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
626
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
627 route->protocol = g_strdup("smtp");
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
628 route->expand_h_sender_address = TRUE;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
629
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
630 route->is_local_net = is_local_net;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
631
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
632 route->do_pipelining = TRUE;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
633
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
634 if ((in = fopen(route->filename, "r")) == NULL) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
635 logwrite(LOG_ALERT, "could not open route file %s: %s\n", route->filename, strerror(errno));
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
636 g_free(route);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
637 return NULL;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
638 }
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
639
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
640 gchar lval[256], rval[2048];
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
641 while (read_statement(in, lval, 256, rval, 2048)) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
642 if (strcmp(lval, "protocol") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
643 route->protocol = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
644 else if (strcmp(lval, "mail_host") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
645 route->mail_host = parse_interface(rval, conf.remote_port);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
646 else if (strcmp(lval, "helo_name") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
647 route->helo_name = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
648 else if (strcmp(lval, "wrapper") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
649 route->wrapper = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
650 else if (strcmp(lval, "connect_error_fail") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
651 route->connect_error_fail = parse_boolean(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
652 else if (strcmp(lval, "do_correct_helo") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
653 route->do_correct_helo = parse_boolean(rval);
171
349518b940db added support for STARTTLS wrappers
meillo@marmaro.de
parents: 131
diff changeset
654 else if (strcmp(lval, "instant_helo") == 0)
349518b940db added support for STARTTLS wrappers
meillo@marmaro.de
parents: 131
diff changeset
655 route->instant_helo = parse_boolean(rval);
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
656 else if (strcmp(lval, "do_pipelining") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
657 route->do_pipelining = parse_boolean(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
658 else if (strcmp(lval, "allowed_return_paths") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
659 route->allowed_return_paths = parse_address_list(rval, TRUE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
660 else if (strcmp(lval, "allowed_mail_locals") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
661 route->allowed_mail_locals = parse_list(rval, TRUE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
662 else if (strcmp(lval, "not_allowed_return_paths") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
663 route->not_allowed_return_paths = parse_address_list(rval, TRUE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
664 else if (strcmp(lval, "not_allowed_mail_locals") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
665 route->not_allowed_mail_locals = parse_list(rval, TRUE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
666 else if (strcmp(lval, "allowed_rcpt_domains") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
667 route->allowed_rcpt_domains = parse_list(rval, TRUE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
668 else if (strcmp(lval, "not_allowed_rcpt_domains") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
669 route->not_allowed_rcpt_domains = parse_list(rval, TRUE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
670 else if (strcmp(lval, "set_h_from_domain") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
671 route->set_h_from_domain = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
672 else if (strcmp(lval, "set_h_reply_to_domain") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
673 route->set_h_reply_to_domain = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
674 else if (strcmp(lval, "set_return_path_domain") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
675 route->set_return_path_domain = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
676 else if (strcmp(lval, "map_return_path_addresses") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
677 GList *node, *list;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
678
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
679 list = parse_list(rval, TRUE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
680 foreach(list, node) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
681 gchar *item = (gchar *) (node->data);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
682 table_pair *pair = parse_table_pair(item, ':');
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
683 address *addr = create_address((gchar *) (pair->value), TRUE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
684 g_free(pair->value);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
685 pair->value = (gpointer *) addr;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
686 route->map_return_path_addresses = g_list_append(route->map_return_path_addresses, pair);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
687 g_free(item);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
688 }
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
689 g_list_free(list);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
690 } else if (strcmp(lval, "map_h_from_addresses") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
691 GList *list, *node;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
692
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
693 list = parse_list(rval, TRUE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
694 foreach(list, node) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
695 gchar *item = (gchar *) (node->data);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
696 table_pair *pair = parse_table_pair(item, ':');
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
697 route->map_h_from_addresses = g_list_append(route->map_h_from_addresses, pair);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
698 g_free(item);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
699 }
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
700 g_list_free(list);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
701 } else if (strcmp(lval, "map_h_reply_to_addresses") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
702 GList *list, *node;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
703
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
704 list = parse_list(rval, TRUE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
705 foreach(list, node) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
706 gchar *item = (gchar *) (node->data);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
707 table_pair *pair = parse_table_pair(item, ':');
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
708 route->map_h_reply_to_addresses = g_list_append(route->map_h_reply_to_addresses, pair);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
709 g_free(item);
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
710 }
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
711 g_list_free(list);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
712 } else if (strcmp(lval, "map_h_mail_followup_to_addresses") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
713 GList *list, *node;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
714
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
715 list = parse_list(rval, TRUE);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
716 foreach(list, node) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
717 gchar *item = (gchar *) (node->data);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
718 table_pair *pair = parse_table_pair(item, ':');
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
719 route->map_h_mail_followup_to_addresses = g_list_append(route->map_h_mail_followup_to_addresses, pair);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
720 g_free(item);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
721 }
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
722 g_list_free(list);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
723 } else if (strcmp(lval, "expand_h_sender_domain") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
724 route->expand_h_sender_domain = parse_boolean(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
725 } else if (strcmp(lval, "expand_h_sender_address") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
726 route->expand_h_sender_address = parse_boolean(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
727 } else if (strcmp(lval, "resolve_list") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
728 route->resolve_list = parse_resolve_list(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
729 else if (strcmp(lval, "do_ssl") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
730 /* we ignore this. This option is used by sqilconf */
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
731 ;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
732 }
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
733 #ifdef ENABLE_AUTH
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
734 else if (strcmp(lval, "auth_name") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
735 route->auth_name = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
736 } else if (strcmp(lval, "auth_login") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
737 route->auth_login = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
738 } else if (strcmp(lval, "auth_secret") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
739 route->auth_secret = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
740 }
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
741 #else
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
742 else if ((strcmp(lval, "auth_name") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
743 || (strcmp(lval, "auth_login") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
744 || (strcmp(lval, "auth_secret") == 0)) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
745 logwrite(LOG_WARNING, "%s ignored: not compiled with auth support.\n", lval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
746 }
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
747 #endif
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
748 else if (strcmp(lval, "pop3_login") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
749 #ifdef ENABLE_POP3
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
750 route->pop3_login = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
751 #else
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
752 logwrite(LOG_WARNING, "pop3_login ignored: not compiled with pop support.\n");
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
753 #endif
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
754 } else if (strcmp(lval, "pipe") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
755 route->pipe = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
756 } else if (strcmp(lval, "pipe_fromline") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
757 route->pipe_fromline = parse_boolean(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
758 } else if (strcmp(lval, "pipe_fromhack") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
759 route->pipe_fromhack = parse_boolean(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
760 } else if (strcmp(lval, "last_route") == 0) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
761 route->last_route = parse_boolean(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
762 } else
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
763 logwrite(LOG_WARNING, "var '%s' not (yet) known, ignored\n", lval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
764 }
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
765
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
766 if (route->resolve_list == NULL) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
767 if (is_local_net) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
768 route->resolve_list = g_list_append(NULL, resolve_byname);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
769 } else {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
770 #ifdef ENABLE_RESOLVER
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
771 route->resolve_list = g_list_append(route->resolve_list, resolve_dns_mx);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
772 route->resolve_list = g_list_append(route->resolve_list, resolve_dns_a);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
773 #endif
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
774 route->resolve_list = g_list_append(route->resolve_list, resolve_byname);
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
775 }
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
776 }
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
777 fclose(in);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
778 ok = TRUE;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
779
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
780 /* warn user about misconfigurations: */
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
781 if ((route->map_h_from_addresses != NULL) && (route->set_h_from_domain != NULL)) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
782 logwrite(LOG_WARNING, "'map_h_from_addresses' overrides 'set_h_from_domain'\n");
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
783 g_free(route->set_h_from_domain);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
784 route->set_h_from_domain = NULL;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
785 }
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
786 if ((route->map_h_reply_to_addresses != NULL) && (route->set_h_reply_to_domain != NULL)) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
787 logwrite(LOG_WARNING, "'map_h_reply_to_addresses' overrides 'set_h_reply_to_domain'\n");
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
788 g_free(route->set_h_reply_to_domain);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
789 route->set_h_reply_to_domain = NULL;
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
790 }
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
791
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
792 if (!ok) {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
793 g_free(route);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
794 route = NULL;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
795 }
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
796
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
797 return route;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
798 }
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
799
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
800 static void
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
801 _g_list_free_all(GList * list)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
802 {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
803 GList *node;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
804 if (list) {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
805 foreach(list, node)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
806 g_free(node->data);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
807 g_list_free(list);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
808 }
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
809 }
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
810
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
811 void
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
812 destroy_route(connect_route * r)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
813 {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
814 if (r->filename)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
815 g_free(r->filename);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
816 if (r->protocol)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
817 g_free(r->protocol);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
818 if (r->mail_host) {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
819 g_free(r->mail_host->address);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
820 g_free(r->mail_host);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
821 }
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
822 if (r->wrapper)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
823 g_free(r->wrapper);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
824 if (r->helo_name)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
825 g_free(r->helo_name);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
826 _g_list_free_all(r->allowed_mail_locals);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
827 _g_list_free_all(r->not_allowed_mail_locals);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
828 _g_list_free_all(r->allowed_rcpt_domains);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
829 _g_list_free_all(r->not_allowed_rcpt_domains);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
830 if (r->set_h_from_domain)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
831 g_free(r->set_h_from_domain);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
832 if (r->set_h_reply_to_domain)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
833 g_free(r->set_h_reply_to_domain);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
834 if (r->set_return_path_domain)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
835 g_free(r->set_return_path_domain);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
836 if (r->map_h_reply_to_addresses)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
837 destroy_table(r->map_h_reply_to_addresses);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
838 if (r->resolve_list)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
839 g_list_free(r->resolve_list);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
840 #ifdef ENABLE_AUTH
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
841 if (r->auth_name)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
842 g_free(r->auth_name);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
843 if (r->auth_login)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
844 g_free(r->auth_login);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
845 if (r->auth_secret)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
846 g_free(r->auth_secret);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
847 #endif
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
848 #ifdef ENABLE_POP3
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
849 if (r->pop3_login)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
850 g_free(r->pop3_login);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
851 #endif
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
852 if (r->pipe)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
853 g_free(r->pipe);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
854 g_free(r);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
855 }
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
856
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
857 GList*
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
858 read_route_list(GList * rf_list, gboolean is_local_net)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
859 {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
860 GList *list = NULL;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
861 GList *node;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
862 uid_t saved_uid, saved_gid;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
863
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
864 if (!conf.run_as_user) {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
865 set_euidgid(0, 0, &saved_uid, &saved_gid);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
866 }
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
867
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
868 foreach(rf_list, node) {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
869 gchar *fname = (gchar *) (node->data);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
870 connect_route *route = read_route(fname, is_local_net);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
871 if (route)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
872 list = g_list_append(list, route);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
873 else
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
874 logwrite(LOG_ALERT, "could not read route configuration %s\n", fname);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
875 }
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
876
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
877 /* set uid and gid back */
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
878 if (!conf.run_as_user) {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
879 set_euidgid(saved_uid, saved_gid, NULL, NULL);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
880 }
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
881
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
882 return list;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
883 }
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
884
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
885 void
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
886 destroy_route_list(GList * list)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
887 {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
888 GList *node;
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
889
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
890 foreach(list, node) {
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
891 connect_route *route = (connect_route *) (node->data);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
892 destroy_route(route);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
893 }
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
894 g_list_free(list);
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
895 }
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
896
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
897 #ifdef ENABLE_POP3
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
898
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
899 get_conf*
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
900 read_get_conf(gchar * filename)
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
901 {
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
902 FILE *in;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
903
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
904 get_conf *gc = g_malloc(sizeof(get_conf));
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
905 memset(gc, 0, sizeof(get_conf));
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
906
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
907 gc->server_port = 110;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
908
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
909 if ((in = fopen(filename, "r")) == NULL) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
910 logwrite(LOG_ALERT, "could not open get file %s: %s\n", filename, strerror(errno));
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
911 g_free(gc);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
912 return NULL;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
913 }
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
914
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
915 gchar lval[256], rval[2048];
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
916 while (read_statement(in, lval, 256, rval, 2048)) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
917 if (strcmp(lval, "protocol") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
918 gc->protocol = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
919 else if (strcmp(lval, "server") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
920 gc->server_name = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
921 else if (strcmp(lval, "port") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
922 gc->server_port = atoi(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
923 else if (strcmp(lval, "wrapper") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
924 gc->wrapper = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
925 else if (strcmp(lval, "user") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
926 gc->login_user = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
927 else if (strcmp(lval, "pass") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
928 gc->login_pass = g_strdup(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
929 else if (strcmp(lval, "address") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
930 gc->address = create_address_qualified(rval, TRUE, conf.host_name);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
931 else if (strcmp(lval, "return_path") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
932 gc->return_path = create_address_qualified(rval, TRUE, conf.host_name);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
933 else if (strcmp(lval, "do_ssl") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
934 /* we ignore this. This option is used by sqilconf */
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
935 ;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
936 else if (strcmp(lval, "do_keep") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
937 gc->do_keep = parse_boolean(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
938 else if (strcmp(lval, "do_uidl") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
939 gc->do_uidl = parse_boolean(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
940 else if (strcmp(lval, "do_uidl_dele") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
941 gc->do_uidl_dele = parse_boolean(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
942 else if (strcmp(lval, "max_size") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
943 gc->max_size = atoi(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
944 else if (strcmp(lval, "max_size_delete") == 0)
131
d68f0cab0be5 fixed the use of max_size instead of max_size_delete
meillo@marmaro.de
parents: 120
diff changeset
945 gc->max_size_delete = parse_boolean(rval);
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
946 else if (strcmp(lval, "max_count") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
947 gc->max_count = atoi(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
948 else if (strcmp(lval, "resolve_list") == 0)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
949 gc->resolve_list = parse_resolve_list(rval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
950 else
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
951 logwrite(LOG_WARNING, "var '%s' not (yet) known, ignored\n", lval);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
952 }
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
953 fclose(in);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
954
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
955 if (gc->resolve_list == NULL) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
956 #ifdef ENABLE_RESOLVER
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
957 gc->resolve_list = g_list_append(NULL, resolve_dns_a);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
958 #endif
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
959 gc->resolve_list = g_list_append(NULL, resolve_byname);
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
960 }
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
961
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
962 if (gc->protocol == NULL)
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
963 gc->protocol = g_strdup("pop3");
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
964 return gc;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
965 }
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
966
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
967 void
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
968 destroy_get_conf(get_conf * gc)
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
969 {
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
970 if (gc->protocol)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
971 g_free(gc->protocol);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
972 if (gc->server_name)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
973 g_free(gc->server_name);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
974 if (gc->login_user)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
975 g_free(gc->login_user);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
976 if (gc->login_pass)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
977 g_free(gc->login_pass);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
978 if (gc->wrapper)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
979 g_free(gc->wrapper);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
980 if (gc->address)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
981 destroy_address(gc->address);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
982 if (gc->return_path)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
983 destroy_address(gc->return_path);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
984 if (gc->resolve_list)
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
985 g_list_free(gc->resolve_list);
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
986 g_free(gc);
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
987 }
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
988
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
989 #endif
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
990
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
991 connect_route*
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
992 create_local_route()
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
993 {
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
994 connect_route *route;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
995
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
996 route = g_malloc(sizeof(connect_route));
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
997 if (!route) {
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
998 return NULL;
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
999 }
28
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
1000 memset(route, 0, sizeof(connect_route));
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
1001 route->protocol = g_strdup("smtp");
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
1002 route->is_local_net = TRUE;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
1003 route->name = g_strdup("local_net (default)");
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
1004 route->expand_h_sender_address = TRUE;
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
1005 route->resolve_list = g_list_append(NULL, resolve_byname);
71605f542ecc flattened conditional nesting
meillo@marmaro.de
parents: 14
diff changeset
1006 route->connect_error_fail = TRUE;
10
26e34ae9a3e3 changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents: 0
diff changeset
1007 return route;
0
08114f7dcc23 this is masqmail-0.2.21 from oliver kurth
meillo@marmaro.de
parents:
diff changeset
1008 }