a53655bad81131c3433e0f8f0cd69e1228c5c2fa
[citadel.git] / citadel / utils / citmail.c
1 /*
2  * This program attempts to act like a local MDA if you're using sendmail or
3  * some other non-Citadel MTA.  It basically just contacts the Citadel LMTP
4  * listener on a unix domain socket and transmits the message.
5  *
6  * Copyright (c) 1987-2021by the citadel.org team
7  *
8  * This program is open source software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 3.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  */
16
17 #include "sysdep.h"
18 #include <stdlib.h>
19 #include <unistd.h>
20 #include <ctype.h>
21 #include <stdio.h>
22 #include <signal.h>
23 #include <sys/types.h>
24 #include <sys/socket.h>
25 #include <sys/un.h>
26 #include <netdb.h>
27 #include <string.h>
28 #include <pwd.h>
29 #include <errno.h>
30 #include <stdarg.h>
31 #include <limits.h>
32 #include <libcitadel.h>
33 #include "citadel.h"
34 #include "citadel_dirs.h"
35
36 int serv_sock;
37 int debug = 0;
38
39 void strip_trailing_nonprint(char *buf)
40 {
41         while ( (!IsEmptyStr(buf)) && (!isprint(buf[strlen(buf) - 1])) )
42                 buf[strlen(buf) - 1] = 0;
43 }
44
45
46 void timeout(int signum)
47 {
48         exit(signum);
49 }
50
51
52 int uds_connectsock(char *sockpath)
53 {
54         int s;
55         struct sockaddr_un addr;
56
57         memset(&addr, 0, sizeof(addr));
58         addr.sun_family = AF_UNIX;
59         strncpy(addr.sun_path, sockpath, sizeof addr.sun_path);
60
61         s = socket(AF_UNIX, SOCK_STREAM, 0);
62         if (s < 0) {
63                 fprintf(stderr, "citmail: Can't create socket: %s\n",
64                         strerror(errno));
65                 exit(3);
66         }
67
68         if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
69                 fprintf(stderr, "citmail: can't connect: %s\n",
70                         strerror(errno));
71                 close(s);
72                 exit(3);
73         }
74
75         return s;
76 }
77
78
79 /*
80  * input binary data from socket
81  */
82 void serv_read(char *buf, int bytes)
83 {
84         int len, rlen;
85
86         len = 0;
87         while (len < bytes) {
88                 rlen = read(serv_sock, &buf[len], bytes - len);
89                 if (rlen < 1) {
90                         return;
91                 }
92                 len = len + rlen;
93         }
94 }
95
96
97 /*
98  * send binary to server
99  */
100 void serv_write(char *buf, int nbytes)
101 {
102         int bytes_written = 0;
103         int retval;
104         while (bytes_written < nbytes) {
105                 retval = write(serv_sock, &buf[bytes_written],
106                                nbytes - bytes_written);
107                 if (retval < 1) {
108                         return;
109                 }
110                 bytes_written = bytes_written + retval;
111         }
112 }
113
114
115
116 /*
117  * input string from socket - implemented in terms of serv_read()
118  */
119 void serv_gets(char *buf)
120 {
121         int i;
122
123         /* Read one character at a time.
124          */
125         for (i = 0;; i++) {
126                 serv_read(&buf[i], 1);
127                 if (buf[i] == '\n' || i == (SIZ-1))
128                         break;
129         }
130
131         /* If we got a long line, discard characters until the newline.
132          */
133         if (i == (SIZ-1))
134                 while (buf[i] != '\n')
135                         serv_read(&buf[i], 1);
136
137         /* Strip all trailing nonprintables (crlf)
138          */
139         buf[i] = 0;
140         strip_trailing_nonprint(buf);
141         if (debug) fprintf(stderr, "> %s\n", buf);
142 }
143
144
145 /*
146  * send line to server - implemented in terms of serv_write()
147  */
148 void serv_puts(char *buf)
149 {
150         if (debug) fprintf(stderr, "< %s\n", buf);
151         serv_write(buf, strlen(buf));
152         serv_write("\n", 1);
153 }
154
155
156
157 void cleanup(int exitcode) {
158         char buf[1024];
159
160         if (exitcode != 0) {
161                 fprintf(stderr, "citmail: error #%d occurred while sending mail.\n", exitcode);
162                 fprintf(stderr, "Please check your Citadel configuration.\n");
163         }
164         serv_puts("QUIT");
165         serv_gets(buf);
166         exit(exitcode);
167 }
168
169
170
171 int main(int argc, char **argv) {
172         char buf[1024];
173         char fromline[1024];
174         FILE *fp;
175         int i;
176         struct passwd *pw;
177         int from_header = 0;
178         int in_body = 0;
179         int relh=0;
180         int home=0;
181         char relhome[PATH_MAX]="";
182         char ctdldir[PATH_MAX]=CTDLDIR;
183         char *sp, *ep;
184         char hostname[256];
185         char **recipients = NULL;
186         int num_recipients = 0;
187         int to_or_cc = 0;
188         int read_recipients_from_headers = 0;
189         char *add_these_recipients = NULL;
190
191         for (i=1; i<argc; ++i) {
192                 if (!strcmp(argv[i], "-d")) {
193                         debug = 1;
194                 }
195                 else if (!strcmp(argv[i], "-t")) {
196                         read_recipients_from_headers = 1;
197                 }
198                 else if (argv[i][0] != '-') {
199                         ++num_recipients;
200                         recipients = realloc(recipients, (num_recipients * sizeof (char *)));
201                         recipients[num_recipients - 1] = strdup(argv[i]);
202                 }
203         }
204                
205         pw = getpwuid(getuid());
206
207         fp = tmpfile();
208         if (fp == NULL) return(errno);
209         serv_sock = uds_connectsock(file_lmtp_socket);
210         serv_gets(buf);
211         if (buf[0] != '2') {
212                 fprintf(stderr, "%s\n", &buf[4]);
213                 if (debug) fprintf(stderr, "citmail: could not connect to LMTP socket.\n");
214                 cleanup(1);
215         }
216
217         sp = strchr (buf, ' ');
218         if (sp == NULL) {
219                 if (debug) fprintf(stderr, "citmail: could not calculate hostname.\n");
220                 cleanup(2);
221         }
222         sp ++;
223         ep = strchr (sp, ' ');
224         if (ep == NULL) {
225                 if (debug) fprintf(stderr, "citmail: error parsing hostname\n");
226                 cleanup(3);
227         }
228         else
229                 *ep = '\0';
230
231         strncpy(hostname, sp, sizeof hostname);
232
233         snprintf(fromline, sizeof fromline, "From: %s@%s", pw->pw_name, hostname);
234         while (fgets(buf, 1024, stdin) != NULL) {
235                 if ( ( (buf[0] == 13) || (buf[0] == 10)) && (in_body == 0) ) {
236                         in_body = 1;
237                         if (from_header == 0) {
238                                 fprintf(fp, "%s%s", fromline, buf);
239                         }
240                 }
241                 if (in_body == 0 && !strncasecmp(buf, "From:", 5)) {
242                         strcpy(fromline, buf);
243                         from_header = 1;
244                 }
245
246                 if (read_recipients_from_headers) {
247                         add_these_recipients = NULL;
248                         if ((isspace(buf[0])) && (to_or_cc)) {
249                                 add_these_recipients = buf;
250                         }
251                         else {
252                                 if ((!strncasecmp(buf, "To:", 3)) || (!strncasecmp(buf, "Cc:", 3))) {
253                                         to_or_cc = 1;
254                                 }
255                                 else {
256                                         to_or_cc = 0;
257                                 }
258                                 if (to_or_cc) {
259                                         add_these_recipients = &buf[3];
260                                 }
261                         }
262
263                         if (add_these_recipients) {
264                                 int num_recp_on_this_line;
265                                 char this_recp[256];
266
267                                 num_recp_on_this_line = num_tokens(add_these_recipients, ',');
268                                 for (i=0; i<num_recp_on_this_line; ++i) {
269                                         extract_token(this_recp, add_these_recipients,
270                                                 i, ',', sizeof this_recp);
271                                         striplt(this_recp);
272                                         if (!IsEmptyStr(this_recp)) {
273                                                 ++num_recipients;
274                                                 recipients = realloc(recipients,
275                                                         (num_recipients * sizeof (char *)));
276                                                 recipients[num_recipients - 1] = strdup(this_recp);
277                                         }
278                                 }
279                         }
280                 }
281
282                 fprintf(fp, "%s", buf);
283         }
284         strip_trailing_nonprint(fromline);
285
286         sprintf(buf, "LHLO %s", hostname);
287         serv_puts(buf);
288         do {
289                 serv_gets(buf);
290                 strcat(buf, "    ");
291         } while (buf[3] == '-');
292         if (buf[0] != '2') {
293                 if (debug) fprintf(stderr, "citmail: LHLO command failed\n");
294                 cleanup(4);
295         }
296
297         snprintf(buf, sizeof buf, "MAIL %s", fromline);
298         serv_puts(buf);
299         serv_gets(buf);
300         if (buf[0] != '2') {
301                 if (debug) fprintf(stderr, "citmail: MAIL command failed\n");
302                 cleanup(5);
303         }
304
305         for (i=0; i<num_recipients; ++i) {
306                 snprintf(buf, sizeof buf, "RCPT To: %s", recipients[i]);
307                 serv_puts(buf);
308                 serv_gets(buf);
309                 free(recipients[i]);
310         }
311         free(recipients);
312
313         serv_puts("DATA");
314         serv_gets(buf);
315         if (buf[0]!='3') {
316                 if (debug) fprintf(stderr, "citmail: DATA command failed\n");
317                 cleanup(6);
318         }
319
320         rewind(fp);
321         while (fgets(buf, sizeof buf, fp) != NULL) {
322                 strip_trailing_nonprint(buf);
323                 serv_puts(buf);
324         }
325         serv_puts(".");
326         serv_gets(buf);
327         if (buf[0] != '2') {
328                 fprintf(stderr, "%s\n", &buf[4]);
329                 cleanup(7);
330         }
331         else {
332                 cleanup(0);
333         }
334
335         /* We won't actually reach this statement but the compiler will
336          * display a spurious warning about an invalid return type if
337          * we don't return an int.
338          */
339         return(0);
340 }