masqmail

annotate src/accept.c @ 270:0c44b239c7fe

refactoring in the small
author markus schnalke <meillo@marmaro.de>
date Fri, 03 Dec 2010 13:02:45 -0300
parents fd1d77e5a5da
children 1405012509e3
rev   line source
meillo@0 1 /* MasqMail
meillo@0 2 Copyright (C) 1999-2001 Oliver Kurth
meillo@224 3 Copyright (C) 2010 markus schnalke <meillo@marmaro.de>
meillo@0 4
meillo@0 5 This program is free software; you can redistribute it and/or modify
meillo@0 6 it under the terms of the GNU General Public License as published by
meillo@0 7 the Free Software Foundation; either version 2 of the License, or
meillo@0 8 (at your option) any later version.
meillo@0 9
meillo@0 10 This program is distributed in the hope that it will be useful,
meillo@0 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
meillo@0 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
meillo@0 13 GNU General Public License for more details.
meillo@0 14
meillo@0 15 You should have received a copy of the GNU General Public License
meillo@0 16 along with this program; if not, write to the Free Software
meillo@0 17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
meillo@0 18 */
meillo@0 19
meillo@0 20 #include "masqmail.h"
meillo@0 21 #include "readsock.h"
meillo@0 22
meillo@10 23 gchar *prot_names[] = {
meillo@10 24 "local",
meillo@10 25 "bsmtp",
meillo@10 26 "smtp",
meillo@10 27 "esmtp",
meillo@10 28 "(unknown)" /* should not happen, but better than crashing. */
meillo@0 29 };
meillo@0 30
meillo@10 31 static gchar*
meillo@10 32 string_base62(gchar * res, guint value, gchar len)
meillo@0 33 {
meillo@10 34 static gchar base62_chars[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
meillo@10 35 gchar *p = res + len;
meillo@14 36 *p = '\0';
meillo@10 37 while (p > res) {
meillo@10 38 *(--p) = base62_chars[value % 62];
meillo@10 39 value /= 62;
meillo@10 40 }
meillo@10 41 return res;
meillo@0 42 }
meillo@0 43
meillo@10 44 static gint
meillo@10 45 _g_list_addr_isequal(gconstpointer a, gconstpointer b)
meillo@0 46 {
meillo@10 47 address *addr1 = (address *) a;
meillo@10 48 address *addr2 = (address *) b;
meillo@10 49 int ret;
meillo@0 50
meillo@270 51 if ((ret = strcasecmp(addr1->domain, addr2->domain)) == 0) {
meillo@10 52 return strcmp(addr1->local_part, addr2->local_part);
meillo@270 53 }
meillo@270 54 return ret;
meillo@0 55 }
meillo@0 56
meillo@0 57 /* accept message from anywhere.
meillo@0 58 A locally originating message is indicated by msg->recieved_host == NULL
meillo@0 59
meillo@109 60 The -t option:
meillo@109 61 The ACC_RCPT_FROM_HEAD flag adds the recipients found in To/Cc/Bcc
meillo@268 62 headers to the recipients list. The recipients given on the
meillo@109 63 command line are removed from the ones given in headers.
meillo@0 64 */
meillo@0 65
meillo@10 66 accept_error
meillo@10 67 accept_message_stream(FILE * in, message * msg, guint flags)
meillo@0 68 {
meillo@10 69 gchar *line, *line1;
meillo@10 70 int line_size = MAX_DATALINE;
meillo@10 71 gboolean in_headers = TRUE;
meillo@10 72 header *hdr = NULL;
meillo@10 73 gint line_cnt = 0, data_size = 0;
meillo@0 74
meillo@10 75 line = g_malloc(line_size);
meillo@14 76 line[0] = '\0';
meillo@0 77
meillo@10 78 while (TRUE) {
meillo@10 79 int len = read_sockline1(in, &line, &line_size, 5 * 60, READSOCKL_CVT_CRLF);
meillo@0 80
meillo@10 81 line1 = line;
meillo@0 82
meillo@110 83 if ((line[0] == '.') && (!(flags & ACC_DOT_IGNORE))) {
meillo@10 84 if (line[1] == '\n') {
meillo@10 85 g_free(line);
meillo@10 86 break;
meillo@10 87 }
meillo@10 88 line1++;
meillo@10 89 }
meillo@10 90
meillo@270 91 if ((len == -1) && (flags & (ACC_DOT_IGNORE | ACC_NODOT_RELAX))) {
meillo@270 92 /* we got an EOF, and the last line was not terminated by a CR */
meillo@270 93 gint len1 = strlen(line1);
meillo@270 94 if (len1 > 0) { /* == 0 is 'normal' (EOF after a CR) */
meillo@270 95 if (line1[len1 - 1] != '\n') { /* some mail clients allow unterminated lines */
meillo@270 96 line1[len1] = '\n';
meillo@270 97 line1[len1 + 1] = '\0';
meillo@270 98 msg->data_list = g_list_prepend(msg->data_list, g_strdup(line1));
meillo@270 99 data_size += strlen(line1);
meillo@270 100 line_cnt++;
meillo@10 101 }
meillo@270 102 }
meillo@270 103 break;
meillo@270 104
meillo@270 105 } else if (len == -1) {
meillo@270 106 g_free(line);
meillo@270 107 return AERR_EOF;
meillo@270 108
meillo@270 109 } else if (len == -2) {
meillo@270 110 /* should not happen any more */
meillo@270 111 g_free(line);
meillo@270 112 return AERR_OVERFLOW;
meillo@270 113
meillo@270 114 } else if (len == -3) {
meillo@270 115 g_free(line);
meillo@270 116 return AERR_TIMEOUT;
meillo@270 117
meillo@270 118 } else if (len <= 0) {
meillo@270 119 /* does not happen */
meillo@270 120 g_free(line);
meillo@270 121 DEBUG(5) debugf("read_sockline returned %d\n", len);
meillo@270 122 return AERR_UNKNOWN;
meillo@270 123
meillo@270 124 }
meillo@270 125
meillo@270 126 if (in_headers) {
meillo@270 127
meillo@270 128 /* some pop servers send the 'From ' line, skip it: */
meillo@270 129 if (!msg->hdr_list && strncmp(line1, "From ", 5) == 0) {
meillo@270 130 continue;
meillo@270 131 }
meillo@270 132
meillo@270 133 if (line1[0] == ' ' || line1[0] == '\t') {
meillo@270 134 /* continuation of 'folded' header: */
meillo@270 135 if (hdr) {
meillo@270 136 hdr->header = g_strconcat(hdr->header, line1, NULL);
meillo@270 137 }
meillo@270 138
meillo@270 139 } else if (line1[0] == '\n') {
meillo@270 140 /* an empty line marks end of headers */
meillo@270 141 in_headers = FALSE;
meillo@10 142 } else {
meillo@270 143 /* in all other cases we expect another header */
meillo@270 144 if ((hdr = get_header(line1))) {
meillo@270 145 msg->hdr_list = g_list_append(msg->hdr_list, hdr);
meillo@10 146 } else {
meillo@270 147 /* if get_header() returns NULL, no header was recognized,
meillo@270 148 so this seems to be the first data line of a broken mailer
meillo@270 149 which does not send an empty line after the headers */
meillo@270 150 in_headers = FALSE;
meillo@270 151 msg->data_list = g_list_prepend(msg->data_list, g_strdup(line1));
meillo@10 152 }
meillo@10 153 }
meillo@10 154 } else {
meillo@270 155 /* message body */
meillo@270 156 msg->data_list = g_list_prepend(msg->data_list, g_strdup(line1));
meillo@270 157 data_size += strlen(line1);
meillo@270 158 line_cnt++;
meillo@270 159 }
meillo@10 160
meillo@120 161 if (conf.max_msg_size && (data_size > conf.max_msg_size)) {
meillo@117 162 DEBUG(4) debugf("accept_message_stream(): "
meillo@117 163 "received %d bytes (conf.max_msg_size=%d)\n",
meillo@117 164 data_size, conf.max_msg_size);
meillo@117 165 return AERR_SIZE;
meillo@117 166 }
meillo@117 167
meillo@0 168 }
meillo@0 169
meillo@270 170 DEBUG(4) debugf("received %d lines of data (%d bytes)\n", line_cnt, data_size);
meillo@270 171
meillo@270 172 if (!msg->data_list) {
meillo@10 173 /* make sure data list is not NULL: */
meillo@10 174 msg->data_list = g_list_append(NULL, g_strdup(""));
meillo@270 175 }
meillo@270 176 msg->data_list = g_list_reverse(msg->data_list);
meillo@0 177
meillo@10 178 /* we get here after we succesfully received the mail data */
meillo@0 179
meillo@10 180 msg->data_size = data_size;
meillo@10 181 msg->received_time = time(NULL);
meillo@0 182
meillo@10 183 return AERR_OK;
meillo@0 184 }
meillo@0 185
meillo@10 186 accept_error
meillo@10 187 accept_message_prepare(message * msg, guint flags)
meillo@0 188 {
meillo@10 189 struct passwd *passwd = NULL;
meillo@10 190 GList *non_rcpt_list = NULL;
meillo@10 191 time_t rec_time = time(NULL);
meillo@0 192
meillo@10 193 DEBUG(5) debugf("accept_message_prepare()\n");
meillo@0 194
meillo@10 195 /* create unique message id */
meillo@10 196 msg->uid = g_malloc(14);
meillo@0 197
meillo@10 198 string_base62(msg->uid, rec_time, 6);
meillo@10 199 msg->uid[6] = '-';
meillo@10 200 string_base62(&(msg->uid[7]), getpid(), 3);
meillo@10 201 msg->uid[10] = '-';
meillo@10 202 string_base62(&(msg->uid[11]), msg->transfer_id, 2);
meillo@10 203 msg->uid[13] = 0;
meillo@0 204
meillo@10 205 /* if local, get password entry */
meillo@10 206 if (msg->received_host == NULL) {
meillo@10 207 passwd = g_memdup(getpwuid(geteuid()), sizeof(struct passwd));
meillo@10 208 msg->ident = g_strdup(passwd->pw_name);
meillo@10 209 }
meillo@0 210
meillo@10 211 /* set return path if local */
meillo@22 212 if (msg->return_path == NULL && msg->received_host == NULL) {
meillo@22 213 gchar *path = g_strdup_printf("<%s@%s>", passwd->pw_name, conf.host_name);
meillo@22 214 DEBUG(3) debugf("setting return_path for local accept: %s\n", path);
meillo@22 215 msg->return_path = create_address(path, TRUE);
meillo@22 216 g_free(path);
meillo@10 217 }
meillo@0 218
meillo@109 219 /* -t option (see comment above) */
meillo@268 220 if (flags & ACC_RCPT_FROM_HEAD) {
meillo@10 221 non_rcpt_list = msg->rcpt_list;
meillo@10 222 msg->rcpt_list = NULL;
meillo@10 223 }
meillo@0 224
meillo@10 225 /* scan headers */
meillo@10 226 {
meillo@10 227 gboolean has_id = FALSE;
meillo@10 228 gboolean has_date = FALSE;
meillo@10 229 gboolean has_sender = FALSE;
meillo@10 230 gboolean has_from = FALSE;
meillo@10 231 gboolean has_to_or_cc = FALSE;
meillo@10 232 GList *hdr_node, *hdr_node_next;
meillo@10 233 header *hdr;
meillo@0 234
meillo@10 235 for (hdr_node = g_list_first(msg->hdr_list);
meillo@10 236 hdr_node != NULL; hdr_node = hdr_node_next) {
meillo@10 237 hdr_node_next = g_list_next(hdr_node);
meillo@10 238 hdr = ((header *) (hdr_node->data));
meillo@10 239 DEBUG(5) debugf("scanning headers: %s", hdr->header);
meillo@10 240 switch (hdr->id) {
meillo@10 241 case HEAD_MESSAGE_ID:
meillo@10 242 has_id = TRUE;
meillo@10 243 break;
meillo@10 244 case HEAD_DATE:
meillo@10 245 has_date = TRUE;
meillo@10 246 break;
meillo@10 247 case HEAD_FROM:
meillo@10 248 has_from = TRUE;
meillo@10 249 break;
meillo@10 250 case HEAD_SENDER:
meillo@10 251 has_sender = TRUE;
meillo@10 252 break;
meillo@10 253 case HEAD_TO:
meillo@10 254 case HEAD_CC:
meillo@106 255 has_to_or_cc = TRUE;
meillo@106 256 /* fall through */
meillo@10 257 case HEAD_BCC:
meillo@10 258 if (flags & ACC_RCPT_FROM_HEAD) {
meillo@109 259 /* -t option (see comment above) */
meillo@10 260 DEBUG(5) debugf("hdr->value = %s\n", hdr->value);
meillo@269 261 /* FIXME: `To: alice, bob' makes problems */
meillo@10 262 if (hdr->value) {
meillo@10 263 msg->rcpt_list = addr_list_append_rfc822(msg->rcpt_list, hdr->value, conf.host_name);
meillo@10 264 }
meillo@10 265 }
meillo@106 266 if (hdr->id == HEAD_BCC) {
meillo@10 267 DEBUG(3) debugf("removing 'Bcc' header\n");
meillo@10 268 msg->hdr_list = g_list_remove_link(msg->hdr_list, hdr_node);
meillo@10 269 g_list_free_1(hdr_node);
meillo@10 270 destroy_header(hdr);
meillo@106 271 }
meillo@10 272 break;
meillo@10 273 case HEAD_ENVELOPE_TO:
meillo@10 274 if (flags & ACC_SAVE_ENVELOPE_TO) {
meillo@10 275 DEBUG(3) debugf("creating 'X-Orig-Envelope-To' header\n");
meillo@22 276 msg->hdr_list = g_list_prepend(msg->hdr_list, create_header(HEAD_UNKNOWN,
meillo@22 277 "X-Orig-Envelope-to: %s", hdr->value));
meillo@10 278 }
meillo@10 279 DEBUG(3) debugf("removing 'Envelope-To' header\n");
meillo@10 280 msg->hdr_list = g_list_remove_link(msg->hdr_list, hdr_node);
meillo@10 281 g_list_free_1(hdr_node);
meillo@10 282 destroy_header(hdr);
meillo@10 283 break;
meillo@10 284 case HEAD_RETURN_PATH:
meillo@10 285 if (flags & ACC_MAIL_FROM_HEAD) {
meillo@10 286 /* usually POP3 accept */
meillo@10 287 msg->return_path = create_address_qualified(hdr->value, TRUE, msg->received_host);
meillo@10 288 DEBUG(3) debugf("setting return_path to %s\n", addr_string(msg->return_path));
meillo@10 289 }
meillo@10 290 DEBUG(3) debugf("removing 'Return-Path' header\n");
meillo@10 291 msg->hdr_list = g_list_remove_link(msg->hdr_list, hdr_node);
meillo@10 292 g_list_free_1(hdr_node);
meillo@10 293 destroy_header(hdr);
meillo@10 294 break;
meillo@10 295 default:
meillo@10 296 break; /* make compiler happy */
meillo@10 297 }
meillo@10 298 }
meillo@10 299
meillo@10 300 if (msg->return_path == NULL) {
meillo@10 301 /* this can happen for pop3 accept only and if no Return-path: header was given */
meillo@10 302 GList *hdr_list;
meillo@10 303 header *hdr;
meillo@10 304
meillo@10 305 DEBUG(3) debugf("return_path == NULL\n");
meillo@10 306
meillo@10 307 hdr_list = find_header(msg->hdr_list, HEAD_SENDER, NULL);
meillo@10 308 if (!hdr_list)
meillo@10 309 hdr_list = find_header(msg->hdr_list, HEAD_FROM, NULL);
meillo@10 310 if (hdr_list) {
meillo@10 311 gchar *addr;
meillo@10 312 hdr = (header *) (g_list_first(hdr_list)->data);
meillo@10 313
meillo@10 314 DEBUG(5) debugf("hdr->value = '%s'\n", hdr->value);
meillo@10 315
meillo@10 316 addr = g_strdup(hdr->value);
meillo@10 317 g_strchomp(addr);
meillo@10 318
meillo@10 319 if ((msg->return_path = create_address_qualified(addr, FALSE, msg->received_host)) != NULL) {
meillo@10 320 DEBUG(3) debugf("setting return_path to %s\n", addr_string(msg->return_path));
meillo@13 321 msg->hdr_list = g_list_append(msg->hdr_list, create_header(HEAD_UNKNOWN,
meillo@13 322 "X-Warning: return path set from %s address\n",
meillo@13 323 hdr->id == HEAD_SENDER ? "Sender:" : "From:"));
meillo@10 324 }
meillo@10 325 g_free(addr);
meillo@10 326 }
meillo@10 327 if (msg->return_path == NULL) { /* no Sender: or From: or create_address_qualified failed */
meillo@10 328 msg->return_path = create_address_qualified("postmaster", TRUE, conf.host_name);
meillo@10 329 DEBUG(3) debugf("setting return_path to %s\n", addr_string(msg->return_path));
meillo@13 330 msg->hdr_list = g_list_append(msg->hdr_list, create_header(HEAD_UNKNOWN,
meillo@25 331 "X-Warning: real return path is unknown\n"));
meillo@10 332 }
meillo@10 333 }
meillo@10 334
meillo@268 335 if (flags & ACC_RCPT_FROM_HEAD) {
meillo@268 336 /* remove the recipients given on the command line
meillo@268 337 from the ones given in headers
meillo@109 338 -t option (see comment above) */
meillo@10 339 GList *rcpt_node;
meillo@10 340 foreach(non_rcpt_list, rcpt_node) {
meillo@10 341 address *rcpt = (address *) (rcpt_node->data);
meillo@10 342 GList *node;
meillo@10 343 if ((node = g_list_find_custom(msg->rcpt_list, rcpt, _g_list_addr_isequal))) {
meillo@10 344 DEBUG(3) debugf("removing rcpt address %s\n", addr_string(node->data));
meillo@10 345 msg->rcpt_list = g_list_remove_link(msg->rcpt_list, node);
meillo@10 346 destroy_address((address *) (node->data));
meillo@10 347 g_list_free_1(node);
meillo@10 348 }
meillo@10 349 }
meillo@10 350 }
meillo@10 351
meillo@10 352 /* here we should have our recipients, fail if not: */
meillo@10 353 if (msg->rcpt_list == NULL) {
meillo@10 354 logwrite(LOG_WARNING, "no recipients found in message\n");
meillo@10 355 return AERR_NORCPT;
meillo@10 356 }
meillo@10 357
meillo@10 358 if (!(has_sender || has_from)) {
meillo@10 359 DEBUG(3) debugf("adding 'From' header\n");
meillo@10 360 msg->hdr_list = g_list_append(msg->hdr_list,
meillo@10 361 msg->full_sender_name
meillo@10 362 ?
meillo@13 363 create_header(HEAD_FROM, "From: \"%s\" <%s@%s>\n", msg->full_sender_name,
meillo@13 364 msg->return_path->local_part, msg->return_path->domain)
meillo@10 365 :
meillo@10 366 create_header(HEAD_FROM, "From: <%s@%s>\n",
meillo@13 367 msg->return_path->local_part, msg->return_path->domain)
meillo@10 368 );
meillo@10 369 }
meillo@106 370 if (!has_to_or_cc) {
meillo@106 371 DEBUG(3) debugf("no To: or Cc: header, hence adding `To: undisclosed recipients:;'\n");
meillo@105 372 msg->hdr_list = g_list_append(msg->hdr_list, create_header(HEAD_TO, "To: undisclosed-recipients:;\n"));
meillo@10 373 }
meillo@10 374 if (!has_date) {
meillo@10 375 DEBUG(3) debugf("adding 'Date:' header\n");
meillo@10 376 msg->hdr_list = g_list_append(msg->hdr_list, create_header(HEAD_DATE, "Date: %s\n", rec_timestamp()));
meillo@10 377 }
meillo@10 378 if (!has_id) {
meillo@10 379 DEBUG(3) debugf("adding 'Message-ID:' header\n");
meillo@13 380 msg->hdr_list = g_list_append(msg->hdr_list,
meillo@13 381 create_header(HEAD_MESSAGE_ID, "Message-ID: <%s@%s>\n", msg->uid, conf.host_name));
meillo@10 382 }
meillo@0 383 }
meillo@10 384
meillo@10 385 /* Received header: */
meillo@10 386 /* At this point because we have to know the rcpts for the 'for' part */
meillo@102 387 gchar *for_string = NULL;
meillo@102 388 header *hdr = NULL;
meillo@10 389
meillo@102 390 DEBUG(3) debugf("adding 'Received:' header\n");
meillo@10 391
meillo@102 392 if (g_list_length(msg->rcpt_list) == 1) {
meillo@102 393 address *addr = (address *) (g_list_first(msg->rcpt_list)->data);
meillo@102 394 for_string = g_strdup_printf(" for %s", addr_string(addr));
meillo@102 395 }
meillo@10 396
meillo@102 397 if (msg->received_host == NULL) {
meillo@102 398 /* received locally */
meillo@102 399 hdr = create_header(HEAD_RECEIVED, "Received: from %s by %s with %s (%s %s) id %s%s; %s\n",
meillo@102 400 passwd->pw_name, conf.host_name, prot_names[msg->received_prot],
meillo@102 401 PACKAGE, VERSION, msg->uid, for_string ? for_string : "", rec_timestamp());
meillo@102 402 } else {
meillo@102 403 /* received from remote */
meillo@10 404 #ifdef ENABLE_IDENT
meillo@102 405 DEBUG(5) debugf("adding 'Received:' header (5)\n");
meillo@102 406 hdr = create_header(HEAD_RECEIVED, "Received: from %s (ident=%s) by %s with %s (%s %s) id %s%s; %s\n",
meillo@102 407 msg->received_host, msg->ident ? msg->ident : "unknown", conf.host_name,
meillo@102 408 prot_names[msg->received_prot], PACKAGE, VERSION, msg->uid, for_string ? for_string : "",
meillo@102 409 rec_timestamp());
meillo@10 410 #else
meillo@102 411 hdr = create_header(HEAD_RECEIVED, "Received: from %s by %s with %s (%s %s) id %s%s; %s\n",
meillo@102 412 msg->received_host, conf.host_name, prot_names[msg->received_prot],
meillo@102 413 PACKAGE, VERSION, msg->uid, for_string ? for_string : "", rec_timestamp());
meillo@10 414 #endif
meillo@102 415 }
meillo@102 416 header_fold(hdr);
meillo@102 417 msg->hdr_list = g_list_prepend(msg->hdr_list, hdr);
meillo@10 418
meillo@102 419 if (for_string)
meillo@102 420 g_free(for_string);
meillo@0 421
meillo@10 422 return AERR_OK;
meillo@0 423 }
meillo@0 424
meillo@10 425 accept_error
meillo@10 426 accept_message(FILE * in, message * msg, guint flags)
meillo@0 427 {
meillo@10 428 accept_error err;
meillo@0 429
meillo@10 430 err = accept_message_stream(in, msg, flags);
meillo@270 431 if (err == AERR_OK) {
meillo@10 432 err = accept_message_prepare(msg, flags);
meillo@270 433 }
meillo@0 434
meillo@10 435 return err;
meillo@0 436 }