<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel about="http://blog.gmane.org/gmane.mail.mh-e.user">
    <title>gmane.mail.mh-e.user</title>
    <link>http://blog.gmane.org/gmane.mail.mh-e.user</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.mail.mh-e.user/1923"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.mail.mh-e.user/1922"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.mail.mh-e.user/1916"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.mail.mh-e.user/1914"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.mail.mh-e.user/1907"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.mail.mh-e.user/1905"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.mail.mh-e.user/1899"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.mail.mh-e.user/1897"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.mail.mh-e.user/1889"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.mail.mh-e.user/1884"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.mail.mh-e.user/1879"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.mail.mh-e.user/1875"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.mail.mh-e.user/1870"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.mail.mh-e.user/1868"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.mail.mh-e.user/1867"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.mail.mh-e.user/1858"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.mail.mh-e.user/1857"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.mail.mh-e.user/1856"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.mail.mh-e.user/1851"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.mail.mh-e.user/1847"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.mail.mh-e.user/1923">
    <title>mh-e as part of your GTD system with sequences</title>
    <link>http://comments.gmane.org/gmane.mail.mh-e.user/1923</link>
    <description>Hello everybody,

Pete Phillips has sent an email about using MH-E as a support for a GTD
system (see http://ccgi.philfam.co.uk/wordpress/2008/04/20/24). It is a
very interesting system based on cron tasks to refile the mail you have
classified into folders to be treated next week, next month etc. into
the inbox folder right on time.

I personally use procmail to sort my mail into MH folders and use the
unseen sequence to see new mails, so I cannot use Pete's system. If you
are interested, I have attached a shell-script to move all mails from a
specified sequence (today, nextweek etc.) into the unseen sequence. As I
am not a shell-script specialist, there are maybe some improvements to
do.

You can then use the same cron-based system as Pete's.

Best,

Christophe

</description>
    <dc:creator>Christophe Garion</dc:creator>
    <dc:date>2008-05-12T20:44:02</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.mail.mh-e.user/1922">
    <title>"r", "R"</title>
    <link>http://comments.gmane.org/gmane.mail.mh-e.user/1922</link>
    <description>hi.  Berkeley Mail (and probably the "mail" that proceeded it), as well
as Brent Welch's exmh, use "r" to reply to sender and "R" to reply to
all senders, receivers, etc.  since my fingers have been programmed for
so many years, i wanted "R" to do reply all.

below is my bumbling attempt, in case it is of use to anyone.

cheers, Greg Minshall
----
;; my reply-all function
(defun ggm-mh-reply-all (message &amp;optional includep)
  "Reply to a MESSAGE to *all* parties"
  (interactive (list
                (mh-get-msg-num t)
                current-prefix-arg))
  (mh-reply message "all" includep))

;; get ggm-mh-reply-all hooked in

(defun ggm-mh-folder-mode-hook ()
  "Hook to set key bindings in mh-e"
  ;; in folder mode, "R" is "reply all"
  (local-set-key "R" 'ggm-mh-reply-all)
  (remove-hook 'mh-folder-mode-hook 'ggm-mh-folder-mode-hook))

(add-hook 'mh-folder-mode-hook 'ggm-mh-folder-mode-hook)

(defun ggm-mh-show-mode-hook ()
  "Hook to set key bindings in mh-e"
  ;; in show mode, "R" is "reply all"
  (mh-defun-show-buffer ggm-show-mh-reply-all ggm-mh-reply-all t)
  (local-set-key "R" 'ggm-show-mh-reply-all)
  (remove-hook 'mh-show-mode-hook 'ggm-mh-show-mode-hook))

(add-hook 'mh-show-mode-hook 'ggm-mh-show-mode-hook)

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
</description>
    <dc:creator>Greg Minshall</dc:creator>
    <dc:date>2008-05-02T03:52:05</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.mail.mh-e.user/1916">
    <title>q? on manual (hooks)</title>
    <link>http://comments.gmane.org/gmane.mail.mh-e.user/1916</link>
    <description>Bill,

i'm working on learning how to customize.  (a little knowledge...)

in the manual, you give an example of using folder-mode-hook.  you have
something like:
----
     (defvar my-mh-init-done nil
       "Non-`nil' when one-time MH-E settings made.")
     (defun my-mh-folder-mode-hook ()
...
             (setq my-mh-init-done t))))
     (add-hook 'mh-folder-mode-hook 'my-mh-folder-mode-hook)
----
to make sure the hook is only run once.

i'm curious why not use remove-hook inside my-mh-folder-mode-hook to
remove itself as a hook?  i would think that would be more efficient
(you wouldn't even call my-mh-folder-mode-hook after the first time
folder mode runs).  but, i suspect the intricacies of
emacs/emacs-lisp/mh-e may be responsible.

cheers, Greg

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
</description>
    <dc:creator>Greg Minshall</dc:creator>
    <dc:date>2008-04-28T18:51:29</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.mail.mh-e.user/1914">
    <title>sortm arguments</title>
    <link>http://comments.gmane.org/gmane.mail.mh-e.user/1914</link>
    <description>Hi,

How do I change the arguments to sortm (mh-sort-folder) on a temporary basis? In the manual it says:

"The option mh-sortm-args holds extra arguments to pass on to the command sortm^3 when a prefix argument is used with F S."

but how do I give F S a prefix argument? 

Until now I've used the mh_profile to change the sortm arguments but I'm thinking there must be a better way to temporarily sort a folder by -textfield from or -textfield subject.

Thanks for any hints,

/henrik

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
</description>
    <dc:creator>Henrik Frisk</dc:creator>
    <dc:date>2008-04-28T10:36:09</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.mail.mh-e.user/1907">
    <title>copying text of a message into a buffer</title>
    <link>http://comments.gmane.org/gmane.mail.mh-e.user/1907</link>
    <description>I frequently copy the text of emails from mh-e into my list manager
(org-mode) under emacs.

At the moment, I use ^XO to pop into the message buffer, then 'yG' to
yank the whole message (I use viper mode - 'the best of both worlds!'
;-) , then ^X^B to go to my org-mode buffer, and finally 'p' to paste it
in the correct location. All of which, I'm sure, could be sped up.

Is there a command which can grab the body of the current mail message
as presented in the message buffer without leaving the MH-Folder buffer
?

Pete


--
Pete Phillips, Acting Director,     |   http://www.smtl.co.uk/
Surgical Materials Testing Lab,     |   http://www.worldwidewounds.com/
Princess of Wales Hospital, S Wales |   http://www.dressings.org/
Tel/Fax: +44 1656-752820/30         |   pete&lt; at &gt;smtl.co.uk

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
</description>
    <dc:creator>Pete Phillips</dc:creator>
    <dc:date>2008-04-24T17:07:33</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.mail.mh-e.user/1905">
    <title>mh-compose-prompt-flag question.</title>
    <link>http://comments.gmane.org/gmane.mail.mh-e.user/1905</link>
    <description>
Hi,

I'm probably reading this wrong or otherwise misunderstanding but I thought setting mh-compose-prompt-flag to nil would create a new mail for me without going through the minibuffer queries To:, cc: and subject:, but it doesn't work.

" If you prefer to be prompted for the recipient and subject fields before the MH-Letter buffer appears, turn on the
option mh-compose-prompt-flag."

Is there a way to create a new MH-Letter buffer and place the insertion in the To: field automatically?

best,

Henrik


-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
</description>
    <dc:creator>Henrik Frisk</dc:creator>
    <dc:date>2008-04-23T11:47:34</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.mail.mh-e.user/1899">
    <title>mh-identities: what purpose ?</title>
    <link>http://comments.gmane.org/gmane.mail.mh-e.user/1899</link>
    <description>Hi,

I know what they are and what they do _but_ I do not see in what they are useful
compared to MH templates (comp, repl, etc...).

All of what mh-identity provides can be done at MH level and thus be used either
into the MUA or directly from a shell command.

Why not provide *official* support for templates and rely on them instead of
reinventing the wheel ?

I see there are solutions to compose a message according to a template, but they
look like *hacks* and not reliable solution.

WDYT ?

Regards,

Xavier


-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
</description>
    <dc:creator>Xavier Maillard</dc:creator>
    <dc:date>2008-04-21T10:08:49</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.mail.mh-e.user/1897">
    <title>mh-e as part of your GTD system</title>
    <link>http://comments.gmane.org/gmane.mail.mh-e.user/1897</link>
    <description>I'm a big fan of David Allen's GTD system, and over the years I have
tweaked my use of MH and MH-E to help support this use.

One thing I have done is design a method so that I can easily put emails
into a set of 'pending' mail folders, and then get cron to process these
and dump the emails back into my +inbox at appropriate dates.

I have written this up here:

  http://ccgi.philfam.co.uk/wordpress/2008/04/20/24

Hope you find this useful.
Pete

--
Pete Phillips, Acting Director,     |   http://www.smtl.co.uk/
Surgical Materials Testing Lab,     |   http://www.worldwidewounds.com/
Princess of Wales Hospital, S Wales |   http://www.dressings.org/
Tel/Fax: +44 1656-752820/30         |   pete&lt; at &gt;smtl.co.uk

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
</description>
    <dc:creator>Pete Phillips</dc:creator>
    <dc:date>2008-04-21T06:46:04</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.mail.mh-e.user/1889">
    <title>ifile and MH-E</title>
    <link>http://comments.gmane.org/gmane.mail.mh-e.user/1889</link>
    <description>Hi,

Does anybody know if and how MH-E can deal with ifile (the anti-spam software) ?

I am (re)evaluating several anti-spam software and I felt upon this one which I 
like.

Regards,

Xavier


-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
</description>
    <dc:creator>Xavier Maillard</dc:creator>
    <dc:date>2008-04-18T12:58:51</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.mail.mh-e.user/1884">
    <title>POLL: how do you sort your inbox ?</title>
    <link>http://comments.gmane.org/gmane.mail.mh-e.user/1884</link>
    <description>Hi,

This is a basic question, but I am used to rmail and until now, I tried as much
as possible to keep every mail into my inbox (unique file).

With mh, things change and I am facing a dilemna: how to sort my mails.

How do you do ? Do you make separation between lists -i.e. you create a MH
folder for each mailing list - and other mails ? What is supposed to work best ?
If I separate my mails, how will I be informed of any new mail(s) into my MH
folders ?

In fact, I am subscribed to several mailing lists (a dozen I think) and I fear I
will miss mails as time passes.

So any help and tips would be greatly appreciated here.

Thank you very much.

Xavier


-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
</description>
    <dc:creator>Xavier Maillard</dc:creator>
    <dc:date>2008-04-17T18:12:21</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.mail.mh-e.user/1879">
    <title>Delete multiple copies of the same message ?</title>
    <link>http://comments.gmane.org/gmane.mail.mh-e.user/1879</link>
    <description>Hi,

How would you do to delete messages in multiple exemplars ?

I have inc(corporated) my old rmail files and I did not pay
attention to the fact that I ran inc -file of the same files
several times :)

