Updated
Showing
5 changed files
with
90 additions
and
2 deletions
1 | 2003-02-16 Sergey Poznyakoff | ||
2 | |||
3 | * configure.ac: Added check for declaration of strerror. | ||
4 | Raised version number to 0.3 | ||
5 | * NEWS: Updated | ||
6 | |||
7 | * guimb/Makefile.am: Added $(top_srcdir)/mailbox to INCLUDES. | ||
8 | * guimb/guimb.h: Include <getline.h> | ||
9 | * mail/mail.h (util_noapp): Added prototype. | ||
10 | * mail/msgset.y: Declaration of check_set(). | ||
11 | * mail.remote/mail.remote.c: Include <mailutils/error.h> | ||
12 | * mailbox/date.c: Added a clarifying comment. | ||
13 | * mailbox/stream.c (stream_seek): Fixed type of size auto | ||
14 | variable. | ||
15 | |||
16 | * mh/mh_sequence.c: New file. | ||
17 | * mh/pick.h: New file. | ||
18 | * mh/pick.y: New file. | ||
19 | * mh/pick.c: Implemented. | ||
20 | * mh/Makefile.am: Added mh_sequence.c and pick.y. Provide | ||
21 | for multiple parsers within an application. | ||
22 | * mh/.cvsignore: Updated. | ||
23 | * mh/README: Updated | ||
24 | * mh/TODO: Updated | ||
25 | |||
26 | * mh/mh.h (mh_seq_add, mh_seq_delete, mh_seq_read): New functions. | ||
27 | * mh/mh_argp.c (parse_opt): Pass argp_state to the handler | ||
28 | (my_argp_parse): Changed declaration. The new argument `flags' | ||
29 | is accepted. Use my_argp_parse() wrapper instead of | ||
30 | argp_parse(). | ||
31 | * mh/mh_getopt.h: Updated. | ||
32 | |||
33 | * mh/anno.c: Changed invocation of mh_argp_parse and updated | ||
34 | the definition of opt_handler. | ||
35 | * mh/comp.c: Likewise. | ||
36 | * mh/mhl.c: Likewise. | ||
37 | * mh/mhpath.c: Likewise. | ||
38 | * mh/refile.c: Likewise. | ||
39 | * mh/repl.c: Likewise. | ||
40 | * mh/rmf.c: Likewise. | ||
41 | * mh/rmm.c: Likewise. | ||
42 | * mh/scan.c: Likewise. | ||
43 | * mh/send.c: Likewise. | ||
44 | * mh/whatnow.c: Likewise. | ||
45 | * mh/fmtcheck.c: Likewise. | ||
46 | * mh/folder.c: Likewise. | ||
47 | * mh/inc.c: Likewise. | ||
48 | * mh/install-mh.c: Likewise. | ||
49 | * mh/mark.c: Likewise. Use new mh_sequence functions. | ||
50 | |||
51 | * doc/texinfo/fdl.texi: Minor change. | ||
52 | * doc/texinfo/programs.texi: Advice on how to use mail.local | ||
53 | with SQL authentication. | ||
54 | |||
1 | 2003-02-14 Wojciech Polak | 55 | 2003-02-14 Wojciech Polak |
2 | 56 | ||
3 | * po/POTFILES.in: Added auth/tls.c. | 57 | * po/POTFILES.in: Added auth/tls.c. | ... | ... |
... | @@ -55,7 +55,9 @@ returned by EXAMINE, SELECT, and NOOP. | ... | @@ -55,7 +55,9 @@ returned by EXAMINE, SELECT, and NOOP. |
55 | 55 | ||
56 | * mail: Fixed error diagnostics and removed startup banner. | 56 | * mail: Fixed error diagnostics and removed startup banner. |
57 | 57 | ||
58 | * mh: Initial implementation. | 58 | * mh: Initial implementation. The basic MH utilities are implemented |
59 | that allow to use the package with the GNU Emacs mh-e module. Please | ||
60 | refer to the files README and TODO in the mh subdirectory. | ||
59 | 61 | ||
60 | 62 | ||
61 | Version 0.2: | 63 | Version 0.2: | ... | ... |
... | @@ -117,6 +117,35 @@ overflowtext="" (see supplied mhl.format file). | ... | @@ -117,6 +117,35 @@ overflowtext="" (see supplied mhl.format file). |
117 | 117 | ||
118 | Ineractive prompting is not yet implemented. | 118 | Ineractive prompting is not yet implemented. |
119 | 119 | ||
120 | * pick | ||
121 | |||
122 | ** The non-standard command line syntax `--FIELD STRING' where `FIELD' is | ||
123 | any string is deprecated. It is recognized only if pick is called from | ||
124 | within another program, so that existing application continue to work. | ||
125 | Please use the following syntax instead: `--component FIELD --pattern STRING' | ||
126 | |||
127 | ** The command line options --cflags allows to control the type of | ||
128 | regular expressions used. The option must occur right before --pattern | ||
129 | or --component option (or one of its aliases, like --cc, --from, etc.) | ||
130 | The argument to this option is a string of type specifications: | ||
131 | |||
132 | B Use basic regular expressions | ||
133 | E Use extended regular expressions | ||
134 | I Ignore case | ||
135 | C Case sensitive. | ||
136 | |||
137 | Default is "EI". | ||
138 | |||
139 | The flags remain in effect until the next occurrence of --cflags | ||
140 | option. | ||
141 | |||
142 | Sample usage: | ||
143 | |||
144 | pick --cflag BC --subject '*a string' | ||
145 | |||
146 | ** The date comparisons (the options --before and --after) are not yet | ||
147 | supported. | ||
148 | |||
120 | 149 | ||
121 | Local variables: | 150 | Local variables: |
122 | mode: outline | 151 | mode: outline | ... | ... |
... | @@ -33,7 +33,8 @@ State Nice Utility Comments | ... | @@ -33,7 +33,8 @@ State Nice Utility Comments |
33 | * 4 mhl Following format variables are ignored: | 33 | * 4 mhl Following format variables are ignored: |
34 | center,split,datefield | 34 | center,split,datefield |
35 | + 5 mark | 35 | + 5 mark |
36 | - 5 pick | 36 | * 5 pick --before and --after are not supported. See |
37 | also the README entry for it. | ||
37 | + 10 anno | 38 | + 10 anno |
38 | - 10 burst | 39 | - 10 burst |
39 | - 10 whom | 40 | - 10 whom | ... | ... |
-
Please register or sign in to post a comment