1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
|
/* Copyright 1996 Harry Hochheiser
* All rights reserved.
* For license terms, see the file COPYING in this directory.
*/
/***********************************************************************
module: smtp.c
project: popforward
programmer: Harry Hochheiser
description: Handling of SMTP connections, and processing of mail
to be forwarded via SMTP connections.
7/30/96. Note: since this file is new from scratch, I'll assume
that I'm working on a modern (ANSI) compiler, and I'll use
prototypes.
***********************************************************************/
#include <config.h>
#include <sys/types.h>
#include <unistd.h>
#include <string.h>
#include "socket.h"
#include "popforward.h"
#include "smtp.h"
static int POP3_parseHeaders(int number, int socket,char **from,int *replFlag);
static int SMTP_sendMessageHeaders(int mboxfd,struct optrec *option,
char *from);
static int SendData(int f,char *buf,int check);
/*********************************************************************
function: SMTP_helo
description: Send a "HELO" message to the SMTP server.
arguments:
socket TCP/IP socket for connection to SMTP
return value: Result of SMTP_OK: based on codes in popforward.h.
*********************************************************************/
int SMTP_helo(int socket,char *host)
{
int ok;
char buf[SMTPBUFSIZE];
sprintf(buf,"HELO %s\r\n",host);
SockPrintf(socket,"%s",buf);
ok = SMTP_ok(socket,buf);
return ok;
}
/*********************************************************************
function: SMTP_from
description: Send a "MAIL FROM:" message to the SMTP server.
arguments:
socket TCP/IP socket for connection to SMTP
fromuser: user name of originator
fromhost: host name of originator.
Note: these args are likely to change, as we get fancier about
handling the names.
return value: Result of SMTP_ok: based on codes in popforward.h.
*********************************************************************/
int SMTP_from(int socket,char *fromuser,char *fromhost)
{
char buf[SMTPBUFSIZE]; /* it's as good as size as any... */
int ok;
SockPrintf(socket,"MAIL FROM %s@%s\n",fromuser,fromhost);
ok= SMTP_ok(socket,buf);
return ok;
}
/*********************************************************************
function: SMTP_rcpt
description: Send a "RCPT TO:" message to the SMTP server.
arguments:
socket TCP/IP socket for connection to SMTP
toser: user name of recipient
tohost: host name of recipient
return value: Result of SMTP_OK: based on codes in popforward.h.
*********************************************************************/
int SMTP_rcpt(int socket,char *touser,char *tohost)
{
char buf[SMTPBUFSIZE]; /* it's as good as size as any... */
int ok;
SockPrintf(socket,"RCPT TO: %s@%s\n",touser,tohost);
ok = SMTP_ok(socket,buf);
return ok;
}
/*********************************************************************
function: SMTP_data
description: Send a "DATA" message to the SMTP server.
arguments:
socket TCP/IP socket for connection to SMTP
return value: Result of SMTP_OK: based on codes in popforward.h.
*********************************************************************/
int SMTP_data(int socket)
{
SockPrintf(socket,"DATA\n");
}
/*********************************************************************
function: SMTP_rset
description: Send a "DATA" message to the SMTP server.
arguments:
socket TCP/IP socket for connection to SMTP
return value: Result of SMTP_OK: based on codes in popforward.h.
*********************************************************************/
void SMTP_rset(int socket)
{
SockPrintf(socket,"RSET\n");
}
/*********************************************************************
function: SMTP_check
description: Returns the status of the smtp connection
8/13/96, HSH
arguments:
socket TCP/IP socket for connection to SMTP
return value: based on codes in popforward.h.
Do the dirty work of seeing what the status is..
*********************************************************************/
static int SMTP_check(int socket,char *argbuf)
{
int ok;
char buf[SMTPBUFSIZE];
if (SMTP_Gets(socket, buf, sizeof(buf)) > 0) {
if (argbuf)
strcpy(argbuf,buf);
if (buf[0] == '1' || buf[0] == '2' || buf[0] == '3')
ok = SM_OK;
else
ok = SM_ERROR;
}
else
ok= SM_UNRECOVERABLE;
return (ok);
}
/*********************************************************************
function: SMTP_ok
description: Returns the statsus of the smtp connection
7/31/96, HSH
arguments:
socket TCP/IP socket for connection to SMTP
return value: based on codes in popforward.h.
NOTE: As of 7/31/96 Initial implementation, we're just returning
a dummy value of SM_OK. Eventually, we should really implement this.
*********************************************************************/
int SMTP_ok(int socket,char *argbuf)
{
int ok;
char buf[SMTPBUFSIZE];
/* I can tell that the SMTP server connection is ok if I can read a
status message that starts with "1xx" ,"2xx" or "3xx".
Therefore, it can't be ok if there's no data waiting to be read
Tried to deal with this with a call to SockDataWaiting, but
it failed badly.
*/
ok = SMTP_check(socket,argbuf);
if (ok == SM_ERROR) /* if we got an error, */
{
SMTP_rset(socket);
ok = SMTP_check(socket,argbuf); /* how does it look now ? */
if (ok == SM_OK)
ok = SM_ERROR; /* It's just a simple error, for*/
/* the current message */
else
ok = SM_UNRECOVERABLE; /* if It still says error, we're */
/* in bad shape */
}
return ok;
}
/*********************************************************************
function: SMTP_Gets
description: Gets a line from the SMTP connection
7/31/96, HSH
arguments:
socket TCP/IP socket for connection to SMTP
return value: number of bytes read.
*********************************************************************/
int SMTP_Gets(int socket,char *buf,int sz)
{
return read(socket,buf,sz);
}
/*********************************************************************
function: POP3_readSMTP
description: Read the message content as described in RFC 1225.
arguments:
number message number.
socket ... to which the server is connected.
mboxfd open file descriptor to which the retrieved message will
be written.
options added 7/30/96, HSH send in the whole options package...
server: originating pop server. 7/30/96, HSH
This procedure is the SMTP version of the original POP3_readmsg that
is found in the original popforward. 8/2/96, HSH
return value: zero if success else PS_* return code.
calls: SockGets.
globals: reads outlevel.
*********************************************************************/
int POP3_readSMTP(int number,int socket,int mboxfd,struct optrec *options,
char *server)
{
char buf [MSGBUFSIZE];
char smtpbuf[SMTPBUFSIZE];
char *bufp;
char fromBuf[MSGBUFSIZE];
char *summaryHeaders[3];
int sumLines =0;
int needFrom;
int inheaders;
int lines,sizeticker;
int n;
time_t now;
char *from = NULL;
int replFlag = 0;
/* HSH 8/19/96, Archive file */
int archive = 0;
int msgnum = 0;
/* This keeps the retrieved message count for display purposes */
int ok=0;
/* set up for status message if outlevel allows it */
/* Get this into log file as well. */
ok = POP3_parseHeaders(number,socket,&from,&replFlag);
if (ok != 0)
{
if (from) free(from);
return(PS_IOERR);
}
ok = POP3_sendGet(number,options,socket);
if (ok != 0)
{
if (from) free(from);
return(PS_IOERR);
}
/* 8/19/96 HSH open the archive file.. */
if ((archive =archGetFile(options,&msgnum)) <= 0)
{
if (from) free(from);
return(PS_IOERR);
}
/* reads the message content from the server */
inheaders = 1;
lines = 0;
sizeticker = MSGBUFSIZE;
while (1) {
if (SockGets(socket,buf,sizeof(buf)) < 0)
{
if (from) free(from);
return(PS_SOCKET);
}
bufp = buf;
if (buf[0] == '\r' || buf[0] == '\n')
inheaders = 0;
if (*bufp == '.') {
bufp++;
if (*bufp == 0)
break; /* end of message */
}
strcat(bufp,"\n");
/* Check for Unix 'From' header, and add a bogus one if it's not
present -- only if not using an MDA.
XXX -- should probably parse real From: header and use its
address field instead of bogus 'POPmail' string.
*/
if (lines == 0) {
if (strlen(bufp) >= strlen("From "))
needFrom = strncasecmp(bufp,"From ",strlen("From "));
else
needFrom = 1;
if ((ok = SMTP_sendMessageHeaders(mboxfd,options,from)) != SM_OK)
goto smtperr;
if (needFrom) {
now = time(NULL);
sprintf(fromBuf,"From POPmail %s",ctime(&now));
if ((ok =SendData(mboxfd,fromBuf,0)) != SM_OK)
goto smtperr;
}
}
n = write(archive,bufp,strlen(bufp));
/* write this line to the file */
if ((ok =SendData(mboxfd,bufp,0)) != SM_OK)
{
/* Abort the message, so we'll be clear.. */
SendData(mboxfd,BINMAIL_TERM,0);
goto smtperr;
}
sizeticker -= strlen(bufp);
lines++;
}
if ((ok =SendData(mboxfd,BINMAIL_TERM,0)) !=SM_OK)
goto smtperr;
/* finish up display output */
if (from) free(from);
if (archive != 0) close(archive);
return(0);
smtperr:
if (archive != 0) close(archive);
SMTP_rset(mboxfd);
if (from) free(from);
return(ok);
}
/******************************************************************
function: POP3_parseHeaders
description: Read the headers of the mail message, in order to grab the
"From" and "reply to" fields, to be used for proper
mail processing.
arguments:
number message number
socket TCP socket for POP connection
from character pointer to hold value of message "FROM" field
replFlag indicates whether or not we've seen a reply flag.
ret. value: non-zero on success, else zero.
globals: SockGets POP3_OK.
calls: reads outlevel.
*****************************************************************/
int POP3_parseHeaders(number,socket,from,replFlag)
int number;
int socket;
char **from;
int *replFlag;
{
int ok;
char buf[MSGBUFSIZE];
char *bufp;
int len;
ok = POP3_sendTOP(number,0,socket);
if (ok != 0)
return(ok);
ok = -1; /* we're not ok until we find "FROM: " */
/* read lines in until we're done.. */
while (1)
{
if (SockGets(socket,buf,sizeof(buf)) < 0)
{
return(PS_SOCKET);
}
bufp = buf;
if (*bufp == '.') {
bufp++;
if (*bufp == 0)
break; /* end of message */
}
len = strlen(buf);
if (len < strlen(HEADER_FROM)) /* since From header is shorter than reply-to, it */
continue; /* can't be either type. */
/* if it starts with "FROM: ", grab from */
if (strncasecmp(buf,HEADER_FROM,strlen(HEADER_FROM)) == 0)
{
bufp = buf + strlen(HEADER_FROM);
*from = strdup(bufp);
ok =0;
}
if (strncasecmp(buf,HEADER_REPLY,strlen(HEADER_REPLY)) == 0)
*replFlag = 1;
}
return(ok);
}
/******************************************************************
function: SMTP_sendMessageHeaders
description: Send the headers for the smtp message along to the mailbox..
arguments:
number message number
socket TCP socket for POP connection
from character pointer to hold value of message "FROM" field
replFlag indicates whether or not we've seen a reply flag.
ret. value: non-zero on success, else zero.
globals: SockGets POP3_OK.
calls: reads outlevel.
*****************************************************************/
int SMTP_sendMessageHeaders(int mboxfd,struct optrec *options,char *from)
{
char smtpbuf[SMTPBUFSIZE];
char fromBuf[MSGBUFSIZE];
int ok;
/* 7/30/96, HSH add stuff to print out the SMTP commands. */
ok = SMTP_ok(mboxfd,smtpbuf);
if (ok != SM_OK)
{
return ok;
}
/* mail is from whoever the headers said it was from */
sprintf(fromBuf,"MAIL FROM: %s\r\n",from);
if ((ok = SendData(mboxfd,fromBuf,1)) != SM_OK)
return ok;
/* Now here, add something for the receipt field. 7/30/96,
HSH */
sprintf(fromBuf,"RCPT TO: %s@%s\r\n",options->forwarduser,
options->forwardhost);
if ((ok=SendData(mboxfd,fromBuf,1)) != SM_OK)
return ok;
sprintf(fromBuf,"DATA\r\n");
ok =SendData(mboxfd,fromBuf,1);
return ok;
}
/******************************************************************
function: SendData
description: Write to socket or file, as appropriate for destination
arguments:
f socket or file descriptor
buf buffer to write
dest options destination.
check 1 if we should check for SMTP_ok, 0 if not...
ignored if DEST is not TO_SMTP
7/30/96 HSH added
ret. value: 0 if ok, otherwise, non-zero..
globals: none.
calls: SockWrite
*****************************************************************/
static int SendData(int f,char *buf,int check)
{
int res;
char smtpbuf[SMTPBUFSIZE];
int len = strlen(buf);
res = SockWrite(f,buf,len);
if (check != 0)
{
res = SMTP_ok(f,smtpbuf);
}
return res;
}
|