Note: I looking for a "generic" solution either from the shell
using standard MH commands or directly with MH-E.

Regards

Xavier

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
</description>
    <dc:creator>Xavier Maillard</dc:creator>
    <dc:date>2008-04-16T21:39:57</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.mail.mh-e.user/1875">
    <title>Hello</title>
    <link>http://comments.gmane.org/gmane.mail.mh-e.user/1875</link>
    <description>Hi,

Just a quick message to say hello. I am back at using MH(-E) on
my laptop.

I am currently reading (again) all I can concerning MH(-E) to be
able to use effectively as quick as possible.

I have tried many other emacs MUA since my last attempt with MH
systems. The one I prefered was certainly RMAIL (shipped with
emacs). I love(d) it but it lacks MIME which is becoming annoying
as time passes.

So here I am.

I will take profit of this message by asking few (basic) questions :)

1. How does one choose to customise MH or MH-E -i.e. tweak the
"unix" system part instead of emacs part (and the contrary) ?

2. How can I tell emacs that my mh_profile is not ~/.mh_profile
but something along $MH env variable ?

3. How can I answer a message *directly* from a digest message
-i.e. without having to burst it first ?

4. (Last for this round). Can MH gurus share their tips and setup
so I can learn quickly ? What do you tweak first when
(re)installing your MH system ? Why ? In fact, I would be
interested in reading how _you_ use MH daily.

