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
|
/*
* Copyright (c) 1989 Regents of the University of California.
* All rights reserved. The Berkeley software License Agreement
* specifies the terms and conditions for redistribution.
*/
#ifndef lint
static char copyright[] = "Copyright (c) 1990 Regents of the University of California.\nAll rights reserved.\n";
/* based on @(#)pop_xmit.c 2.1 3/18/91 */
#endif
#include <stdio.h>
#include <sys/types.h>
#include <sys/file.h>
#include <sys/wait.h>
#include <fcntl.h>
#ifdef HAS_PATHS_H
#include <paths.h>
#endif
#include "popper.h"
#ifndef _PATH_SENDMAIL
#define _PATH_SENDMAIL "/usr/lib/sendmail"
#endif
/*
* xmit: POP XTND function to receive a message from
* a client and send it in the mail
*/
pop_xmit (p)
POP * p;
{
FILE * tmp; /* File descriptor for
temporary file */
char buffer[MAXLINELEN]; /* Read buffer */
char * temp_xmit; /* Name of the temporary
filedrop */
#ifdef WAIT_USES_INT
int stat;
#else
union wait stat;
#endif
int id, pid;
/* Create a temporary file into which to copy the user's message */
temp_xmit = tempnam(NULL, "xmitXXXXXX");
#ifdef DEBUG
if(p->debug)
pop_log(p,POP_DEBUG,
"Creating temporary file for sending a mail message \"%s\"\n",
temp_xmit);
#endif
if ((tmp = fopen(temp_xmit,"w+")) == NULL)
return (pop_msg(p,POP_FAILURE,
"Unable to create temporary message file \"%s\", errno = %d",
temp_xmit,errno));
/* Tell the client to start sending the message */
pop_msg(p,POP_SUCCESS,"Start sending the message.");
/* Receive the message */
#ifdef DEBUG
if(p->debug)pop_log(p,POP_DEBUG,"Receiving mail message");
#endif
while (fgets(buffer,MAXLINELEN,p->input)){
/* Look for initial period */
#ifdef DEBUG
if(p->debug)pop_log(p,POP_DEBUG,"Receiving: \"%s\"",buffer);
#endif
if (*buffer == '.') {
/* Exit on end of message */
if (strcmp(buffer,".\r\n") == 0) break;
}
(void)fputs (buffer,tmp);
}
(void)fclose (tmp);
#ifdef DEBUG
if(p->debug)pop_log(p,POP_DEBUG,"Forking for \"%s\"",_PATH_SENDMAIL);
#endif
/* Send the message */
switch (pid = fork()) {
case 0:
(void)fclose (p->input);
(void)fclose (p->output);
(void)close(0);
if (open(temp_xmit,O_RDONLY,0) < 0) (void)_exit(1);
(void)execl (_PATH_SENDMAIL,"send-mail","-t","-oem",NULLCP);
(void)_exit(1);
case -1:
#ifdef DEBUG
if (!p->debug) (void)unlink (temp_xmit);
#endif
return (pop_msg(p,POP_FAILURE,
"Unable to execute \"%s\"",_PATH_SENDMAIL));
default:
while((id = wait(&stat)) >=0 && id != pid);
if (!p->debug) (void)unlink (temp_xmit);
#ifdef WAIT_USES_INT
if (WEXITSTATUS(stat))
#else
if (stat.w_retcode)
#endif
return (pop_msg(p,POP_FAILURE,"Unable to send message"));
return (pop_msg (p,POP_SUCCESS,"Message sent successfully"));
}
free(temp_xmit);
}
|