SourceForge.net | 3 Feb 02:16
Picon

[ mh-e-Bugs-3483408 ] Add completion for folder names for mh-index-new-messages

Bugs item #3483408, was opened at 2012-02-02 17:16
Message generated for change (Tracker Item Submitted) made by cmconnelly
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=113357&aid=3483408&group_id=13357

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Claire Connelly (cmconnelly)
Assigned to: Nobody/Anonymous (nobody)
Summary: Add completion for folder names for mh-index-new-messages

Initial Comment:
I use mh-index-new-messages a lot to get access to different sets of mailboxes (which I have separated into
trees), so I can get all the messages related to different tasks.  But I have to type the whole name of the
enclosing folder for each group; completion would be very helpful.

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=113357&aid=3483408&group_id=13357

------------------------------------------------------------------------------
Try before you buy = See our experts in action!
(Continue reading)

SourceForge.net | 9 Jan 05:39
Picon

[ mh-e-Patches-2945712 ] Postpone junk processing

Patches item #2945712, was opened at 2010-02-03 21:23
Message generated for change (Comment added) made by tphelps
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=313357&aid=2945712&group_id=13357

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: Bazaar
Status: Open
Resolution: Fixed
Priority: 6
Private: No
Submitted By: Ted Phelps (tphelps)
Assigned to: Bill Wohler (wohler)
Summary: Postpone junk processing

Initial Comment:
The attached patch adds new marks to the mh-e folder view to flag messages as white- or black-listed, so that
the training of the junk mail filter can be postponed until mh-execute-commands is invoked.  This makes
the behavior more consistent with the way refile and delete are already performed, makes it possible to
undo a mis-labelling and moves the potentially slow junk mail filter training operation into a less
inconvenient part of the workflow.

I hope you find it useful.

Thanks,
-Ted

(Continue reading)

Jeffrey Honig | 29 Dec 04:38
Face

Intermediate review for SF #1708292

This patch causes mh-edit-again to read the components file and insure
that all headers specified in the components file are present in the new
draft.

It makes use of mh-modify-header-field, so if a value is specified for a
header in the components file, that value will be added to the header in
the draft, unless it is already present.

The one thing I need to do is add support for scanning address fields
for aliases and expanding them.  Otherwise, if an alias was specified on
a cc: field and it was expanded on the draft, it would be appended to
the cc: field in the draft.

At this point I'm looking for feedback on my design.  Including answers
to these questions:

1) Should any of mh-extract-header, mh-components-to-list,
   mh-find-components be moved to mh-utils.el or another file.

2) Is there a more correct function to use than add-to-list in
   mh-compoenents-to-list?  Add-to-list insures entries are unique and
   I'm not sure we need to do that.

Thanks!

Jeff

--

-- 
Jeffrey C. Honig <jch <at> honig.net>
http://www.honig.net/jch
(Continue reading)

SourceForge.net | 28 Dec 02:29
Picon

[ mh-e-Patches-745657 ] add mh-reply-hook and mh-send-hook

Patches item #745657, was opened at 2003-05-29 11:00
Message generated for change (Settings changed) made by wohler
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=313357&aid=745657&group_id=13357

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: mh-e-7.3
Status: Open
Resolution: Accepted
Priority: 5
Private: No
Submitted By: Chris Dean (ctdean)
>Assigned to: Bill Wohler (wohler)
Summary: add mh-reply-hook and mh-send-hook

Initial Comment:
Add two new hooks: mh-reply-hook and mh-send-hook.  I'd
be happy to make any related changes desired.

Someone with more MH-E naming insight may wish to
change mh-send-hook to another name.

This is off of version 7.3.

----------------------------------------------------------------------

Comment By: Chris Dean (ctdean)
(Continue reading)

Mike Kupfer | 28 Dec 01:23
Picon
Favicon

[patch] disable compile-time feature optimization on XEmacs

As per discussion on #mh-e, this version uses (featurep 'xemacs) instead
of introducing a control variable.  Generated with "diff -bw".

Supercedes <3550.1325011872 <at> rawbw.com>.