I have tons of other questions but I will try to figure out by
myself first.

Sorry to bother.

Regards

Xavier

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
</description>
    <dc:creator>Xavier Maillard</dc:creator>
    <dc:date>2008-04-15T23:01:51</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.mail.mh-e.user/1870">
    <title>Scoring bugs</title>
    <link>http://comments.gmane.org/gmane.mail.mh-e.user/1870</link>
    <description>In my last message, I noted that some bugs or feature requests may
already be present. If this is the case, I encourage folks to add a "Me
too" comment, plus additional helpful comments if applicable. When you
do this, I'll bump the priority of the item. It's a poor man's voting
system, but it works.

That way, when somebody has some time to hack on MH-E, we'll have a
better idea where to focus our efforts.

I know it's been a while since we've seen a release. On a personal note,
I've been trying to get 8.1 out the door for a long time now, but the
Kepler project (kepler.nasa.gov) has kept me pretty busy. I gave up
sailboat racing and haven't even been scuba diving! But launch is less
than a year away, and I expect things to let up some day!

Patches and contributions are always welcome!

</description>
    <dc:creator>Bill Wohler</dc:creator>
    <dc:date>2008-04-09T04:41:47</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.mail.mh-e.user/1868">
    <title>minor questions</title>
    <link>http://comments.gmane.org/gmane.mail.mh-e.user/1868</link>
    <description>1.  how can i make it such that when i "F v", i see *all* of, e.g.,
