comparison src/send_help.c @ 741:b72bcb7e08a2

Arbitrary headers in listtexts, fix default Content-Transfer-Encoding: header, and document \uNNNN substitution Also, the interface to prepstdreply() has changed; there is no longer a customheaders argument, which was never used anyway, and is now essentially redundant due to this patch.
author Ben Schmidt
date Mon, 20 Sep 2010 01:44:58 +1000
parents c26e97a2207b
children c3ee2bfaeb02
comparison
equal deleted inserted replaced
740:5db75af2d0db 741:b72bcb7e08a2
55 55
56 fromaddr = concatstr(4, listname, listdelim, "bounces-help@", listfqdn); 56 fromaddr = concatstr(4, listname, listdelim, "bounces-help@", listfqdn);
57 myfree(listdelim); 57 myfree(listdelim);
58 58
59 queuefilename = prepstdreply(listdir, textfile, "$listowner$", 59 queuefilename = prepstdreply(listdir, textfile, "$listowner$",
60 emailaddr, NULL, 0, NULL, NULL, NULL); 60 emailaddr, NULL, 0, NULL, NULL);
61 if(queuefilename == NULL) { 61 if(queuefilename == NULL) {
62 log_error(LOG_ARGS, "Could not prepare %s mail", name); 62 log_error(LOG_ARGS, "Could not prepare %s mail", name);
63 exit(EXIT_FAILURE); 63 exit(EXIT_FAILURE);
64 } 64 }
65 65