aboutsummaryrefslogtreecommitdiff
path: root/src/builtin/body.bi
blob: ab6611ff2a68dadb6ba86389d9ef425073dbff44 (plain)
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
/* This file is part of Mailfromd.             -*- c -*-
   Copyright (C) 2008-2018 Sergey Poznyakoff

   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 3, 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, see <http://www.gnu.org/licenses/>. */

#include "msg.h"

MF_STATE(body)
MF_DEFUN(body_string, STRING, POINTER text, NUMBER length)
{
	size_t off;
	char *s = MF_ALLOC_HEAP(off, length + 1);
	memcpy(s, text, length);
	s[length] = 0;
	MF_RETURN(off, size);
}
END

MF_STATE(body)
MF_DEFUN(body_has_nulls, NUMBER, POINTER text, NUMBER length)
{
	MF_RETURN(memchr(text, 0, length) != NULL);
}
END
	
/* number current_message() */
MF_STATE(eom)
MF_CAPTURE(mstr)
MF_DEFUN(current_message, NUMBER)
{
	mu_message_t msg;
	int rc;

	rc = bi_get_current_message(env);
	if (rc < 0) {
		msg = MF_STREAM_TO_MESSAGE(mstr);
		rc = bi_message_register(env, NULL, msg, MF_MSG_CURRENT);
		MF_ASSERT(rc >= 0,
			  mfe_failure,
			  _("no more message slots available"));
	}
	MF_RETURN(rc);
}
END

MF_DEFUN(replbody, VOID, STRING text)
{
	env_msgmod(env, body_repl, "BODY", text, 0);
}
END

MF_DEFUN(replbody_fd, VOID, NUMBER fd)
{
	env_msgmod(env, body_repl_fd, "BODYFD", NULL, _bi_io_fd(env, fd, 0));
}
END

MF_INIT

Return to:

Send suggestions and report system problems to the System administrator.