Commit 38ae4fcf 38ae4fcfd8aedda45b13eaf18e5a68ba4993ca7b by Sergey Poznyakoff

Update

1 parent 7990bfda
1 2006-10-20 Sergey Poznyakoff <gray@gnu.org.ua>
2
3 * NEWS: Updated
4 * doc/texinfo/programs.texi: Updated
5
6 * configure.ac (MU_GUILE_SITE_DIR,MU_GUILE_SIEVE_MOD_DIR)
7 (MU_GUILE_SIEVE_SCRIPTS,MU_GUILE_SIEVE_MOD_DATA): New variables to
8 clean build without Guile
9 * guimb/scm/Makefile.am: Likewise
10 * libmu_scm/Makefile.am: Likewise
11 * mail/escape.c (escape_sign): Print "-- \n" before the signature.
12 * mail/util.c (util_do_command): Implement ^ and $.
13
1 2006-10-18 Sergey Poznyakoff <gray@gnu.org.ua> 14 2006-10-18 Sergey Poznyakoff <gray@gnu.org.ua>
2 15
3 * configure.ac: Require gettext 0.15 16 * configure.ac: Require gettext 0.15
......
1 GNU mailutils NEWS -- history of user-visible changes. 2006-07-05 1 GNU mailutils NEWS -- history of user-visible changes. 2006-10-11
2 Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. 2 Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
3 See the end of file for copying conditions. 3 See the end of file for copying conditions.
4 4
...@@ -7,9 +7,29 @@ Please send mailutils bug reports to <bug-mailutils@gnu.org>. ...@@ -7,9 +7,29 @@ Please send mailutils bug reports to <bug-mailutils@gnu.org>.
7 7
8 Version 1.0.1 (CVS): 8 Version 1.0.1 (CVS):
9 9
10 * mail: Implement ^ and $ commands
11
12 * Add support for Berkeley DB 3 and 4
13
14 * comsat
15
16 The syntax of echo command changed. Now it is more shell-like:
17
18 echo
19 echo New mail for \a$u@$h:
20 echo ---
21 echo From: $H{From}
22 echo Subject: $H{Subject}
23 echo $B(,5)---
24
10 ** Bug fixes 25 ** Bug fixes
26 * Fix build without Guile
11 * mail core dumped on tab expansion of `cd x' 27 * mail core dumped on tab expansion of `cd x'
28 * Print "-- \n" before ~a expansion in mail
12 * Fix memory problems in mail's `decode' command 29 * Fix memory problems in mail's `decode' command
30 * Fix endless loop in libsieve that was triggered by using a tag without the
31 arguments it requires.
32 * Fix unfolding
13 33
14 34
15 Version 1.0: 35 Version 1.0:
......
...@@ -3869,8 +3869,11 @@ The following actions are defined: ...@@ -3869,8 +3869,11 @@ The following actions are defined:
3869 @table @asis 3869 @table @asis
3870 @item beep 3870 @item beep
3871 Produce an audible signal. 3871 Produce an audible signal.
3872 @item echo @var{string} 3872 @item echo [-n] @var{string} [@var{string}...]
3873 Output @var{string} to user's terminal device. 3873 Output the arguments to the user's terminal device. If several
3874 arguments are given they will be output separated by single
3875 spaces. The newline character will be printed at the end of the
3876 output, unless the @option{-n} option is used.
3874 @item exec @var{prog} @var{arglist} 3877 @item exec @var{prog} @var{arglist}
3875 Execute program @var{prog} with arguments from @var{arglist}. @var{prog} 3878 Execute program @var{prog} with arguments from @var{arglist}. @var{prog}
3876 must be specified with absolute pathname. It may not be a setuid or 3879 must be specified with absolute pathname. It may not be a setuid or
...@@ -3910,6 +3913,20 @@ $B(,5)\ ...@@ -3910,6 +3913,20 @@ $B(,5)\
3910 @end group 3913 @end group
3911 @end smallexample 3914 @end smallexample
3912 3915
3916 @noindent
3917 The above example can also be written as:
3918 @smallexample
3919 @group
3920 echo Mail to \a$u@@$h\a
3921 echo ---
3922 echo From: $H@{From@}
3923 echo Subject: $H@{Subject@}
3924 echo ---
3925 echo $B(,5)
3926 echo ---
3927 @end group
3928 @end smallexample
3929
3913 @subsubheading Example II 3930 @subsubheading Example II
3914 3931
3915 Produce a bell, then pop up the xmessage window on display :0.0 with 3932 Produce a bell, then pop up the xmessage window on display :0.0 with
......