+inbox, not just the unread +inbox/select?

2.  how can i make speedbar just show me folders with unread messages in
it?

3.  how can i tell speedbar some folders to *never* display?

4.  can saving of attachments be made to obey mh-store-default-directory?

5.  how can i make stupid messages where each paragraph is a huge long
line be formatted "nicely" (e.g., "fold -sw72")?

6.  how can i print out a part of a message (say, the text part that i
am reading, or text/html)?

7.  when reading, how can i make it always go "down" when i delete a
message (rather than remembering the last 'n' or 'p')?

8.  how do i make 'R' do "reply all"?

9.  with received mail, how can i delete a part (attachment)?  ('M' is
one way, but "K d" would be nice.)

10.  how can i arrange to have saves (attachments, etc.) always happen
in ~/Downloads?

11.  how can i mark a folder to "never delete"?

12.  how can i do a smart save, a function that has as inputs (current
folder, date of message)?  i guess i could use procmail to do this?  if
so, how do i bind a key to "pipe through procmail with some given set of
arguments"?

13.  it would be nice to have a prefix so that when the pointer (?) is
in the folder view, and a message is displayed in the second buffer, the
next movement (or search) command would apply to the message buffer
rather than the folder buffer.

14.  when the pointer is in the message buffer, and i say "n", say, the
"highlight" stays on the original header line in the folder buffer, even
though the current message moves forward one header line.

15.  would be nice if Fv input "obeyed" C-p by showing unique items in
history.

16.  if i type C-c C-c to send a message when the last line i was typing
*should* be wrapped, it *isn't* wrapped.  (but, probably this takes
registering something with emacs, and that facility probably doesn't
exist, to give wrapper control every time focus is leaving the line, or
something like that?)

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Register now and save $200. Hurry, offer ends at 11:59 p.m., 
Monday, April 7! Use priority code J8TLD2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
</description>
    <dc:creator>Greg Minshall</dc:creator>
    <dc:date>2008-04-08T17:56:38</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.mail.mh-e.user/1867">
    <title>Getting header fields into mh-invisible-header-fields-default</title>
    <link>http://comments.gmane.org/gmane.mail.mh-e.user/1867</link>
    <description>I just stumbled across the documentation for
