a6080695e07333dd677c0c2cf1e0ee797178709f
[exim.git] / src / src / transports / autoreply.c
1 /*************************************************
2 *     Exim - an Internet mail transport agent    *
3 *************************************************/
4
5 /* Copyright (c) The Exim Maintainers 2020 - 2024 */
6 /* Copyright (c) University of Cambridge 1995 - 2018 */
7 /* See the file NOTICE for conditions of use and distribution. */
8 /* SPDX-License-Identifier: GPL-2.0-or-later */
9
10
11 #include "../exim.h"
12
13 #ifdef TRANSPORT_AUTOREPLY      /* Remainder of file */
14 #include "autoreply.h"
15
16
17
18 /* Options specific to the autoreply transport. They must be in alphabetic
19 order (note that "_" comes before the lower case letters). Those starting
20 with "*" are not settable by the user but are used by the option-reading
21 software for alternative value types. Some options are publicly visible and so
22 are stored in the driver instance block. These are flagged with opt_public. */
23 #define LOFF(field) OPT_OFF(autoreply_transport_options_block, field)
24
25 optionlist autoreply_transport_options[] = {
26   { "bcc",               opt_stringptr, LOFF(bcc) },
27   { "cc",                opt_stringptr, LOFF(cc) },
28   { "file",              opt_stringptr, LOFF(file) },
29   { "file_expand",     opt_bool,        LOFF(file_expand) },
30   { "file_optional",     opt_bool,      LOFF(file_optional) },
31   { "from",              opt_stringptr, LOFF(from) },
32   { "headers",           opt_stringptr, LOFF(headers) },
33   { "log",               opt_stringptr, LOFF(logfile) },
34   { "mode",              opt_octint,    LOFF(mode) },
35   { "never_mail",        opt_stringptr, LOFF(never_mail) },
36   { "once",              opt_stringptr, LOFF(oncelog) },
37   { "once_file_size",    opt_int,       LOFF(once_file_size) },
38   { "once_repeat",       opt_stringptr, LOFF(once_repeat) },
39   { "reply_to",          opt_stringptr, LOFF(reply_to) },
40   { "return_message",    opt_bool,      LOFF(return_message) },
41   { "subject",           opt_stringptr, LOFF(subject) },
42   { "text",              opt_stringptr, LOFF(text) },
43   { "to",                opt_stringptr, LOFF(to) },
44 };
45
46 /* Size of the options list. An extern variable has to be used so that its
47 address can appear in the tables drtables.c. */
48
49 int autoreply_transport_options_count =
50   sizeof(autoreply_transport_options)/sizeof(optionlist);
51
52
53 #ifdef MACRO_PREDEF
54
55 /* Dummy values */
56 autoreply_transport_options_block autoreply_transport_option_defaults = {0};
57 void autoreply_transport_init(driver_instance *tblock) {}
58 BOOL autoreply_transport_entry(transport_instance *tblock, address_item *addr) {return FALSE;}
59
60 #else   /*!MACRO_PREDEF*/
61
62
63 /* Default private options block for the autoreply transport.
64 All non-mentioned lements zero/null/false. */
65
66 autoreply_transport_options_block autoreply_transport_option_defaults = {
67   .mode = 0600,
68 };
69
70
71
72 /* Type of text for the checkexpand() function */
73
74 enum { cke_text, cke_hdr, cke_file };
75
76
77
78 /*************************************************
79 *          Initialization entry point            *
80 *************************************************/
81
82 /* Called for each instance, after its options have been read, to
83 enable consistency checks to be done, or anything else that needs
84 to be set up. */
85
86 void
87 autoreply_transport_init(driver_instance * t)
88 {
89 transport_instance * tblock = (transport_instance *)t;
90 /*
91 autoreply_transport_options_block *ob =
92   (autoreply_transport_options_block *)(tblock->options_block);
93 */
94
95 /* If a fixed uid field is set, then a gid field must also be set. */
96
97 if (tblock->uid_set && !tblock->gid_set && tblock->expand_gid == NULL)
98   log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
99     "user set without group for the %s transport", t->name);
100 }
101
102
103
104
105 /*************************************************
106 *          Expand string and check               *
107 *************************************************/
108
109 /* If the expansion fails, the error is set up in the address. Expanded
110 strings must be checked to ensure they contain only printing characters
111 and white space. If not, the function fails.
112
113 Arguments:
114    s         string to expand
115    addr      address that is being worked on
116    name      transport name, for error text
117    type      type, for checking content:
118                cke_text => no check
119                cke_hdr  => header, allow \n + whitespace
120                cke_file => file name, no non-printers allowed
121
122 Returns:     expanded string if expansion succeeds;
123              NULL otherwise
124 */
125
126 static const uschar *
127 checkexpand(const uschar * s, address_item * addr, const uschar * name,
128   int type)
129 {
130 const uschar * ss = expand_cstring(s);
131
132 if (!ss)
133   {
134   addr->transport_return = FAIL;
135   addr->message = string_sprintf("Expansion of \"%s\" failed in %s transport: "
136     "%s", s, name, expand_string_message);
137   return NULL;
138   }
139
140 if (type != cke_text) for (const uschar * t = ss; *t; t++)
141   {
142   int c = *t;
143   const uschar * sp;
144   if (mac_isprint(c)) continue;
145   if (type == cke_hdr && c == '\n' && (t[1] == ' ' || t[1] == '\t')) continue;
146   sp = string_printing(s);
147   addr->transport_return = FAIL;
148   addr->message = string_sprintf("Expansion of \"%s\" in %s transport "
149     "contains non-printing character %d", sp, name, c);
150   return NULL;
151   }
152
153 return ss;
154 }
155
156
157
158
159 /*************************************************
160 *          Check a header line for never_mail    *
161 *************************************************/
162
163 /* This is called to check to, cc, and bcc for addresses in the never_mail
164 list. Any that are found are removed.
165
166 Arguments:
167   list        list of addresses to be checked
168   never_mail  an address list, already expanded
169
170 Returns:      edited replacement address list, or NULL, or original
171 */
172
173 static const uschar *
174 check_never_mail(const uschar * list, const uschar * never_mail)
175 {
176 rmark reset_point = store_mark();
177 uschar * newlist = string_copy(list);
178 uschar * s = newlist;
179 BOOL hit = FALSE;
180
181 while (*s)
182   {
183   uschar *error, *next;
184   uschar *e = parse_find_address_end(s, FALSE);
185   int terminator = *e;
186   int start, end, domain, rc;
187
188   /* Temporarily terminate the string at the address end while extracting
189   the operative address within. */
190
191   *e = 0;
192   next = parse_extract_address(s, &error, &start, &end, &domain, FALSE);
193   *e = terminator;
194
195   /* If there is some kind of syntax error, just give up on this header
196   line. */
197
198   if (!next) break;
199
200   /* See if the address is on the never_mail list */
201
202   rc = match_address_list(next,         /* address to check */
203                           TRUE,         /* start caseless */
204                           FALSE,        /* don't expand the list */
205                           &never_mail,  /* the list */
206                           NULL,         /* no caching */
207                           -1,           /* no expand setup */
208                           0,            /* separator from list */
209                           NULL);        /* no lookup value return */
210
211   if (rc == OK)                         /* Remove this address */
212     {
213     DEBUG(D_transport)
214       debug_printf("discarding recipient %s (matched never_mail)\n", next);
215     hit = TRUE;
216     if (terminator == ',') e++;
217     memmove(s, e, Ustrlen(e) + 1);
218     }
219   else                                  /* Skip over this address */
220     {
221     s = e;
222     if (terminator == ',') s++;
223     }
224   }
225
226 /* If no addresses were removed, retrieve the memory used and return
227 the original. */
228
229 if (!hit)
230   {
231   store_reset(reset_point);
232   return list;
233   }
234
235 /* Check to see if we removed the last address, leaving a terminating comma
236 that needs to be removed */
237
238 s = newlist + Ustrlen(newlist);
239 while (s > newlist && (isspace(s[-1]) || s[-1] == ',')) s--;
240 *s = '\0';
241
242 /* Check to see if there any addresses left; if not, return NULL */
243
244 s = newlist;
245 if (Uskip_whitespace(&s))
246   return newlist;
247
248 store_reset(reset_point);
249 return NULL;
250 }
251
252
253
254 /*************************************************
255 *              Main entry point                  *
256 *************************************************/
257
258 /* See local README for interface details. This transport always returns
259 FALSE, indicating that the top address has the status for all - though in fact
260 this transport can handle only one address at at time anyway. */
261
262 BOOL
263 autoreply_transport_entry(
264   transport_instance *tblock,      /* data for this instantiation */
265   address_item *addr)              /* address we are working on */
266 {
267 autoreply_transport_options_block * ob = tblock->drinst.options_block;
268 const uschar * trname = tblock->drinst.name;
269 int fd, pid, rc;
270 int cache_fd = -1;
271 int cache_size = 0;
272 int add_size = 0;
273 EXIM_DB * dbm_file = NULL;
274 BOOL file_expand, return_message;
275 const uschar * from, * reply_to, * to, * cc, * bcc, * subject, * headers;
276 const uschar * text, * file, * logfile, * oncelog;
277 uschar * cache_buff = NULL, * cache_time = NULL, * message_id = NULL;
278 header_line * h;
279 time_t now = time(NULL);
280 time_t once_repeat_sec = 0;
281 FILE *fp;
282 FILE *ff = NULL;
283
284 DEBUG(D_transport) debug_printf("%s transport entered\n", trname);
285
286 /* Set up for the good case */
287
288 addr->transport_return = OK;
289 addr->basic_errno = 0;
290
291 /* If the address is pointing to a reply block, then take all the data
292 from that block. It has typically been set up by a mail filter processing
293 router. Otherwise, the data must be supplied by this transport, and
294 it has to be expanded here. */
295
296 if (addr->reply)
297   {
298   DEBUG(D_transport) debug_printf("taking data from address\n");
299   from = addr->reply->from;
300   reply_to = addr->reply->reply_to;
301   to = addr->reply->to;
302   cc = addr->reply->cc;
303   bcc = addr->reply->bcc;
304   subject = addr->reply->subject;
305   headers = addr->reply->headers;
306   text = addr->reply->text;
307   file = addr->reply->file;
308   logfile = addr->reply->logfile;
309   oncelog = addr->reply->oncelog;
310   once_repeat_sec = addr->reply->once_repeat;
311   file_expand = addr->reply->file_expand;
312   expand_forbid = addr->reply->expand_forbid;
313   return_message = addr->reply->return_message;
314   }
315 else
316   {
317   const uschar * oncerepeat;
318
319   DEBUG(D_transport) debug_printf("taking data from transport\n");
320   GET_OPTION("once_repeat");    oncerepeat = ob->once_repeat;
321   GET_OPTION("from");           from = ob->from;
322   GET_OPTION("reply_to");       reply_to = ob->reply_to;
323   GET_OPTION("to");             to = ob->to;
324   GET_OPTION("cc");             cc = ob->cc;
325   GET_OPTION("bcc");            bcc = ob->bcc;
326   GET_OPTION("subject");        subject = ob->subject;
327   GET_OPTION("headers");        headers = ob->headers;
328   GET_OPTION("text");           text = ob->text;
329   GET_OPTION("file");           file = ob->file;
330   GET_OPTION("log");            logfile = ob->logfile;
331   GET_OPTION("once");           oncelog = ob->oncelog;
332   file_expand = ob->file_expand;
333   return_message = ob->return_message;
334
335   if (  from && !(from = checkexpand(from, addr, trname, cke_hdr))
336      || reply_to && !(reply_to = checkexpand(reply_to, addr, trname, cke_hdr))
337      || to && !(to = checkexpand(to, addr, trname, cke_hdr))
338      || cc && !(cc = checkexpand(cc, addr, trname, cke_hdr))
339      || bcc && !(bcc = checkexpand(bcc, addr, trname, cke_hdr))
340      || subject && !(subject = checkexpand(subject, addr, trname, cke_hdr))
341      || headers && !(headers = checkexpand(headers, addr, trname, cke_text))
342      || text && !(text = checkexpand(text, addr, trname, cke_text))
343      || file && !(file = checkexpand(file, addr, trname, cke_file))
344      || logfile && !(logfile = checkexpand(logfile, addr, trname, cke_file))
345      || oncelog && !(oncelog = checkexpand(oncelog, addr, trname, cke_file))
346      || oncerepeat && !(oncerepeat = checkexpand(oncerepeat, addr, trname, cke_file))
347      )
348     return FALSE;
349
350   if (oncerepeat)
351     if ((once_repeat_sec = readconf_readtime(oncerepeat, 0, FALSE)) < 0)
352       {
353       addr->transport_return = FAIL;
354       addr->message = string_sprintf("Invalid time value \"%s\" for "
355         "\"once_repeat\" in %s transport", oncerepeat, trname);
356       return FALSE;
357       }
358   }
359
360 /* If the never_mail option is set, we have to scan all the recipients and
361 remove those that match. */
362
363 if (ob->never_mail)
364   {
365   const uschar * never_mail = expand_string(ob->never_mail);
366
367   if (!never_mail)
368     {
369     addr->transport_return = FAIL;
370     addr->message = string_sprintf("Failed to expand \"%s\" for "
371       "\"never_mail\" in %s transport", ob->never_mail, trname);
372     return FALSE;
373     }
374
375   if (to) to = check_never_mail(to, never_mail);
376   if (cc) cc = check_never_mail(cc, never_mail);
377   if (bcc) bcc = check_never_mail(bcc, never_mail);
378
379   if (!to && !cc && !bcc)
380     {
381     DEBUG(D_transport)
382       debug_printf("*** all recipients removed by never_mail\n");
383     return OK;
384     }
385   }
386
387 /* If the -N option is set, can't do any more. */
388
389 if (f.dont_deliver)
390   {
391   DEBUG(D_transport)
392     debug_printf("*** delivery by %s transport bypassed by -N option\n",
393       trname);
394   return FALSE;
395   }
396
397
398 /* If the oncelog field is set, we send want to send only one message to the
399 given recipient(s). This works only on the "To" field. If there is no "To"
400 field, the message is always sent. If the To: field contains more than one
401 recipient, the effect might not be quite as envisaged. If once_file_size is
402 set, instead of a dbm file, we use a regular file containing a circular buffer
403 recipient cache. */
404
405 if (oncelog && *oncelog && to)
406   {
407   time_t then = 0;
408
409   if (is_tainted(oncelog))
410     {
411     addr->transport_return = DEFER;
412     addr->basic_errno = EACCES;
413     addr->message = string_sprintf("Tainted '%s' (once file for %s transport)"
414       " not permitted", oncelog, trname);
415     goto END_OFF;
416     }
417
418   /* Handle fixed-size cache file. */
419
420   if (ob->once_file_size > 0)
421     {
422     uschar * nextp;
423     struct stat statbuf;
424
425     cache_fd = Uopen(oncelog, O_CREAT|O_RDWR, ob->mode);
426     if (cache_fd < 0 || fstat(cache_fd, &statbuf) != 0)
427       {
428       addr->transport_return = DEFER;
429       addr->basic_errno = errno;
430       addr->message = string_sprintf("Failed to %s \"once\" file %s when "
431         "sending message from %s transport: %s",
432         cache_fd < 0 ? "open" : "stat", oncelog, trname, strerror(errno));
433       goto END_OFF;
434       }
435
436     /* Get store in the temporary pool and read the entire file into it. We get
437     an amount of store that is big enough to add the new entry on the end if we
438     need to do that. */
439
440     cache_size = statbuf.st_size;
441     add_size = sizeof(time_t) + Ustrlen(to) + 1;
442     cache_buff = store_get(cache_size + add_size, oncelog);
443
444     if (read(cache_fd, cache_buff, cache_size) != cache_size)
445       {
446       addr->transport_return = DEFER;
447       addr->basic_errno = errno;
448       addr->message = US"error while reading \"once\" file";
449       goto END_OFF;
450       }
451
452     DEBUG(D_transport) debug_printf("%d bytes read from %s\n", cache_size, oncelog);
453
454     /* Scan the data for this recipient. Each entry in the file starts with
455     a time_t sized time value, followed by the address, followed by a binary
456     zero. If we find a match, put the time into "then", and the place where it
457     was found into "cache_time". Otherwise, "then" is left at zero. */
458
459     for (uschar * p = cache_buff; p < cache_buff + cache_size; p = nextp)
460       {
461       uschar *s = p + sizeof(time_t);
462       nextp = s + Ustrlen(s) + 1;
463       if (Ustrcmp(to, s) == 0)
464         {
465         memcpy(&then, p, sizeof(time_t));
466         cache_time = p;
467         break;
468         }
469       }
470     }
471
472   /* Use a DBM file for the list of previous recipients. */
473
474   else
475     {
476     EXIM_DATUM key_datum, result_datum;
477     uschar * s = Ustrrchr(oncelog, '/');
478     uschar * dirname = s ? string_copyn(oncelog, s - oncelog) : NULL;
479
480     if (!(dbm_file = exim_dbopen(oncelog, dirname, O_RDWR|O_CREAT, ob->mode)))
481       {
482       addr->transport_return = DEFER;
483       addr->basic_errno = errno;
484       addr->message = string_sprintf("Failed to open %s file %s when sending "
485         "message from %s transport: %s", EXIM_DBTYPE, oncelog, trname,
486         strerror(errno));
487       goto END_OFF;
488       }
489
490     exim_datum_init(&key_datum);        /* Some DBM libraries need datums */
491     exim_datum_init(&result_datum);     /* to be cleared */
492     exim_datum_data_set(&key_datum, (void *) to);
493     exim_datum_size_set(&key_datum, Ustrlen(to) + 1);
494
495     if (exim_dbget(dbm_file, &key_datum, &result_datum))
496       memcpy(&then, exim_datum_data_get(&result_datum), sizeof(time_t));
497     }
498
499   /* Either "then" is set zero, if no message has yet been sent, or it
500   is set to the time of the last sending. */
501
502   if (then != 0 && (once_repeat_sec <= 0 || now - then < once_repeat_sec))
503     {
504     int log_fd;
505     if (is_tainted(logfile))
506       {
507       addr->transport_return = DEFER;
508       addr->basic_errno = EACCES;
509       addr->message = string_sprintf("Tainted '%s' (logfile for %s transport)"
510         " not permitted", logfile, trname);
511       goto END_OFF;
512       }
513
514     DEBUG(D_transport) debug_printf("message previously sent to %s%s\n", to,
515       (once_repeat_sec > 0)? " and repeat time not reached" : "");
516     log_fd = logfile ? Uopen(logfile, O_WRONLY|O_APPEND|O_CREAT, ob->mode) : -1;
517     if (log_fd >= 0)
518       {
519       uschar *ptr = log_buffer;
520       sprintf(CS ptr, "%s\n  previously sent to %.200s\n", tod_stamp(tod_log), to);
521       while(*ptr) ptr++;
522       if(write(log_fd, log_buffer, ptr - log_buffer) != ptr-log_buffer
523         || close(log_fd))
524         DEBUG(D_transport) debug_printf("Problem writing log file %s for %s "
525           "transport\n", logfile, trname);
526       }
527     goto END_OFF;
528     }
529
530   DEBUG(D_transport) debug_printf("%s %s\n", (then <= 0)?
531     "no previous message sent to" : "repeat time reached for", to);
532   }
533
534 /* We are going to send a message. Ensure any requested file is available. */
535 if (file)
536   {
537   if (is_tainted(file))
538     {
539     addr->transport_return = DEFER;
540     addr->basic_errno = EACCES;
541     addr->message = string_sprintf("Tainted '%s' (file for %s transport)"
542       " not permitted", file, trname);
543     return FALSE;
544     }
545   if (!(ff = Ufopen(file, "rb")) && !ob->file_optional)
546     {
547     addr->transport_return = DEFER;
548     addr->basic_errno = errno;
549     addr->message = string_sprintf("Failed to open file %s when sending "
550       "message from %s transport: %s", file, trname, strerror(errno));
551     return FALSE;
552     }
553   }
554
555 /* Make a subprocess to send the message */
556
557 if ((pid = child_open_exim(&fd, US"autoreply")) < 0)
558   {
559   /* Creation of child failed; defer this delivery. */
560
561   addr->transport_return = DEFER;
562   addr->basic_errno = errno;
563   addr->message = string_sprintf("Failed to create child process to send "
564     "message from %s transport: %s", trname, strerror(errno));
565   DEBUG(D_transport) debug_printf("%s\n", addr->message);
566   if (dbm_file) exim_dbclose(dbm_file);
567   return FALSE;
568   }
569
570 /* Create the message to be sent - recipients are taken from the headers,
571 as the -t option is used. The "headers" stuff *must* be last in case there
572 are newlines in it which might, if placed earlier, screw up other headers. */
573
574 fp = fdopen(fd, "wb");
575
576 if (from) fprintf(fp, "From: %s\n", from);
577 if (reply_to) fprintf(fp, "Reply-To: %s\n", reply_to);
578 if (to) fprintf(fp, "To: %s\n", to);
579 if (cc) fprintf(fp, "Cc: %s\n", cc);
580 if (bcc) fprintf(fp, "Bcc: %s\n", bcc);
581 if (subject) fprintf(fp, "Subject: %s\n", subject);
582
583 /* Generate In-Reply-To from the message_id header; there should
584 always be one, but code defensively. */
585
586 for (h = header_list; h; h = h->next)
587   if (h->type == htype_id) break;
588
589 if (h)
590   {
591   message_id = Ustrchr(h->text, ':') + 1;
592   Uskip_whitespace(&message_id);
593   fprintf(fp, "In-Reply-To: %s", message_id);
594   }
595
596 moan_write_references(fp, message_id);
597
598 /* Add an Auto-Submitted: header */
599
600 fprintf(fp, "Auto-Submitted: auto-replied\n");
601
602 /* Add any specially requested headers */
603
604 if (headers) fprintf(fp, "%s\n", headers);
605 fprintf(fp, "\n");
606
607 if (text)
608   {
609   fprintf(fp, "%s", CS text);
610   if (text[Ustrlen(text)-1] != '\n') fprintf(fp, "\n");
611   }
612
613 if (ff)
614   {
615   while (Ufgets(big_buffer, big_buffer_size, ff) != NULL)
616     {
617     if (file_expand)
618       {
619       uschar *s = expand_string(big_buffer);
620       DEBUG(D_transport)
621         {
622         if (!s)
623           debug_printf("error while expanding line from file:\n  %s\n  %s\n",
624             big_buffer, expand_string_message);
625         }
626       fprintf(fp, "%s", s ? CS s : CS big_buffer);
627       }
628     else fprintf(fp, "%s", CS big_buffer);
629     }
630   (void) fclose(ff);
631   }
632
633 /* Copy the original message if required, observing the return size
634 limit if we are returning the body. */
635
636 if (return_message)
637   {
638   uschar *rubric = tblock->headers_only
639     ? US"------ This is a copy of the message's header lines.\n"
640     : tblock->body_only
641     ? US"------ This is a copy of the body of the message, without the headers.\n"
642     : US"------ This is a copy of the message, including all the headers.\n";
643   transport_ctx tctx = {
644     .u = {.fd = fileno(fp)},
645     .tblock = tblock,
646     .addr = addr,
647     .check_string = NULL,
648     .escape_string =  NULL,
649     .options = (tblock->body_only ? topt_no_headers : 0)
650         | (tblock->headers_only ? topt_no_body : 0)
651         | (tblock->return_path_add ? topt_add_return_path : 0)
652         | (tblock->delivery_date_add ? topt_add_delivery_date : 0)
653         | (tblock->envelope_to_add ? topt_add_envelope_to : 0)
654         | topt_not_socket
655   };
656
657   if (bounce_return_size_limit > 0 && !tblock->headers_only)
658     {
659     struct stat statbuf;
660     int max = (bounce_return_size_limit/DELIVER_IN_BUFFER_SIZE + 1) *
661       DELIVER_IN_BUFFER_SIZE;
662     if (fstat(deliver_datafile, &statbuf) == 0 && statbuf.st_size > max)
663       {
664       fprintf(fp, "\n%s"
665 "------ The body of the message is " OFF_T_FMT " characters long; only the first\n"
666 "------ %d or so are included here.\n\n", rubric, statbuf.st_size,
667         (max/1000)*1000);
668       }
669     else fprintf(fp, "\n%s\n", rubric);
670     }
671   else fprintf(fp, "\n%s\n", rubric);
672
673   fflush(fp);
674   transport_count = 0;
675   transport_write_message(&tctx, bounce_return_size_limit);
676   }
677
678 /* End the message and wait for the child process to end; no timeout. */
679
680 (void)fclose(fp);
681 rc = child_close(pid, 0);
682
683 /* Update the "sent to" log whatever the yield. This errs on the side of
684 missing out a message rather than risking sending more than one. We either have
685 cache_fd set to a fixed size, circular buffer file, or dbm_file set to an open
686 DBM file (or neither, if "once" is not set). */
687
688 /* Update fixed-size cache file. If cache_time is set, we found a previous
689 entry; that is the spot into which to put the current time. Otherwise we have
690 to add a new record; remove the first one in the file if the file is too big.
691 We always rewrite the entire file in a single write operation. This is
692 (hopefully) going to be the safest thing because there is no interlocking
693 between multiple simultaneous deliveries. */
694
695 if (cache_fd >= 0)
696   {
697   uschar *from = cache_buff;
698   int size = cache_size;
699
700   if (lseek(cache_fd, 0, SEEK_SET) == 0)
701     {
702     if (!cache_time)
703       {
704       cache_time = from + size;
705       memcpy(cache_time + sizeof(time_t), to, add_size - sizeof(time_t));
706       size += add_size;
707
708       if (cache_size > 0 && size > ob->once_file_size)
709         {
710         from += sizeof(time_t) + Ustrlen(from + sizeof(time_t)) + 1;
711         size -= (from - cache_buff);
712         }
713       }
714
715     memcpy(cache_time, &now, sizeof(time_t));
716     if(write(cache_fd, from, size) != size)
717       DEBUG(D_transport) debug_printf("Problem writing cache file %s for %s "
718         "transport\n", oncelog, trname);
719     }
720   }
721
722 /* Update DBM file */
723
724 else if (dbm_file)
725   {
726   EXIM_DATUM key_datum, value_datum;
727   exim_datum_init(&key_datum);          /* Some DBM libraries need to have */
728   exim_datum_init(&value_datum);        /* cleared datums. */
729   exim_datum_data_set(&key_datum, US to);   /*XXX rely on dbput not modifying */
730   exim_datum_size_set(&key_datum, Ustrlen(to) + 1);
731
732   /* Many OS define the datum value, sensibly, as a void *. However, there
733   are some which still have char *. By casting this address to a char * we
734   can avoid warning messages from the char * systems. */
735
736   exim_datum_data_set(&value_datum, &now);
737   exim_datum_size_set(&value_datum, sizeof(time_t));
738   exim_dbput(dbm_file, &key_datum, &value_datum);
739   }
740
741 /* If sending failed, defer to try again - but if once is set the next
742 try will skip, of course. However, if there were no recipients in the
743 message, we do not fail. */
744
745 if (rc != 0)
746   if (rc == EXIT_NORECIPIENTS)
747     {
748     DEBUG(D_any) debug_printf("%s transport: message contained no recipients\n",
749       trname);
750     }
751   else
752     {
753     addr->transport_return = DEFER;
754     addr->message = string_sprintf("Failed to send message from %s "
755       "transport (%d)", trname, rc);
756     goto END_OFF;
757     }
758
759 /* Log the sending of the message if successful and required. If the file
760 fails to open, it's hard to know what to do. We cannot write to the Exim
761 log from here, since we may be running under an unprivileged uid. We don't
762 want to fail the delivery, since the message has been successfully sent. For
763 the moment, ignore open failures. Write the log entry as a single write() to a
764 file opened for appending, in order to avoid interleaving of output from
765 different processes. The log_buffer can be used exactly as for main log
766 writing. */
767
768 if (logfile)
769   {
770   int log_fd = Uopen(logfile, O_WRONLY|O_APPEND|O_CREAT, ob->mode);
771   if (log_fd >= 0)
772     {
773     gstring gs = { .size = LOG_BUFFER_SIZE, .ptr = 0, .s = log_buffer }, *g = &gs;
774
775     /* Use taint-unchecked routines for writing into log_buffer, trusting
776     that we'll never expand it. */
777
778     DEBUG(D_transport) debug_printf("logging message details\n");
779     g = string_fmt_append_f(g, SVFMT_TAINT_NOCHK, "%s\n", tod_stamp(tod_log));
780     if (from)
781       g = string_fmt_append_f(g, SVFMT_TAINT_NOCHK, "  From: %s\n", from);
782     if (to)
783       g = string_fmt_append_f(g, SVFMT_TAINT_NOCHK, "  To: %s\n", to);
784     if (cc)
785       g = string_fmt_append_f(g, SVFMT_TAINT_NOCHK, "  Cc: %s\n", cc);
786     if (bcc)
787       g = string_fmt_append_f(g, SVFMT_TAINT_NOCHK, "  Bcc: %s\n", bcc);
788     if (subject)
789       g = string_fmt_append_f(g, SVFMT_TAINT_NOCHK, "  Subject: %s\n", subject);
790     if (headers)
791       g = string_fmt_append_f(g, SVFMT_TAINT_NOCHK, "  %s\n", headers);
792     if(write(log_fd, g->s, g->ptr) != g->ptr || close(log_fd))
793       DEBUG(D_transport) debug_printf("Problem writing log file %s for %s "
794         "transport\n", logfile, trname);
795     }
796   else DEBUG(D_transport) debug_printf("Failed to open log file %s for %s "
797     "transport: %s\n", logfile, trname, strerror(errno));
798   }
799
800 END_OFF:
801 if (dbm_file) exim_dbclose(dbm_file);
802 if (cache_fd > 0) (void)close(cache_fd);
803
804 DEBUG(D_transport) debug_printf("%s transport succeeded\n", trname);
805
806 return FALSE;
807 }
808
809 #endif  /*!MACRO_PREDEF*/
810 #endif  /*TRANSPORT_AUTOREPOL*/
811 /* End of transport/autoreply.c */
812 /* vi: aw ai sw=2
813 */