Mercurial > masqmail
annotate src/route.c @ 358:92340177150d
Eventually switched the default group from `trusted' to `mail'
All systems I run have a group `mail' but no group `trusted'.
Also changed the uid/gid to the common values 8/12.
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Sun, 04 Sep 2011 12:19:41 +0200 |
parents | ddb7b3fd3d08 |
children | 41958685480d |
rev | line source |
---|---|
0 | 1 /* MasqMail |
2 Copyright (C) 1999-2001 Oliver Kurth | |
241
87df0aa99cc7
added myself to the copyright notice of route.c
markus schnalke <meillo@marmaro.de>
parents:
237
diff
changeset
|
3 Copyright (C) 2010 markus schnalke <meillo@marmaro.de> |
0 | 4 |
5 This program is free software; you can redistribute it and/or modify | |
6 it under the terms of the GNU General Public License as published by | |
7 the Free Software Foundation; either version 2 of the License, or | |
8 (at your option) any later version. | |
9 | |
10 This program is distributed in the hope that it will be useful, | |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 GNU General Public License for more details. | |
14 | |
15 You should have received a copy of the GNU General Public License | |
16 along with this program; if not, write to the Free Software | |
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | |
18 */ | |
19 | |
15 | 20 #include <fnmatch.h> |
21 | |
0 | 22 #include "masqmail.h" |
23 | |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
24 msgout_perhost* |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
25 create_msgout_perhost(gchar * host) |
0 | 26 { |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
27 msgout_perhost *mo_ph = g_malloc(sizeof(msgout_perhost)); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
28 if (mo_ph) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
29 mo_ph->host = g_strdup(host); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
30 mo_ph->msgout_list = NULL; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
31 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
32 return mo_ph; |
0 | 33 } |
34 | |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
35 void |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
36 destroy_msgout_perhost(msgout_perhost * mo_ph) |
0 | 37 { |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
38 GList *mo_node; |
0 | 39 |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
40 foreach(mo_ph->msgout_list, mo_node) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
41 msg_out *mo = (msg_out *) (mo_node->data); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
42 /* the rcpt_list is owned by the msgout's, but not the rcpt's themselves */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
43 g_list_free(mo->rcpt_list); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
44 g_free(mo); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
45 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
46 g_list_free(mo_ph->msgout_list); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
47 g_free(mo_ph); |
0 | 48 } |
49 | |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
50 void |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
51 rewrite_headers(msg_out * msgout, connect_route * route) |
0 | 52 { |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
53 /* if set_h_from_domain is set, replace domain in all |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
54 From: headers. |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
55 */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
56 msgout->hdr_list = g_list_copy(msgout->msg->hdr_list); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
57 |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
58 /* map from addresses */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
59 if (route->map_h_from_addresses != NULL) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
60 GList *hdr_node; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
61 foreach(msgout->hdr_list, hdr_node) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
62 header *hdr = (header *) (hdr_node->data); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
63 if (hdr->id == HEAD_FROM) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
64 header *new_hdr = copy_header(hdr); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
65 if (map_address_header(new_hdr, route->map_h_from_addresses)) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
66 hdr_node->data = new_hdr; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
67 /* we need this list only to carefully free the extra headers: */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
68 msgout->xtra_hdr_list = g_list_append(msgout->xtra_hdr_list, new_hdr); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
69 } else |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
70 g_free(new_hdr); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
71 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
72 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
73 } else { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
74 /* replace from domain */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
75 if (route->set_h_from_domain != NULL) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
76 GList *hdr_node; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
77 |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
78 foreach(msgout->hdr_list, hdr_node) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
79 header *hdr = (header *) (hdr_node->data); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
80 if (hdr->id == HEAD_FROM) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
81 header *new_hdr = copy_header(hdr); |
0 | 82 |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
83 DEBUG(5) debugf("setting From: domain to %s\n", route->set_h_from_domain); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
84 if (set_address_header_domain(new_hdr, route->set_h_from_domain)) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
85 hdr_node->data = new_hdr; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
86 /* we need this list only to carefully free the extra headers: */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
87 DEBUG(6) debugf("header = %s\n", new_hdr->header); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
88 msgout->xtra_hdr_list = g_list_append(msgout->xtra_hdr_list, new_hdr); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
89 } else { |
15 | 90 logwrite(LOG_ALERT, "error in set_address_header_domain(%s, %s)\n", |
91 new_hdr->value, route->set_h_from_domain); | |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
92 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
93 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
94 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
95 } |
0 | 96 } |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
97 |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
98 /* map reply-to addresses */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
99 if (route->map_h_reply_to_addresses != NULL) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
100 GList *hdr_node; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
101 foreach(msgout->hdr_list, hdr_node) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
102 header *hdr = (header *) (hdr_node->data); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
103 if (hdr->id == HEAD_REPLY_TO) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
104 header *new_hdr = copy_header(hdr); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
105 if (map_address_header |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
106 (new_hdr, route->map_h_reply_to_addresses)) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
107 hdr_node->data = new_hdr; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
108 /* we need this list only to carefully free the extra headers: */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
109 msgout->xtra_hdr_list = g_list_append(msgout->xtra_hdr_list, new_hdr); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
110 } else |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
111 g_free(new_hdr); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
112 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
113 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
114 } else { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
115 /* replace Reply-to domain */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
116 if (route->set_h_reply_to_domain != NULL) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
117 GList *hdr_node; |
0 | 118 |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
119 foreach(msgout->hdr_list, hdr_node) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
120 header *hdr = (header *) (hdr_node->data); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
121 if (hdr->id == HEAD_REPLY_TO) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
122 header *new_hdr = copy_header(hdr); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
123 |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
124 set_address_header_domain(new_hdr, route-> set_h_reply_to_domain); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
125 hdr_node->data = new_hdr; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
126 /* we need this list only to carefully free the extra headers: */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
127 msgout->xtra_hdr_list = g_list_append(msgout->xtra_hdr_list, new_hdr); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
128 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
129 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
130 } |
0 | 131 } |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
132 |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
133 /* map Mail-Followup-To addresses */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
134 if (route->map_h_mail_followup_to_addresses != NULL) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
135 GList *hdr_node; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
136 foreach(msgout->hdr_list, hdr_node) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
137 header *hdr = (header *) (hdr_node->data); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
138 if (strncasecmp(hdr->header, "Mail-Followup-To", 16) == 0) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
139 header *new_hdr = copy_header(hdr); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
140 if (map_address_header(new_hdr, route->map_h_mail_followup_to_addresses)) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
141 hdr_node->data = new_hdr; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
142 /* we need this list only to carefully free the extra headers: */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
143 msgout->xtra_hdr_list = g_list_append(msgout->xtra_hdr_list, new_hdr); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
144 } else |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
145 g_free(new_hdr); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
146 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
147 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
148 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
149 |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
150 /* set Sender: domain to return_path->domain */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
151 if (route->expand_h_sender_domain) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
152 GList *hdr_node; |
0 | 153 |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
154 foreach(msgout->hdr_list, hdr_node) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
155 header *hdr = (header *) (hdr_node->data); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
156 if (hdr->id == HEAD_SENDER) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
157 header *new_hdr = copy_header(hdr); |
0 | 158 |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
159 set_address_header_domain(new_hdr, msgout->return_path->domain); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
160 hdr_node->data = new_hdr; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
161 /* we need this list only to carefully free the extra headers: */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
162 msgout->xtra_hdr_list = g_list_append(msgout->xtra_hdr_list, new_hdr); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
163 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
164 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
165 } |
0 | 166 |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
167 /* set Sender: domain to return_path->domain */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
168 if (route->expand_h_sender_address) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
169 GList *hdr_node; |
0 | 170 |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
171 foreach(msgout->hdr_list, hdr_node) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
172 header *hdr = (header *) (hdr_node->data); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
173 if (hdr->id == HEAD_SENDER) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
174 header *new_hdr; |
0 | 175 |
15 | 176 new_hdr = create_header(HEAD_SENDER, "Sender: %s@%s\n", |
177 msgout->return_path->local_part, msgout->return_path->domain); | |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
178 hdr_node->data = new_hdr; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
179 /* we need this list only to carefully free the extra headers: */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
180 msgout->xtra_hdr_list = g_list_append(msgout->xtra_hdr_list, new_hdr); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
181 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
182 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
183 } |
0 | 184 |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
185 if (msgout->xtra_hdr_list == NULL) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
186 /* nothing was changed */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
187 g_list_free(msgout->hdr_list); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
188 msgout->hdr_list = NULL; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
189 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
190 DEBUG(5) debugf("rewrite_headers() returning\n"); |
0 | 191 } |
192 | |
237
5f9f3a65032e
refactoring: new function split_rcpts() replaces two others
markus schnalke <meillo@marmaro.de>
parents:
114
diff
changeset
|
193 /* |
5f9f3a65032e
refactoring: new function split_rcpts() replaces two others
markus schnalke <meillo@marmaro.de>
parents:
114
diff
changeset
|
194 Split a recipient list into the three groups: |
5f9f3a65032e
refactoring: new function split_rcpts() replaces two others
markus schnalke <meillo@marmaro.de>
parents:
114
diff
changeset
|
195 - local recipients |
355
ddb7b3fd3d08
found further appearences of ``localnet'' in the code
markus schnalke <meillo@marmaro.de>
parents:
345
diff
changeset
|
196 - those maching the patterns |
ddb7b3fd3d08
found further appearences of ``localnet'' in the code
markus schnalke <meillo@marmaro.de>
parents:
345
diff
changeset
|
197 - those not matching the patterns |
ddb7b3fd3d08
found further appearences of ``localnet'' in the code
markus schnalke <meillo@marmaro.de>
parents:
345
diff
changeset
|
198 If patterns is NULL: only splitting between local and others is done. |
237
5f9f3a65032e
refactoring: new function split_rcpts() replaces two others
markus schnalke <meillo@marmaro.de>
parents:
114
diff
changeset
|
199 */ |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
200 void |
355
ddb7b3fd3d08
found further appearences of ``localnet'' in the code
markus schnalke <meillo@marmaro.de>
parents:
345
diff
changeset
|
201 split_rcpts(GList* rcpt_list, GList* patterns, GList** rl_local, GList** rl_matching, GList** rl_others) |
0 | 202 { |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
203 GList *rcpt_node; |
237
5f9f3a65032e
refactoring: new function split_rcpts() replaces two others
markus schnalke <meillo@marmaro.de>
parents:
114
diff
changeset
|
204 GList *host_node = NULL; |
5f9f3a65032e
refactoring: new function split_rcpts() replaces two others
markus schnalke <meillo@marmaro.de>
parents:
114
diff
changeset
|
205 address *rcpt = NULL; |
0 | 206 |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
207 if (rcpt_list == NULL) |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
208 return; |
0 | 209 |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
210 foreach(rcpt_list, rcpt_node) { |
237
5f9f3a65032e
refactoring: new function split_rcpts() replaces two others
markus schnalke <meillo@marmaro.de>
parents:
114
diff
changeset
|
211 rcpt = (address *) (rcpt_node->data); |
5f9f3a65032e
refactoring: new function split_rcpts() replaces two others
markus schnalke <meillo@marmaro.de>
parents:
114
diff
changeset
|
212 host_node = NULL; |
0 | 213 |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
214 if (addr_is_local(rcpt)) { |
237
5f9f3a65032e
refactoring: new function split_rcpts() replaces two others
markus schnalke <meillo@marmaro.de>
parents:
114
diff
changeset
|
215 if (rl_local) |
5f9f3a65032e
refactoring: new function split_rcpts() replaces two others
markus schnalke <meillo@marmaro.de>
parents:
114
diff
changeset
|
216 *rl_local = g_list_append(*rl_local, rcpt); |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
217 } else { |
355
ddb7b3fd3d08
found further appearences of ``localnet'' in the code
markus schnalke <meillo@marmaro.de>
parents:
345
diff
changeset
|
218 /* if patterns is NULL, host_node will be NULL, |
237
5f9f3a65032e
refactoring: new function split_rcpts() replaces two others
markus schnalke <meillo@marmaro.de>
parents:
114
diff
changeset
|
219 hence all non-locals are put to others */ |
355
ddb7b3fd3d08
found further appearences of ``localnet'' in the code
markus schnalke <meillo@marmaro.de>
parents:
345
diff
changeset
|
220 foreach(patterns, host_node) { |
237
5f9f3a65032e
refactoring: new function split_rcpts() replaces two others
markus schnalke <meillo@marmaro.de>
parents:
114
diff
changeset
|
221 gchar *host = (gchar *) (host_node->data); |
5f9f3a65032e
refactoring: new function split_rcpts() replaces two others
markus schnalke <meillo@marmaro.de>
parents:
114
diff
changeset
|
222 if (fnmatch(host, rcpt->domain, FNM_CASEFOLD) == 0) |
5f9f3a65032e
refactoring: new function split_rcpts() replaces two others
markus schnalke <meillo@marmaro.de>
parents:
114
diff
changeset
|
223 break; |
5f9f3a65032e
refactoring: new function split_rcpts() replaces two others
markus schnalke <meillo@marmaro.de>
parents:
114
diff
changeset
|
224 } |
5f9f3a65032e
refactoring: new function split_rcpts() replaces two others
markus schnalke <meillo@marmaro.de>
parents:
114
diff
changeset
|
225 if (host_node) { |
355
ddb7b3fd3d08
found further appearences of ``localnet'' in the code
markus schnalke <meillo@marmaro.de>
parents:
345
diff
changeset
|
226 if (rl_matching) |
ddb7b3fd3d08
found further appearences of ``localnet'' in the code
markus schnalke <meillo@marmaro.de>
parents:
345
diff
changeset
|
227 *rl_matching = g_list_append(*rl_matching, rcpt); |
237
5f9f3a65032e
refactoring: new function split_rcpts() replaces two others
markus schnalke <meillo@marmaro.de>
parents:
114
diff
changeset
|
228 } else { |
5f9f3a65032e
refactoring: new function split_rcpts() replaces two others
markus schnalke <meillo@marmaro.de>
parents:
114
diff
changeset
|
229 if (rl_others) |
5f9f3a65032e
refactoring: new function split_rcpts() replaces two others
markus schnalke <meillo@marmaro.de>
parents:
114
diff
changeset
|
230 *rl_others = g_list_append(*rl_others, rcpt); |
5f9f3a65032e
refactoring: new function split_rcpts() replaces two others
markus schnalke <meillo@marmaro.de>
parents:
114
diff
changeset
|
231 } |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
232 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
233 } |
0 | 234 } |
235 | |
345
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
236 /* |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
237 Return a new list of the local rcpts in the rcpt_list |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
238 TODO: This function is almost exactly the same as remote_rcpts(). Merge? |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
239 */ |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
240 GList* |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
241 local_rcpts(GList* rcpt_list) |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
242 { |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
243 GList *rcpt_node; |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
244 GList *local_rcpts = NULL; |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
245 address *rcpt = NULL; |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
246 |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
247 if (!rcpt_list) { |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
248 return NULL; |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
249 } |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
250 foreach(rcpt_list, rcpt_node) { |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
251 rcpt = (address *) (rcpt_node->data); |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
252 if (addr_is_local(rcpt)) { |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
253 local_rcpts = g_list_append(local_rcpts, rcpt); |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
254 } |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
255 } |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
256 return local_rcpts; |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
257 } |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
258 |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
259 /* |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
260 Return a new list of non-local rcpts in the rcpt_list |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
261 TODO: This function is almost exactly the same as local_rcpts(). Merge? |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
262 */ |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
263 GList* |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
264 remote_rcpts(GList* rcpt_list) |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
265 { |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
266 GList *rcpt_node; |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
267 GList *remote_rcpts = NULL; |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
268 address *rcpt = NULL; |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
269 |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
270 if (!rcpt_list) { |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
271 return NULL; |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
272 } |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
273 foreach(rcpt_list, rcpt_node) { |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
274 rcpt = (address *) (rcpt_node->data); |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
275 if (!addr_is_local(rcpt)) { |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
276 remote_rcpts = g_list_append(remote_rcpts, rcpt); |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
277 } |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
278 } |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
279 return remote_rcpts; |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
280 } |
257ffce6c1cd
added local_rcpts() and remote_rcpts() for later use
markus schnalke <meillo@marmaro.de>
parents:
317
diff
changeset
|
281 |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
282 static gint |
317
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
283 _g_list_addrcmp(gconstpointer pattern, gconstpointer addr) |
0 | 284 { |
317
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
285 int res; |
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
286 address* patternaddr = (address*) pattern; |
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
287 address* stringaddr = (address*) addr; |
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
288 |
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
289 DEBUG(6) debugf("_g_list_addrcmp: pattern `%s' `%s' on string `%s' `%s'\n", |
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
290 patternaddr->local_part, patternaddr->domain, |
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
291 stringaddr->local_part, stringaddr->domain); |
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
292 /* TODO: check if we should match here dependent on caseless_matching */ |
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
293 res = fnmatch(patternaddr->local_part, stringaddr->local_part, 0); |
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
294 if (res != 0) { |
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
295 DEBUG(6) debugf("_g_list_addrcmp: ... failed on local_part\n"); |
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
296 return res; |
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
297 } |
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
298 res = fnmatch(patternaddr->domain, stringaddr->domain, FNM_CASEFOLD); |
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
299 DEBUG(6) debugf("_g_list_addrcmp: ... %s\n", (res==0) ? "matched" : "failed on domain"); |
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
300 return res; |
0 | 301 } |
302 | |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
303 gboolean |
317
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
304 route_sender_is_allowed(connect_route * route, address * ret_path) |
0 | 305 { |
317
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
306 if (route->denied_senders && g_list_find_custom(route->denied_senders, ret_path, _g_list_addrcmp)) { |
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
307 return FALSE; |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
308 } |
317
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
309 if (route->allowed_senders) { |
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
310 if (g_list_find_custom(route->allowed_senders, ret_path, _g_list_addrcmp)) { |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
311 return TRUE; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
312 } else { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
313 return FALSE; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
314 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
315 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
316 return TRUE; |
0 | 317 } |
318 | |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
319 /* |
0 | 320 Make lists of matching/not matching rcpts. |
321 Local domains are NOT regared here, these should be sorted out previously | |
322 */ | |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
323 void |
317
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
324 route_split_rcpts(connect_route * route, GList * rcpt_list, GList ** p_rcpt_list, GList ** p_non_rcpt_list) |
0 | 325 { |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
326 GList *tmp_list = NULL; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
327 /* sort out those domains that can be sent over this connection: */ |
317
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
328 if (route->allowed_recipients) { |
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
329 DEBUG(5) debugf("testing for route->allowed_recipients\n"); |
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
330 split_rcpts(rcpt_list, route->allowed_recipients, NULL, &tmp_list, p_non_rcpt_list); |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
331 } else { |
317
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
332 DEBUG(5) debugf("route->allowed_recipients == NULL\n"); |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
333 tmp_list = g_list_copy(rcpt_list); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
334 } |
0 | 335 |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
336 /* sort out those domains that cannot be sent over this connection: */ |
317
55b7bde95d37
reworked allowed and denied addrs for routes
meillo@marmaro.de
parents:
241
diff
changeset
|
337 split_rcpts(tmp_list, route->denied_recipients, NULL, p_non_rcpt_list, p_rcpt_list); |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
338 g_list_free(tmp_list); |
0 | 339 } |
340 | |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
341 msg_out* |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
342 route_prepare_msgout(connect_route * route, msg_out * msgout) |
0 | 343 { |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
344 message *msg = msgout->msg; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
345 GList *rcpt_list = msgout->rcpt_list; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
346 |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
347 if (rcpt_list != NULL) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
348 /* found a few */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
349 DEBUG(5) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
350 GList *node; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
351 debugf("rcpts for routed delivery, route = %s, id = %s\n", route->name, msg->uid); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
352 foreach(rcpt_list, node) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
353 address *rcpt = (address *) (node->data); |
114 | 354 debugf(" rcpt for routed delivery: <%s@%s>\n", |
355 rcpt->local_part, rcpt->domain); | |
10
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 } |
0 | 358 |
15 | 359 /* rewrite return path if there is a table, use that |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
360 if an address is found and if it has a domain, use that |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
361 */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
362 if (route->map_return_path_addresses) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
363 address *ret_path = NULL; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
364 DEBUG(5) debugf("looking up %s in map_return_path_addresses\n", msg->return_path->local_part); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
365 ret_path = (address *) table_find_fnmatch(route->map_return_path_addresses, msg->return_path->local_part); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
366 if (ret_path) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
367 DEBUG(5) debugf("found <%s@%s>\n", ret_path->local_part, ret_path->domain); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
368 if (ret_path->domain == NULL) |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
369 ret_path->domain = route->set_return_path_domain |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
370 ? route->set_return_path_domain |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
371 : msg->return_path->domain; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
372 msgout->return_path = copy_address(ret_path); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
373 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
374 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
375 if (msgout->return_path == NULL) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
376 DEBUG(5) debugf("setting return path to %s\n", route->set_return_path_domain); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
377 msgout->return_path = copy_modify_address(msg->return_path, NULL, route->set_return_path_domain); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
378 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
379 rewrite_headers(msgout, route); |
0 | 380 |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
381 return msgout; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
382 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
383 return NULL; |
0 | 384 } |
385 | |
386 /* put msgout's is msgout_list into bins (msgout_perhost structs) for each | |
387 host. Used if there is no mail_host. | |
388 route param is not used, we leave it here because that may change. | |
389 */ | |
390 | |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
391 GList* |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
392 route_msgout_list(connect_route * route, GList * msgout_list) |
0 | 393 { |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
394 GList *mo_ph_list = NULL; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
395 GList *msgout_node; |
0 | 396 |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
397 foreach(msgout_list, msgout_node) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
398 msg_out *msgout = (msg_out *) (msgout_node->data); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
399 msg_out *msgout_new; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
400 GList *rcpt_list = msgout->rcpt_list; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
401 GList *rcpt_node; |
0 | 402 |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
403 foreach(rcpt_list, rcpt_node) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
404 address *rcpt = rcpt_node->data; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
405 msgout_perhost *mo_ph = NULL; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
406 GList *mo_ph_node = NULL; |
0 | 407 |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
408 /* search host in mo_ph_list */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
409 foreach(mo_ph_list, mo_ph_node) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
410 mo_ph = (msgout_perhost *) (mo_ph_node->data); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
411 if (strcasecmp(mo_ph->host, rcpt->domain) == 0) |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
412 break; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
413 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
414 if (mo_ph_node != NULL) { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
415 /* there is already a rcpt for this host */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
416 msg_out *msgout_last = (msg_out *) ((g_list_last(mo_ph->msgout_list))->data); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
417 if (msgout_last->msg == msgout->msg) { |
15 | 418 /* if it is also the same message, it must be the last one appended |
419 to mo_ph->msgout_list (since outer loop goes through msgout_list) */ | |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
420 msgout_last->rcpt_list = g_list_append(msgout_last->rcpt_list, rcpt); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
421 } else { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
422 /* if not, we append a new msgout */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
423 /* make a copy of msgout */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
424 msgout_new = create_msg_out(msgout->msg); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
425 msgout_new->return_path = msgout->return_path; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
426 msgout_new->hdr_list = msgout->hdr_list; |
0 | 427 |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
428 /* append our rcpt to it */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
429 /* It is the 1st rcpt for this msg to this host, therefore we safely give NULL */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
430 msgout_new->rcpt_list = g_list_append(NULL, rcpt); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
431 mo_ph->msgout_list = g_list_append(mo_ph->msgout_list, msgout_new); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
432 } |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
433 } else { |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
434 /* this rcpt to goes to another host */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
435 mo_ph = create_msgout_perhost(rcpt->domain); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
436 mo_ph_list = g_list_append(mo_ph_list, mo_ph); |
0 | 437 |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
438 /* make a copy of msgout */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
439 msgout_new = create_msg_out(msgout->msg); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
440 msgout_new->return_path = msgout->return_path; |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
441 msgout_new->hdr_list = msgout->hdr_list; |
0 | 442 |
10
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
443 /* append our rcpt to it */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
444 /* It is the 1st rcpt for this msg to this host, therefore we safely give NULL */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
445 msgout_new->rcpt_list = g_list_append(NULL, rcpt); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
446 mo_ph->msgout_list = g_list_append(mo_ph->msgout_list, msgout_new); |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
447 } /* if mo_ph != NULL */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
448 } /* foreach(rcpt_list, ... */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
449 } /* foreach(msgout_list, ... */ |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
450 |
26e34ae9a3e3
changed indention and line wrapping to a more consistent style
meillo@marmaro.de
parents:
0
diff
changeset
|
451 return mo_ph_list; |
0 | 452 } |