`mh-invisible-header-fields' which referenced an archived tracker item
at SourceForge. I've created a new item and updated this text:

    [ 1916032 ] Add header field to mh-invisible-header-fields-default

    https://sourceforge.net/tracker/index.php?func=detail&amp;aid=1916032&amp;group_id=13357&amp;atid=113357

I see that my own copy of `mh-invisible-header-fields' has gotten pretty
thick. Let's take this opportunity to get all of our
`mh-invisible-header-fields' into `mh-invisible-header-fields-default'.
Please submit your header fields at the URL above. If you can, citing
the source of the header field (that is, the name of the program that
generated it) is very helpful. Thanks!

</description>
    <dc:creator>Bill Wohler</dc:creator>
    <dc:date>2008-03-17T00:56:03</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.mail.mh-e.user/1858">
    <title>multiple smtp servers</title>
    <link>http://comments.gmane.org/gmane.mail.mh-e.user/1858</link>
    <description>A colleague of mine has moved from thunderbird to mh-e (after a little
bit of advocacy)  :-)

However, he would like to be able to send mail through 4-5 different
smtp server depending on who he is working for at that time.

Is this possible ?   (he is using nmh at present but i'm sure would use
mailutils if that helped)

Regards,
Pete


--
Pete Phillips, Acting Director,     |   http://www.smtl.co.uk/
Surgical Materials Testing Lab,     |   http://www.worldwidewounds.com/
Princess of Wales Hospital, S Wales |   http://www.dressings.org/
Tel/Fax: +44 1656-752820/30         |   pete&lt; at &gt;smtl.co.uk

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
</description>
    <dc:creator>Pete Phillips</dc:creator>
    <dc:date>2008-03-13T16:11:43</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.mail.mh-e.user/1857">
    <title>multiple smtp servers</title>
    <link>http://comments.gmane.org/gmane.mail.mh-e.user/1857</link>
    <description>A colleague of mine has moved from thunderbird to mh-e (after a little
bit of advocacy)  :-)

However, he would like to be able to send mail through 4-5 different
smtp server depending on who he is working for at that time.

Is this possible ?   (he is using nmh at present but i'm sure would use
mailutils if that helped)

Regards,
Pete Phillips

BTW: anybody got a cure to allow postfix to send mail to the sourceforge 
mailing lists ? mine keep getting rejected due to the sender verify it 
uses. Hence this gmail address

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
</description>
    <dc:creator>Pete Phillips</dc:creator>
    <dc:date>2008-03-13T19:31:14</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.mail.mh-e.user/1856">
    <title>multimedia attachments not working since upgrade</title>
    <link>http://comments.gmane.org/gmane.mail.mh-e.user/1856</link>
    <description>I upgraded emacs to :

GNU Emacs 23.0.60.1 (i486-pc-linux-gnu, GTK+ Version 2.12.0) of 2008-03-07 on iridium, modified by Debian

on my ubuntu 7.10 over the weekend.

Today, trying to send an email with an attachment using:

      ^C &lt;return&gt; i 

