aboutsummaryrefslogtreecommitdiff
path: root/src/builtin/header.bi
blob: 39f8c15b57b2fb2bc7ed91b6da2579abdab6f527 (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
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
/* This file is part of Mailfromd.             -*- c -*-
   Copyright (C) 2008, 2010-2011, 2015 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/>. */

MF_DEFUN(header_add, VOID, STRING name, STRING value, OPTIONAL, NUMBER idx)
{
	struct locus locus;

	env_get_locus(env, &locus);

	if (MF_DEFINED(idx)) {
		trace("%s%s:%lu: %s %ld \"%s: %s\"",
		      mailfromd_msgid(env_get_context(env)),
		      locus.file, locus.line,
		      msgmod_opcode_str(header_insert),
		      idx,
		      name, value);
		env_msgmod(env, header_insert, name, value, idx);
	} else {
		trace("%s%s:%lu: %s \"%s: %s\"",
		      mailfromd_msgid(env_get_context(env)),
		      locus.file, locus.line,
		      msgmod_opcode_str(header_add),
		      name, value);
		env_msgmod(env, header_add, name, value, 1);
	}
}
END

MF_DEFUN(header_insert, VOID, STRING name, STRING value, NUMBER idx)
{
	struct locus locus;

	env_get_locus(env, &locus);

	trace("%s%s:%lu: %s %ld \"%s: %s\"",
	      mailfromd_msgid(env_get_context(env)),
	      locus.file, locus.line,
	      msgmod_opcode_str(header_insert),
	      idx,
	      name, value);
	env_msgmod(env, header_insert, name, value, idx);
}
END

MF_DEFUN(header_delete, VOID, STRING name, OPTIONAL, NUMBER idx)
{
	struct locus locus;

	env_get_locus(env, &locus);

	trace("%s%s:%lu: %s \"%s\" (%lu)",
	      mailfromd_msgid(env_get_context(env)),
	      locus.file, locus.line,
	      msgmod_opcode_str(header_delete),
	      name, MF_OPTVAL(idx, 1));
	env_msgmod(env, header_delete, name, NULL, MF_OPTVAL(idx, 1));
}
END

MF_CAPTURE
MF_DEFUN(header_delete_nth, VOID, NUMBER idx)
{
	struct locus locus;

	env_get_locus(env, &locus);

	trace("%s%s:%lu: %s %lu",
	      mailfromd_msgid(env_get_context(env)),
	      locus.file, locus.line,
	      msgmod_opcode_str(header_delete_nth),
	      idx);
	env_msgmod(env, header_delete_nth, NULL, NULL, idx);
}
END

MF_DEFUN(header_replace, VOID, STRING name, STRING value, OPTIONAL, NUMBER idx)
{
	struct locus locus;

	env_get_locus(env, &locus);

	trace("%s%s:%lu: %s \"%s: %s\" (%lu)",
	      mailfromd_msgid(env_get_context(env)),
	      locus.file, locus.line,
	      msgmod_opcode_str(header_replace),
	      name, value, MF_OPTVAL(idx, 1));
	env_msgmod(env, header_replace, name, value, MF_OPTVAL(idx, 1));
}
END

MF_CAPTURE
MF_DEFUN(header_replace_nth, VOID, NUMBER idx, STRING name, STRING value)
{
	struct locus locus;

	env_get_locus(env, &locus);

	trace("%s%s:%lu: %s \"%s: %s\" (%lu)",
	      mailfromd_msgid(env_get_context(env)),
	      locus.file, locus.line,
	      msgmod_opcode_str(header_replace_nth),
	      name, value, idx);
	env_msgmod(env, header_replace_nth, name, value, idx);
}
END

MF_INIT

Return to:

Send suggestions and report system problems to the System administrator.