comparison src/send_list.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 d7d67d5fa263
children c3ee2bfaeb02
comparison
equal deleted inserted replaced
740:5db75af2d0db 741:b72bcb7e08a2
97 97
98 fromaddr = concatstr(4, listname, listdelim, "bounces-help@", listfqdn); 98 fromaddr = concatstr(4, listname, listdelim, "bounces-help@", listfqdn);
99 myfree(listdelim); 99 myfree(listdelim);
100 100
101 queuefilename = prepstdreply(listdir, "listsubs", "$listowner$", 101 queuefilename = prepstdreply(listdir, "listsubs", "$listowner$",
102 emailaddr, NULL, 0, NULL, NULL, NULL); 102 emailaddr, NULL, 0, NULL, NULL);
103 if(queuefilename == NULL) { 103 if(queuefilename == NULL) {
104 log_error(LOG_ARGS, "Could not prepare sub list mail"); 104 log_error(LOG_ARGS, "Could not prepare sub list mail");
105 exit(EXIT_FAILURE); 105 exit(EXIT_FAILURE);
106 } 106 }
107 107