(mh-compose-insertion) gives me the following error 

       mml-minibuffer-read-file: Wrong number of arguments: (lambda nil #("Advice doc string" 0 17 (ad-advice-info read-file-name)) (let (ad-return-value) (let ((viper-minibuffer-exit-hook (append viper-minibuffer-exit-hook (quote (viper-minibuffer-trim-tail viper-file-add-suffix))))) (setq ad-return-value (ad-Orig-read-file-name))) ad-return-value)), 4
byte-code: Beginning of buffer [5 times]

Any ideas/advice appreciated. 

Pete

--
Pete Phillips, Acting Director,     |   http://www.smtl.co.uk/
Surgical Materials Testing Lab,     |   http://www.worldwidewounds.com/
Princess of Wales Hospital, S Wales |   http://www.dressings.org/
Tel/Fax: +44 1656-752820/30         |   pete&lt; at &gt;smtl.co.uk

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
</description>
    <dc:creator>Pete Phillips</dc:creator>
    <dc:date>2008-03-10T11:08:59</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.mail.mh-e.user/1851">
    <title>asynchronous message delivery</title>
    <link>http://comments.gmane.org/gmane.mail.mh-e.user/1851</link>
    <description>In the last couple months I've had a couple occasions where I hit C-c
C-c to send a message, only to find it several days later still sitting
in my drafts folder.  This is with MH-E 8.0.3 on XEmacs 21.4.19.

I think what happened each time was I didn't wait long enough for the
message to be accepted by my ISP's SMTP server before putting the
computer to sleep.

I could scan the drafts folder before turning the box off, but I might
not always remember.

I could use C-u C-c C-c to send the email, but that locks up XEmacs
until the message is sent.

Is there some way to get asynchronous delivery, but also get a visual
indication that outgoing mail is being processed?

Also, while investigating this, I noticed two things that looked odd.

First, when I use C-u C-c C-c to send the email, I get asked if I want
to delete the draft buffer.  Why does it do that?  If I wanted to save a
copy of the buffer, I'd have done it before sending the message.

Second (and this is more of a developer question), mh-send-letter calls
mh-exec-cmd-output with mh-send-args, but it calls mh-exec-cmd-daemon
with (split-string mh-send-args).  I would expect the argument handling
to be the same for both (either both take a list or both take a
string).  Is there a reason for the difference?

cheers,
mike

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
</description>
    <dc:creator>Mike Kupfer</dc:creator>
    <dc:date>2008-02-21T05:39:52</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.mail.mh-e.user/1847">
    <title>replying to emails with base64 encoding</title>
    <link>http://comments.gmane.org/gmane.mail.mh-e.user/1847</link>
    <description>Hi,

When a reply is composed for a mail that is encoded in base64, the
text in the reply is indented with "&gt;", and the text is all in base64
which is not readable (to humans).  What I do is that I delete all the
"&gt;" characters, and then use 'base64-decode-region' to get the text
and then reply.    Is there any sane way of replying to mails that are
encoded in base64?

On related topic, is there an easy way to reply to mails with
multipart that have (non plain text) attachments -- maybe the reply
can just pick the text part instead of other parts such as html also
while composing a reply?

Thanks
Bhupesh

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
</description>
    <dc:creator>Bhupesh Kothari</dc:creator>
    <dc:date>2008-02-15T00:08:57</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.mail.mh-e.user/1843">
    <title>forwarding a message with attachments... man, that's ugly</title>
    <link>http://comments.gmane.org/gmane.mail.mh-e.user/1843</link>
    <description>Below is an example message body, with sanitized content.

Is there any way to get messages like this to forward correctly?
(That is, when viewed after forwarding they look like the original.)

------- Forwarded Message

Date:    Thu, 31 Jan 2008 11:56:11 -0500
From:    Gary ...
To:      Kevin Layer &lt;layer&lt; at &gt;franz.com&gt;
Subject: blah blah


- --Apple-Mail-31-153072541
Content-Type: text/plain;
charset=US-ASCII;
format=flowed;
delsp=yes
Content-Transfer-Encoding: 7bit

lots of blah blah blah blah

- --Apple-Mail-31-153072541
Content-Disposition: inline;
filename=MACLScreenSnapz001.png
Content-Type: image/png;
x-mac-creator=70727677;
x-unix-mode=0644;
x-mac-type=504E4766;
name="MACLScreenSnapz001.png"
Content-Transfer-Encoding: base64

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
Nh8AAAAASUVORK5CYII=

- --Apple-Mail-31-153072541
Content-Type: text/plain;
charset=US-ASCII;
format=flowed;
delsp=yes
Content-Transfer-Encoding: 7bit




more blah bal bhal blah

Gary

- --Apple-Mail-31-153072541--

------- End of Forwarded Message


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
</description>
    <dc:creator>Kevin Layer</dc:creator>
    <dc:date>2008-01-31T22:43:53</dc:date>
  </item>
  <textinput about="http://search.gmane.org/?group=$group=gmane.mail.mh-e.user">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.mail.mh-e.user</link>
  </textinput>
</rdf:RDF>
