]> granicus.if.org Git - mutt/log
mutt
18 years ago# changelog commit
Thomas Roessler [Thu, 8 Jun 2006 11:38:55 +0000 (11:38 +0000)]
# changelog commit

18 years agoFix #2272.
Thomas Roessler [Thu, 8 Jun 2006 11:38:08 +0000 (11:38 +0000)]
Fix #2272.

18 years ago# changelog commit
Brendan Cully [Tue, 6 Jun 2006 23:59:14 +0000 (23:59 +0000)]
# changelog commit

18 years agoRemove variable aliases from the output of mutt -D (modified for
Paul Walker [Tue, 6 Jun 2006 23:58:10 +0000 (23:58 +0000)]
Remove variable aliases from the output of mutt -D (modified for
dubious cosmetic reasons). Closes: #2265.

18 years ago# changelog commit
Brendan Cully [Fri, 26 May 2006 16:53:10 +0000 (16:53 +0000)]
# changelog commit

18 years agoWhen flags are added to CPPFLAGS and LDFLAGS in configure.in, this
Vincent Lefevre [Fri, 26 May 2006 16:51:48 +0000 (16:51 +0000)]
When flags are added to CPPFLAGS and LDFLAGS in configure.in, this
should be done with a consistent order. Otherwise, when several
versions of a library are installed, this could lead to a mismatch
between the header and the library.

18 years ago# changelog commit
Brendan Cully [Fri, 26 May 2006 16:39:53 +0000 (16:39 +0000)]
# changelog commit

18 years agoAdd mutt_socket_write_n to write binary data. Use this function in
TAKAHASHI Tamotsu [Fri, 26 May 2006 16:38:17 +0000 (16:38 +0000)]
Add mutt_socket_write_n to write binary data. Use this function in
imap_append_message. Closes: #2244.

18 years ago# changelog commit
Brendan Cully [Sun, 21 May 2006 23:28:18 +0000 (23:28 +0000)]
# changelog commit

18 years agoreldate.h is a generated file now: remove reldate.h from version control,
Brendan Cully [Sun, 21 May 2006 23:25:48 +0000 (23:25 +0000)]
reldate.h is a generated file now: remove reldate.h from version control,
and add it to .cvsignore.

18 years ago# changelog commit
Brendan Cully [Fri, 19 May 2006 20:39:49 +0000 (20:39 +0000)]
# changelog commit

18 years agoAdd intro.html to distributed HTML files (fallout from conversion from article
Brendan Cully [Fri, 19 May 2006 20:38:05 +0000 (20:38 +0000)]
Add intro.html to distributed HTML files (fallout from conversion from article
to book).

18 years ago# changelog commit
Brendan Cully [Fri, 19 May 2006 18:53:03 +0000 (18:53 +0000)]
# changelog commit

18 years agoUse +/-/! instead of N/D/M in UPDATING.
Brendan Cully [Fri, 19 May 2006 18:51:58 +0000 (18:51 +0000)]
Use +/-/! instead of N/D/M in UPDATING.

18 years ago# changelog commit
Brendan Cully [Fri, 19 May 2006 18:33:32 +0000 (18:33 +0000)]
# changelog commit

18 years agoAdd new updating file
Brendan Cully [Fri, 19 May 2006 18:32:35 +0000 (18:32 +0000)]
Add new updating file

18 years agoThe UPDATING document is supposed (when complete) to provide quick
Rocco Rutte [Fri, 19 May 2006 18:30:10 +0000 (18:30 +0000)]
The UPDATING document is supposed (when complete) to provide quick
pointers by date to changed features (new options/commands, new
features, changed defaults, etc.)

18 years ago# changelog commit
Brendan Cully [Fri, 19 May 2006 18:19:47 +0000 (18:19 +0000)]
# changelog commit

18 years agoDocument speed impact of attachment counting. This adds a short paragraph to
Rocco Rutte [Fri, 19 May 2006 18:17:38 +0000 (18:17 +0000)]
Document speed impact of attachment counting. This adds a short paragraph to
manual.xml and cross-links %X-expandos to it.

18 years ago# changelog commit
Brendan Cully [Thu, 18 May 2006 18:37:07 +0000 (18:37 +0000)]
# changelog commit

18 years agoUse header_cache_t* instead of void* for header cache.
Rocco Rutte [Thu, 18 May 2006 18:35:10 +0000 (18:35 +0000)]
Use header_cache_t* instead of void* for header cache.

In hcache.c, the header_cache structure is defined to match the needs
per DB backend used. Thus the interface uses void* abstract from it.

This patch adds a 'header_cache' forward declaration to hcache.h so that
we at least get a little more type safety.

18 years ago# changelog commit
Brendan Cully [Thu, 18 May 2006 18:33:12 +0000 (18:33 +0000)]
# changelog commit

18 years agoNote that the DocBook 4.2 DTD should be installed locally in order to
Rocco Rutte [Thu, 18 May 2006 18:11:20 +0000 (18:11 +0000)]
Note that the DocBook 4.2 DTD should be installed locally in order to
build the manual.

18 years ago# changelog commit
Brendan Cully [Thu, 18 May 2006 18:05:39 +0000 (18:05 +0000)]
# changelog commit

18 years agoProperly use tables in manual where appropriate.
Rocco Rutte [Thu, 18 May 2006 18:02:34 +0000 (18:02 +0000)]
Properly use tables in manual where appropriate.

Now, lots of information which really deserves a table is just put into
<screen/> sections with manual line breaks and things like that.

This is ugly for several reasons including that the information stored
there should be accessable straight from the table of contents.

For the TOC, this patch switches to <book/> for the manual and uses a
deeper split level so things actually look nicer.

The only problem are tables which may be not so well supported when
dumping the HTML to .txt but the DocBook->txt converter with table
support is work-in-progress...

18 years ago# changelog commit
Brendan Cully [Thu, 18 May 2006 17:37:49 +0000 (17:37 +0000)]
# changelog commit

18 years agoAvoid safe_free() usage and add security checks
Rocco Rutte [Thu, 18 May 2006 17:35:29 +0000 (17:35 +0000)]
Avoid safe_free() usage and add security checks

Add checks to check_sec.sh for memory functions.

These include a check for use of safe_free() instead of FREE() and a
check whether FREE(&...) is used.

For the former, __SAFE_FREE_CHECKED__ is to be used, for the latter
__FREE_CHECKED__ to avoid messages from check_sec.sh

18 years ago# changelog commit
Thomas Roessler [Thu, 18 May 2006 08:53:54 +0000 (08:53 +0000)]
# changelog commit

18 years agoAutogenerate reldate.h from ChangeLog.
Rocco Rutte [Thu, 18 May 2006 08:53:31 +0000 (08:53 +0000)]
Autogenerate reldate.h from ChangeLog.

18 years ago# changelog commit
Brendan Cully [Wed, 17 May 2006 18:38:09 +0000 (18:38 +0000)]
# changelog commit

18 years agoUpdated nl.po.
René Clerc [Wed, 17 May 2006 18:37:33 +0000 (18:37 +0000)]
Updated nl.po.

18 years ago# changelog commit
Brendan Cully [Tue, 16 May 2006 05:16:09 +0000 (05:16 +0000)]
# changelog commit

18 years agoUpdated fr.po
Vincent Lefevre [Tue, 16 May 2006 05:01:02 +0000 (05:01 +0000)]
Updated fr.po

18 years ago# changelog commit
Thomas Roessler [Sat, 6 May 2006 07:43:54 +0000 (07:43 +0000)]
# changelog commit

18 years agoHeader caching for mh folders.
Rocco Rutte [Sat, 6 May 2006 07:42:51 +0000 (07:42 +0000)]
Header caching for mh folders.

18 years ago# changelog commit
Brendan Cully [Fri, 5 May 2006 17:28:09 +0000 (17:28 +0000)]
# changelog commit

18 years agoSet system ID to docbook 4.2, in harmony with schema URL.
Rocco Rutte [Fri, 5 May 2006 17:27:10 +0000 (17:27 +0000)]
Set system ID to docbook 4.2, in harmony with schema URL.

18 years ago# changelog commit
Brendan Cully [Tue, 2 May 2006 22:24:20 +0000 (22:24 +0000)]
# changelog commit

18 years agoFix an improper dereference in mutt_buffer_init (I think).
Rocco Rutte [Tue, 2 May 2006 22:23:35 +0000 (22:23 +0000)]
Fix an improper dereference in mutt_buffer_init (I think).

18 years ago# changelog commit
Thomas Roessler [Fri, 28 Apr 2006 19:53:37 +0000 (19:53 +0000)]
# changelog commit

18 years agoCleaning up attachment counting. This takes away some of the
Thomas Roessler [Fri, 28 Apr 2006 19:52:44 +0000 (19:52 +0000)]
Cleaning up attachment counting.  This takes away some of the
worst aberrations, but the feature is still a performance hog.

18 years ago# changelog commit
Thomas Roessler [Fri, 28 Apr 2006 12:19:47 +0000 (12:19 +0000)]
# changelog commit

18 years ago"could somebody please move this really nasty bug fix taken
Ralf Wildenhues [Fri, 28 Apr 2006 12:19:20 +0000 (12:19 +0000)]
"could somebody please move this really nasty bug fix taken
from Brendan's esmtp patch to the mailine code?" -- "done"

18 years ago# changelog commit
Thomas Roessler [Fri, 28 Apr 2006 08:35:30 +0000 (08:35 +0000)]
# changelog commit

18 years agopdmef+fix+sslinterface. Triggered by a warning when compiling
Rocco Rutte [Fri, 28 Apr 2006 08:35:02 +0000 (08:35 +0000)]
pdmef+fix+sslinterface. Triggered by a warning when compiling
with POP and GNUTLS, I noticed the SSL interfaces for OpenSSL
and GNUTLS internally are different which doesn't make sense.

18 years ago# changelog commit
Thomas Roessler [Fri, 28 Apr 2006 08:29:38 +0000 (08:29 +0000)]
# changelog commit

18 years agopdmef+fix+dino.diff. This fixes mutt/2174.
Rocco Rutte [Fri, 28 Apr 2006 08:27:28 +0000 (08:27 +0000)]
pdmef+fix+dino.diff. This fixes mutt/2174.

18 years ago# changelog commit
Brendan Cully [Mon, 24 Apr 2006 19:59:35 +0000 (19:59 +0000)]
# changelog commit

18 years agoDon't abort configure if --without-sasl is given without any network
exg [Mon, 24 Apr 2006 19:59:07 +0000 (19:59 +0000)]
Don't abort configure if --without-sasl is given without any network
options. Gentoo's build scripts seem to generate this configuration.

18 years ago# changelog commit
Thomas Roessler [Thu, 20 Apr 2006 16:47:15 +0000 (16:47 +0000)]
# changelog commit

18 years agoMake mutt_parse_crypt_hdr more SMIME-aware.
Moritz Schulte [Thu, 20 Apr 2006 16:46:49 +0000 (16:46 +0000)]
Make mutt_parse_crypt_hdr more SMIME-aware.

18 years ago# changelog commit
Brendan Cully [Tue, 18 Apr 2006 23:23:58 +0000 (23:23 +0000)]
# changelog commit

18 years agoHandle Exchange's bogus short challenge in AUTH NTLM (problem debugged by
Brendan Cully [Tue, 18 Apr 2006 23:22:30 +0000 (23:22 +0000)]
Handle Exchange's bogus short challenge in AUTH NTLM (problem debugged by
Alexander Gattin).

18 years ago# changelog commit
Thomas Roessler [Tue, 18 Apr 2006 15:29:40 +0000 (15:29 +0000)]
# changelog commit

18 years agoFix saving of attachments.
Thomas Roessler [Tue, 18 Apr 2006 15:28:50 +0000 (15:28 +0000)]
Fix saving of attachments.

18 years ago# changelog commit
Brendan Cully [Wed, 5 Apr 2006 17:30:20 +0000 (17:30 +0000)]
# changelog commit

18 years ago(1) OP_MAIN_LINK_THREADS needs to check for IMAP_ACL_DELETE permission,
Phil Pennock [Wed, 5 Apr 2006 17:28:30 +0000 (17:28 +0000)]
(1) OP_MAIN_LINK_THREADS needs to check for IMAP_ACL_DELETE permission,
     since the thread linking involves deleting the old email

 (2) makes CHECK_IMAP_ACL() a no-op if USE_IMAP is not defined; then
     cleans up a bunch of the #ifdef litter.

18 years ago# changelog commit
Brendan Cully [Mon, 3 Apr 2006 20:27:01 +0000 (20:27 +0000)]
# changelog commit

18 years agoDon't pass a null destination to imap_fix_path in the default
Brendan Cully [Mon, 3 Apr 2006 20:26:14 +0000 (20:26 +0000)]
Don't pass a null destination to imap_fix_path in the default
STATUS handler when the mailbox name is implicitly INBOX. Thanks
to Kai Hendry for the test mailbox and Sami Liedes for the
backtrace. Closes debian #351337.

18 years ago# changelog commit
Brendan Cully [Mon, 3 Apr 2006 19:30:50 +0000 (19:30 +0000)]
# changelog commit

18 years agoSet $record default to ~/sent (closes: #2068).
Brendan Cully [Mon, 3 Apr 2006 19:29:55 +0000 (19:29 +0000)]
Set $record default to ~/sent (closes: #2068).

18 years ago# changelog commit
Brendan Cully [Thu, 30 Mar 2006 19:50:45 +0000 (19:50 +0000)]
# changelog commit

18 years agoTighten up lists/subscribe example, to close #2198.
Brendan Cully [Thu, 30 Mar 2006 19:50:01 +0000 (19:50 +0000)]
Tighten up lists/subscribe example, to close #2198.

18 years ago# changelog commit
Brendan Cully [Tue, 28 Mar 2006 18:05:24 +0000 (18:05 +0000)]
# changelog commit

18 years agoimap-fetch-mail should check that there is a Context before dereferencing
Mike Hallock [Tue, 28 Mar 2006 18:04:21 +0000 (18:04 +0000)]
imap-fetch-mail should check that there is a Context before dereferencing
Context->magic to avoid a segfault possibility.

18 years ago# changelog commit
Brendan Cully [Tue, 28 Mar 2006 01:08:59 +0000 (01:08 +0000)]
# changelog commit

18 years agoSanitize attachment file names (seatbelt for inattentive recipients).
Paul Walker [Tue, 28 Mar 2006 01:08:28 +0000 (01:08 +0000)]
Sanitize attachment file names (seatbelt for inattentive recipients).

18 years ago# changelog commit
Brendan Cully [Fri, 24 Mar 2006 23:16:50 +0000 (23:16 +0000)]
# changelog commit

18 years agoDocument the need for a docbook-xsl bundle in order to build the docs.
Paul Walker [Fri, 24 Mar 2006 23:15:37 +0000 (23:15 +0000)]
Document the need for a docbook-xsl bundle in order to build the docs.

18 years ago# changelog commit
Brendan Cully [Wed, 15 Mar 2006 12:35:09 +0000 (12:35 +0000)]
# changelog commit

18 years agoDon't store UIDNEXT unless we know it.
Brendan Cully [Wed, 15 Mar 2006 12:26:00 +0000 (12:26 +0000)]
Don't store UIDNEXT unless we know it.

18 years ago# changelog commit
Brendan Cully [Wed, 15 Mar 2006 02:03:11 +0000 (02:03 +0000)]
# changelog commit

18 years agoOnly synthesize UIDNEXT if we've fetched uncached messages. Fixes a
Brendan Cully [Wed, 15 Mar 2006 02:02:22 +0000 (02:02 +0000)]
Only synthesize UIDNEXT if we've fetched uncached messages. Fixes a
FETCH 1:0 bug Bruno Postle reported and helped to debug.

18 years ago# changelog commit
Brendan Cully [Mon, 13 Mar 2006 23:22:28 +0000 (23:22 +0000)]
# changelog commit

18 years agoCourier fails to send UIDNEXT on SELECT (a violation of RFC 3501
Brendan Cully [Mon, 13 Mar 2006 23:21:51 +0000 (23:21 +0000)]
Courier fails to send UIDNEXT on SELECT (a violation of RFC 3501
section 6.3.1) - synthesize it if it is missing.

18 years ago# changelog commit
Brendan Cully [Mon, 13 Mar 2006 20:13:03 +0000 (20:13 +0000)]
# changelog commit

18 years agoMake imap_idle default to false for 1.5.12.
Brendan Cully [Mon, 13 Mar 2006 20:12:27 +0000 (20:12 +0000)]
Make imap_idle default to false for 1.5.12.

18 years ago# changelog commit
Thomas Roessler [Fri, 3 Mar 2006 10:14:44 +0000 (10:14 +0000)]
# changelog commit

18 years agoreply-hook is used in contexts where we don't have a Context
Thomas Roessler [Fri, 3 Mar 2006 10:12:27 +0000 (10:12 +0000)]
reply-hook is used in contexts where we don't have a Context
structure available. Hence, it must not require the full
message.

18 years ago# changelog commit
Thomas Roessler [Fri, 3 Mar 2006 09:56:42 +0000 (09:56 +0000)]
# changelog commit

18 years agoFix mutt/2189; lack of error checking in the query code.
Thomas Roessler [Fri, 3 Mar 2006 09:55:46 +0000 (09:55 +0000)]
Fix mutt/2189; lack of error checking in the query code.

18 years ago# changelog commit
Brendan Cully [Tue, 21 Feb 2006 21:52:49 +0000 (21:52 +0000)]
# changelog commit

18 years agoPreallocate some buffer space before attempting vsnprintf in
Brendan Cully [Tue, 21 Feb 2006 21:52:17 +0000 (21:52 +0000)]
Preallocate some buffer space before attempting vsnprintf in
mutt_buffer_printf (Solaris 9 workaround).

18 years ago# changelog commit
Thomas Roessler [Tue, 21 Feb 2006 08:10:42 +0000 (08:10 +0000)]
# changelog commit

18 years agoFix mutt/2186.
Thomas Roessler [Tue, 21 Feb 2006 08:10:15 +0000 (08:10 +0000)]
Fix mutt/2186.

18 years ago# changelog commit
Brendan Cully [Tue, 21 Feb 2006 00:34:28 +0000 (00:34 +0000)]
# changelog commit

18 years agoCatch mutt_buffer_printf failures.
Brendan Cully [Tue, 21 Feb 2006 00:29:10 +0000 (00:29 +0000)]
Catch mutt_buffer_printf failures.

19 years ago# changelog commit
Brendan Cully [Thu, 26 Jan 2006 07:32:28 +0000 (07:32 +0000)]
# changelog commit

19 years agoSet datarootdir.
Ralf Wildenhues [Thu, 26 Jan 2006 07:13:06 +0000 (07:13 +0000)]
Set datarootdir.

19 years ago# changelog commit
Brendan Cully [Fri, 20 Jan 2006 21:22:01 +0000 (21:22 +0000)]
# changelog commit

19 years agoCorrect a fairly harmless typo parsing message \Recent flags.
Phil Pennock [Fri, 20 Jan 2006 21:21:31 +0000 (21:21 +0000)]
Correct a fairly harmless typo parsing message \Recent flags.

19 years ago# changelog commit
Brendan Cully [Sun, 15 Jan 2006 21:39:01 +0000 (21:39 +0000)]
# changelog commit

19 years agoA conservative update of copyright years. Some other files may need updating
Brendan Cully [Sun, 15 Jan 2006 21:37:03 +0000 (21:37 +0000)]
A conservative update of copyright years. Some other files may need updating
too.

19 years ago# changelog commit
Brendan Cully [Sat, 14 Jan 2006 01:17:56 +0000 (01:17 +0000)]
# changelog commit

19 years agoTab-completion for my_ variable names and values.
Phil Pennock [Sat, 14 Jan 2006 01:16:59 +0000 (01:16 +0000)]
Tab-completion for my_ variable names and values.

19 years ago# changelog commit
Thomas Roessler [Fri, 13 Jan 2006 09:08:41 +0000 (09:08 +0000)]
# changelog commit

19 years agoMore compact code for managing the "my" variables list.
Thomas Roessler [Fri, 13 Jan 2006 09:08:11 +0000 (09:08 +0000)]
More compact code for managing the "my" variables list.

19 years ago# changelog commit
Brendan Cully [Thu, 12 Jan 2006 19:10:03 +0000 (19:10 +0000)]
# changelog commit

19 years agoUpdate MyVars to the next entry when deleting the head of the list,
Phil Pennock [Thu, 12 Jan 2006 19:09:28 +0000 (19:09 +0000)]
Update MyVars to the next entry when deleting the head of the list,
instead of leaving it pointing to a freed entry.

19 years ago# changelog commit
Thomas Roessler [Thu, 12 Jan 2006 09:40:47 +0000 (09:40 +0000)]
# changelog commit