2011-12-27  Mike Kupfer  <mike.kupfer <at> xemacs.org>

	* lisp/mh-acros.el (mh-funcall-if-exists): Force check to happen
	at runtime if (featurep 'xemacs).

	* lisp/mh-xemacs.el: Check for define-behavior at runtime, not
	compile time.

diff --git a/xemacs-packages/mh-e/lisp/mh-acros.el b/xemacs-packages/mh-e/lisp/mh-acros.el
--- a/xemacs-packages/mh-e/lisp/mh-acros.el
+++ b/xemacs-packages/mh-e/lisp/mh-acros.el
@@ -77,7 +77,8 @@
 ;;;###mh-autoload
 (defmacro mh-funcall-if-exists (function &rest args)
   "Call FUNCTION with ARGS as parameters if it exists."
-  (when (fboundp function)
+  (when (or (fboundp function)
+            (featurep 'xemacs))
     `(when (fboundp ',function)
        (funcall ',function ,@args))))

diff --git a/xemacs-packages/mh-e/lisp/mh-xemacs.el b/xemacs-packages/mh-e/lisp/mh-xemacs.el
--- a/xemacs-packages/mh-e/lisp/mh-xemacs.el
+++ b/xemacs-packages/mh-e/lisp/mh-xemacs.el
@@ -31,7 +31,9 @@
(Continue reading)

SourceForge.net | 28 Dec 01:00
Picon

[ mh-e-Bugs-2321115 ] Loses changes when message column goes from 1 to 2 digits

Bugs item #2321115, was opened at 2008-11-21 06:41
Message generated for change (Settings changed) made by jchonig
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=113357&aid=2321115&group_id=13357

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: UI
Group: mh-e-8.1
Status: Open
Resolution: Accepted
Priority: 6
Private: No
Submitted By: Chris Lott (chrislott)
>Assigned to: Jeffrey Honig (jchonig)
Summary: Loses changes when message column goes from 1 to 2 digits

Initial Comment:
Summary: MH-E loses pending delete/refile operations  when the message-number column gets wider on INC.

To reproduce: 

1. View a mail box in MH-E with 9 or fewer messages.  In this state, the message-number column only needs space
for 1 digit.   

2. Mark a message for deletion or refile.  

3. Include new messages to push the total count in the mbox to 10 or beyond.  

(Continue reading)

SourceForge.net | 27 Dec 22:30
Picon

[ mh-e-Bugs-491810 ] mh-e user agent broken

Bugs item #491810, was opened at 2001-12-11 15:28
Message generated for change (Settings changed) made by wohler
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=113357&aid=491810&group_id=13357

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: General
Group: mh-e-5.0.2
Status: Open
Resolution: Accepted
Priority: 5
Private: No
Submitted By: Bill Wohler (wohler)
>Assigned to: Nobody/Anonymous (nobody)
Summary: mh-e user agent broken

Initial Comment:
mh-e-user-agent is defined in simple.el to use
mh-smail-batch. However, this function does not use all
of the arguments provided to it. Two important ones
include the cc header field and a function to insert
the body of the message you are replying to.

mh-user-agent-compose, defined next to mh-smail-batch
in mh-comp.el is a bit better as it preserves the cc,
but still ignores the yank function.

Therefore, the following things need to be done:
(Continue reading)

SourceForge.net | 27 Dec 22:27
Picon

[ mh-e-Bugs-1708292 ] mh-edit-again should add Fcc

Bugs item #1708292, was opened at 2007-04-26 11:13
Message generated for change (Settings changed) made by wohler
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=113357&aid=1708292&group_id=13357

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: General
Group: mh-e-8.0.3
Status: Open
Resolution: None
Priority: 6
Private: No
Submitted By: Bill Wohler (wohler)
>Assigned to: Nobody/Anonymous (nobody)
Summary: mh-edit-again should add Fcc

Initial Comment:
I consistently lose my outgoing draft when I use the mh-edit-again function. That's because
mh-edit-again uses the existing header rather than incorporating the components file. And the existing
header does not include the Fcc header field that includes +outbox.

One solution would be to add any fields from components to the edited draft that are missing.

It is also possible that this can be solved by adding the Fcc header field to all of your identities. In that
case, the solution is to update the documentation to strongly suggest that folks add Fcc to all of their identities.

I'll dig deeper into this to see what would be the best approach. In the meantime, please make suggestions.
Bumping priority since the effect is lost mail.
(Continue reading)

SourceForge.net | 27 Dec 22:26
Picon

[ mh-e-Bugs-1903293 ] *MH-E Log* buffer can point to removed directory

Bugs item #1903293, was opened at 2008-02-27 10:15
Message generated for change (Settings changed) made by jchonig
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=113357&aid=1903293&group_id=13357

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: General
Group: mh-e-8.0.3
Status: Open
Resolution: None
Priority: 7
Private: No
Submitted By: Kevin Layer (layer)
>Assigned to: Jeffrey Honig (jchonig)
Summary: *MH-E Log* buffer can point to removed directory

Initial Comment:
If this happens, it will cause errors until the directory is either re-created or the *MH-E-log* buffer is
deleted or the directory in it changed.

The problem is, it's not clear that the *MH-E-log* buffer is the problem.  This bug plagued me for years
before I finally figured out what the problem was.

To: Kevin Layer <layer <at> franz.com>
Subject: Re: problem with disappearing directory
Date: Sun, 13 May 2007 22:45:22 -0700
Message-ID: <10271.1179121522 <at> olgas.newt.com>
From: Bill Wohler <wohler <at> newt.com>
(Continue reading)

SourceForge.net | 27 Dec 20:50
Picon

[ mh-e-Feature Requests-3466122 ] message/external-body is auto loaded

Feature Requests item #3466122, was opened at 2011-12-27 11:50
Message generated for change (Tracker Item Submitted) made by mcr
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=363357&aid=3466122&group_id=13357

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: UI
Group: mh-e-8.1
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Michael Richardson (mcr)
Assigned to: Nobody/Anonymous (nobody)
Summary: message/external-body is auto loaded

Initial Comment:
Since a few months ago, my MH-E now always tries to load external-bodies. (Who uses them? The IETF announce
list for new internet
drafts...

I will attach the next announcement which auto-loads.

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=363357&aid=3466122&group_id=13357

(Continue reading)

jeffrey.honig.home | 27 Dec 20:06
Face

Diffs for review for 2830504

https://sourceforge.net/tracker/?func=detail&aid=2830504&group_id=13357&atid=113357

The issue is that set-buffer should no longer be used to bounce into another
buffer and make changes, it should only be used when changing the buffer
displayed to the user.

In this case mh-yang-cur-msg would fail.

Attached are the diffs that remove all set-buffer occurances from
mh-yang-cur-msg in both -u and -ubw format.

I save the show buffer and then use with-current-buffer to bounce around.

Thanks!

Jeff

--

-- 
Jeffrey C. Honig <jch <at> honig.net>
http://www.honig.net/jch
GnuPG ID:14E29E13 <http://www.honig.net/jch/key.shtml>

Attachment (diff): text/x-lisp, 7223 bytes
Attachment (diff-bw): text/x-lisp, 2060 bytes
------------------------------------------------------------------------------
Write once. Port to many.
Get the SDK and tools to simplify cross-platform app development. Create 
new or port existing apps to sell to consumers worldwide. Explore the 
(Continue reading)


Gmane