script.c
3.99 KB
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
/* GNU mailutils - a suite of utilities for electronic mail
Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <mail.local.h>
#ifdef WITH_GUILE
#include <mu_scm.h>
int debug_guile;
SCM mda_catch_body (void *data, mailbox_t mbox);
SCM mda_catch_handler (void *unused, SCM tag, SCM throw_args);
int mda_next (void *data, mailbox_t mbox);
int mda_exit (void *data, mailbox_t mbox);
int mda_init (void *data);
int
prog_mda (struct mda_data *data)
{
char *x_argv[2];
guimb_param_t param;
mailbox_t mbox;
x_argv[0] = "mail.local";
x_argv[1] = NULL;
fflush (data->fp);
if (mailbox_create (&mbox, data->tempfile)
|| mailbox_open (mbox, MU_STREAM_RDWR) != 0)
{
mailer_err ("can't open temporary storage");
return EX_UNAVAILABLE;
}
unlink (data->tempfile);
param.debug_guile = debug_guile;
param.mbox = mbox;
param.user_name = NULL;
param.init = mda_init;
param.catch_body = mda_catch_body;
param.catch_handler = mda_catch_handler;
param.next = mda_next;
param.exit = mda_exit;
param.data = data;
mu_process_mailbox (1, x_argv, ¶m);
return EX_UNAVAILABLE;
}
int
mda_init (void *data)
{
struct mda_data *md = data;
md->progfile = mu_expand_path_pattern (md->progfile_pattern, md->argv[0]);
return 0;
}
static void
mda_switch_to_user (struct mda_data *md)
{
struct mu_auth_data *auth = NULL;
if (md && *md->argv != NULL)
auth = mu_get_auth_by_name (*md->argv);
if (auth)
{
switch_user_id (auth, 1);
chdir (auth->dir);
mu_auth_data_free (auth);
}
else
{
switch_user_id (auth, 0);
chdir ("/");
}
}
SCM
mda_catch_body (void *data, mailbox_t mbox)
{
struct mda_data *md = data;
message_t mesg = NULL;
attribute_t attr = NULL;
FILE *fp = md->fp;
if (access (md->progfile, R_OK))
{
if (debug_level > 2)
syslog (LOG_DEBUG, "access to %s failed: %m", md->progfile);
}
else
{
mda_switch_to_user (md);
scm_primitive_load (scm_makfrom0str (md->progfile));
}
mailbox_get_message (mbox, 1, &mesg);
message_get_attribute (mesg, &attr);
if (attribute_is_deleted (attr))
return SCM_BOOL_F;
if (message_is_modified (mesg))
{
char *tname;
int fd = mu_tempfile (NULL, &tname);
mailbox_t tmp;
close (fd);
if (mailbox_create (&tmp, tname) == 0
&& mailbox_open (tmp, MU_STREAM_RDWR) == 0)
{
mailbox_append_message (tmp, mesg);
mailbox_close (tmp);
mailbox_destroy (&tmp);
fp = fopen (tname, "r");
}
unlink (tname);
}
mda_switch_to_user (NULL);
mda (fp, md->argv[0]);
if (fp != md->fp)
fclose (fp);
return SCM_BOOL_F;
}
SCM
mda_catch_handler (void *data, SCM tag, SCM throw_args)
{
exit_code = EX_TEMPFAIL;
return scm_handle_by_message_noexit ("mail.local", tag, throw_args);
}
int
mda_next (void *data, mailbox_t mbox)
{
struct mda_data *md = data;
message_t mesg = NULL;
attribute_t attr = NULL;
md->argv++;
if (*md->argv == NULL)
return 0;
if (md->progfile)
free (md->progfile);
md->progfile = mu_expand_path_pattern (md->progfile_pattern, *md->argv);
mailbox_get_message (mbox, 1, &mesg);
message_get_attribute (mesg, &attr);
attribute_unset_deleted (attr);
return md->progfile != NULL;
}
int
mda_exit (void *data, mailbox_t mbox)
{
return exit_code;
}
#endif