README
2.51 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
README -- Differences between Mailutils and the RAND implementation of MH:
* All programs use usual GNU long options. The support for MH single-dot
options is provided for backward compatibility.
* Format specifications
** New functions
*** package
Argument: none
Return: string
Returns package name (string "mailutils").
*** package_string
Argument: none
Return: string
Returns full package string (e.g. "GNU Mailutils 2.1")
*** version
Argument: none
Return: string
Returns mailutils version.
*** unre
Argument: string
Return: string
The function removes any leading whitespace and eventual "Re:" prefix
from its argument. Useful for creating subjects in reply messages:
%<{subject}Subject: Re: %(unre{subject})\\n%>
*** rcpt
Argument: string, one of "to", "cc", "me", "all"
Return: boolean
This function returns true if the given element is present in the
recipient mask (as modified by any --cc and --nocc options) and
false otherwise. It is used in default formats for repl and comp, e.g.:
%(lit)%<(rcpt to)%(formataddr{to})%>
Notice that this means that usual replcomps file will be ignoring
--cc and --nocc options, unless it has been modified as shown above.
*** concat
Argument: string
Return: none
Appends whitespace + arg to string register.
*** printhdr
Argument: string
Return: none
Prints the value of string register, prefixed by the given
argument. The output is formatted as RFC 822 header, i.e.
it is split at whitespace characters nearest to the width boundary
and each subsequent segment is prefixed with horizontal tabulation.
*** in_reply_to
Argument: none
Return: string
Generates the value for the In-reply-to: header according to RFC 2822.
*** references
Argument: none
Return: string
Generates the value for the References: header according to RFC 2822.
* rmm
** Different behaviour if one of the messages in the list does not exist.
Mailutils rmm does not delete any messages. Standard rmm in this case
deletes all messages preceeding the non-existent one.
** The rmmproc: profile component is not used.
* fmtdump command is not provided. Use fmtcheck instead.
* repl
Understands --use option. Disposition shell provides 'use' command.
* comp
Understands --build option.
* mhl
If the argument to 'ignores' contains more than one component name
it must be enclosed in double-quotes. Dangling equal sign is an error,
to set a string variable to the empty value use = "", e.g.:
overflowtext=""
Ineractive prompting is not yet implemented.
Local variables:
mode: outline
paragraph-separate: "[ ]*$"
end: