Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
38ae4fcf
...
38ae4fcfd8aedda45b13eaf18e5a68ba4993ca7b
authored
2006-10-20 07:42:23 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Update
1 parent
7990bfda
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
53 additions
and
3 deletions
ChangeLog
NEWS
doc/texinfo/programs.texi
ChangeLog
View file @
38ae4fc
2006-10-20 Sergey Poznyakoff <gray@gnu.org.ua>
* NEWS: Updated
* doc/texinfo/programs.texi: Updated
* configure.ac (MU_GUILE_SITE_DIR,MU_GUILE_SIEVE_MOD_DIR)
(MU_GUILE_SIEVE_SCRIPTS,MU_GUILE_SIEVE_MOD_DATA): New variables to
clean build without Guile
* guimb/scm/Makefile.am: Likewise
* libmu_scm/Makefile.am: Likewise
* mail/escape.c (escape_sign): Print "-- \n" before the signature.
* mail/util.c (util_do_command): Implement ^ and $.
2006-10-18 Sergey Poznyakoff <gray@gnu.org.ua>
* configure.ac: Require gettext 0.15
...
...
NEWS
View file @
38ae4fc
GNU mailutils NEWS -- history of user-visible changes. 2006-
07-05
GNU mailutils NEWS -- history of user-visible changes. 2006-
10-11
Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
See the end of file for copying conditions.
...
...
@@ -7,9 +7,29 @@ Please send mailutils bug reports to <bug-mailutils@gnu.org>.
Version 1.0.1 (CVS):
* mail: Implement ^ and $ commands
* Add support for Berkeley DB 3 and 4
* comsat
The syntax of echo command changed. Now it is more shell-like:
echo
echo New mail for \a$u@$h:
echo ---
echo From: $H{From}
echo Subject: $H{Subject}
echo $B(,5)---
** Bug fixes
* Fix build without Guile
* mail core dumped on tab expansion of `cd x'
* Print "-- \n" before ~a expansion in mail
* Fix memory problems in mail's `decode' command
* Fix endless loop in libsieve that was triggered by using a tag without the
arguments it requires.
* Fix unfolding
Version 1.0:
...
...
doc/texinfo/programs.texi
View file @
38ae4fc
...
...
@@ -3869,8 +3869,11 @@ The following actions are defined:
@table @asis
@item beep
Produce an audible signal.
@item echo @var{string}
Output @var{string} to user's terminal device.
@item echo [-n] @var{string} [@var{string}...]
Output the arguments to the user's terminal device. If several
arguments are given they will be output separated by single
spaces. The newline character will be printed at the end of the
output, unless the @option{-n} option is used.
@item exec @var{prog} @var{arglist}
Execute program @var{prog} with arguments from @var{arglist}. @var{prog}
must be specified with absolute pathname. It may not be a setuid or
...
...
@@ -3910,6 +3913,20 @@ $B(,5)\
@end group
@end smallexample
@noindent
The above example can also be written as:
@smallexample
@group
echo Mail to
\a
$u@@$h
\a
echo ---
echo From: $H@{From@}
echo Subject: $H@{Subject@}
echo ---
echo $B(,5)
echo ---
@end group
@end smallexample
@subsubheading Example II
Produce a bell, then pop up the xmessage window on display :0.0 with
...
...
Please
register
or
sign in
to post a comment