Re: Directly to a folder

2001-06-18 Thread Georg Herberg

Am 2001-06-17 schrieb Udo Müller: 
[...]
> write into your .profile or .bashrc:
> 
> alias mutt="mutt -f MAILFOLDER"
> 
IMHO that's _not_ a good idea. This kind of hardcoding a behavior resticts you
to it. Better use the "mutt -f MAILFOLDER"-command directly from the shell-
prompt.

Georg

-- 
* Hiermit widerspreche ich einer gewerblichen Nutzung meiner Daten *
* gemäß § 1 UWG und §823 BGB. Zuwiderhandlungen werden verfolgt.   *
--
/   //  Georg Herberg
   /___/ ___   ___  /__  ___  ___  ___  Marinesiedlung 10 b, D 29348 Eschede 
  /   / /__/  /  / /  / /__/ /  / /  /  Ph: +49 5142 41 63 93; Fax: 41 63 95 
 /   / /__   //__/ /__  //__/   Cellular/GSM:  +49 1 70 / 2 32 81 19
 __/ 
--
* CONFIDENTIALITY NOTICE ***
This e-mail communication may contain information that is confidential and
privileged. The information is intended to be for the use of the addressee only.
If you are not the addressee please note that any disclosure, copy, distribution
or use of the contents of this message is prohibited.


 PGP signature


Re: Netscape and mutt

2001-06-18 Thread dave hoye

The problem was that Netscape would not follow the link set up by ln -s (I tried your 
suggestion).  When files were manipulated from w/in Netscape, a new file directory was 
created with the changes in it.  The original linked directory (the source directory 
for ln -s) was not updated.  That is why I did not see any changes from within mutt.

I got around this problem by forcing Netscape to use my Mail directory, rather than 
its standard nsmail directory.  Now Netscape is not forced to follow the link to make 
its updates- it can update the mail file directly.

Does anyone foresee any problems with this solution?  Is this a bug that should be 
reported to Netscape?

thanx for the tips- dave

On Thu, Jun 14, 2001 at 12:33:28PM -0700, Jason Helfman wrote:
> ln -s  nsmail
> 
> This way netscape and mutt will share nicely.
> 
> On Thu, Jun 14, 2001 at 02:57:07PM -0400, Louis LeBlanc muttered:
> | On 06/14/01 11:07 AM, dave hoye sat at the `puter and typed:
> | > All,
> | > 
> | > I have a folder that I direct html mail to and view with Netscape (rather than 
>mutt).  I am aware that can view this type of mail from within mutt, but I prefer it 
>this way.
> | > 
> | > My problem is this:  When I delete messages within that folder from within 
>Netscape, the messages are still able to be picked up by mutt.  If I delete the same 
>message from within mutt, the message is actually deleted.  Any explanation for this 
>behavior?  Is there a way I can configure Netscape or mutt to get around this 
>problem?  
> | > 
> | > thanx in advance for your help,
> | > 
> | > dave
> | > 
> | That would be the Netscape settings.  Make sure the server settings
> | specify that the messages should be deleted immediately when you
> | delete, and that they are also removed from the server.  If it is a
> | pop server, Netscape may not do this correctly, so be aware of that.
> | 
> | HTH
> | Lou
> | 
> | -- 
> | Louis LeBlanc
> | Fully Funded Hobbyist, KeySlapper Extrordinaire :)
> | [EMAIL PROTECTED]
> | http://acadia.ne.mediaone.net
> 
> -- 
> /Jason G Helfman
> 
> "At any given moment, you may find the ticket to the circus that has always
> been in your possession."
> 
> Fingerprint: 6A32 3774 E390 33B5 8C96  2AA1 2BF4 BD71 35A1 C149
> GnuPG http://www.gnupg.org  Get Private!  1024D/35A1C149



Mutt hangs on Subject

2001-06-18 Thread Brian Hechinger

i've been using Mutt on my mail account machine for a while now.  it's a great
replacement for elm.  plus, it supports IMAP which i wanted at home.  so

i just built and installed Mutt 1.2.5i on my Solaris 8/SPARC machine at home.
got my IMAP server setup and working correctly, mail works great, except for
one minor thing.

when i send mail, i type m, fill in the email address, hit enter, and type in
the subject.  i then hit enter and it hangs with the Subject:  showing.  if i Ctrl-C it'll go on to vi and i can type my email, and
then i can send as normal.

it all works, it just hangs when i hit enter after typing in the subject. i
just don't want to have to hit Ctrl-C every time i want to send a message.

any ideas?

thanks,

-brian



compiling Mutt with ncurses

2001-06-18 Thread Eugene Lee

When I built ncurses-5.2, I set the installation prefix to /usr/local.
The libraries are in /usr/local/lib, which I expect.  But the header
files are grouped into a /usr/local/include/ncurses directory.  The
configure script for mutt-1.2.5i can't figure this out --- or maybe I
can't figure out how to set --with-curses=DIR.  Is there a nice way to
this work?  Or is it time to hack the configure script?  Any suggestions
are welcome!


-- 
Eugene Lee
[EMAIL PROTECTED]



Re: compiling Mutt with ncurses

2001-06-18 Thread Lars Hecking

Eugene Lee writes:
> When I built ncurses-5.2, I set the installation prefix to /usr/local.
> The libraries are in /usr/local/lib, which I expect.  But the header
> files are grouped into a /usr/local/include/ncurses directory.  The
> configure script for mutt-1.2.5i can't figure this out --- or maybe I
> can't figure out how to set --with-curses=DIR.  Is there a nice way to
> this work?  Or is it time to hack the configure script?  Any suggestions
> are welcome!

 Unless TED has a better suggestion :-)

--- configure.in.orig   Wed Jun 13 06:30:17 2001
+++ configure.inMon Jun 18 16:53:06 2001
@@ -173,7 +173,11 @@
 fi
 if test x$mutt_cv_curses != x/usr; then
 LDFLAGS="-L${mutt_cv_curses}/lib $LDFLAGS"
-CPPFLAGS="$CPPFLAGS -I${mutt_cv_curses}/include"
+if test -d $mutt_cv_curses/include/ncurses; then
+CPPFLAGS="$CPPFLAGS 
+-I${mutt_cv_curses}/include/ncurses"
+else
+CPPFLAGS="$CPPFLAGS -I${mutt_cv_curses}/include"
+fi
 fi])
 
for cf_ncurses in ncurses ncursesw unknown




how insert mail-messages into body of msg I'm cmposing in mutt w/vim

2001-06-18 Thread Russell Hoover

What's the best way to insert one or two of the mail-messages that I have
sitting in my inbox -- the current folder --  (and, say, one from another
mail-folder) into an outgoing message that I'm composing (from within vim)
in mutt?  Is there more than one way?

This is very simple to do with 'readmsg' in elm.  Can it be done as simply
and easily with mutt/vim?

(I've been using mutt for awhile but haven't done this in so long I've
forgotten how.  TIA.)
-- 
 // [EMAIL PROTECTED] //



mutt hanging on solaris (update)

2001-06-18 Thread Brian Hechinger

i spoke incorrectly, it also hangs when i reply, after i say yes i want to
include the message in reply, it hangs at:

Including quoted message...

or:

Fetching message...

so it has something to do with the transition from mutt to vi.  any ideas?

-brian



Strange messages

2001-06-18 Thread Luke Ross

Hi,

I don't know if this is related to mutt or the list software, but I keep
getting messaages from a particular list of the following format:

1   [multipa/alternativ]
2 +->   [text/plain]
3 +->   [text/plain]
4 +->   [multipa/related]
5   +-> [text/html]

2 is the textual body of the list post, and 5 it's HTML form.  3 is the
listserv's signature.  1 displays 3, and 4 displays 5.

In pine and most other mailers, 3 is displayed followed by 2 (so it makes
sense!), but mutt displays part 1 (sig only!).

Who's right here?  I think the messages probably start life as
multipart/alternative of 2 and 5, and then 3 is added and the message
mauled by the listserver.

Regards,

Luke
-- 
Luke Ross - http://lcr.sys3175.co.uk



Re: compiling Mutt with ncurses

2001-06-18 Thread Thomas Dickey

On Mon, Jun 18, 2001 at 08:47:29AM -0700, Eugene Lee wrote:
> When I built ncurses-5.2, I set the installation prefix to /usr/local.
> The libraries are in /usr/local/lib, which I expect.  But the header
> files are grouped into a /usr/local/include/ncurses directory.  The
> configure script for mutt-1.2.5i can't figure this out --- or maybe I
> can't figure out how to set --with-curses=DIR.  Is there a nice way to
> this work?  Or is it time to hack the configure script?  Any suggestions
> are welcome!

The script should recognize this (I haven't looked recently, but thought
that mutt's configure script used chunks of script that I'd written to
encompass this).

-- 
Thomas E. Dickey <[EMAIL PROTECTED]>
http://dickey.his.com
ftp://dickey.his.com



Re: Accented characters

2001-06-18 Thread Victor

TO WHOM IT MAY CONCERN:

Summing up all the suggestion received to solve my Italian accented
vowels problem, in the end I resorted to putting in /etc/profile the
following two lines:

export LANG=en_US
export LC_CTYPE=it_IT

This enable me to have accented vowels while still working with Debian
in English. In fact, owing to the still poor Debian's translation into
Italian and my partecipacion in many Debian's and other NGs, it is by
far better to stick to English as far as diagnostic is concerned.

Thanks to all

Vittorio

Victor [mutt-users] <07/06/01 17:42 +>:
> No one has still answered to my devastating question:
> 
> How can I make accented characters appear in my Italian e-mails (they're invariably 
>substituted with '?')  ?
> 
> Ciao é à (here an example)
> 
> Vittorio
> 
>  



Re: compiling Mutt with ncurses

2001-06-18 Thread Lars Hecking


> The script should recognize this (I haven't looked recently, but thought
> that mutt's configure script used chunks of script that I'd written to
> encompass this).

 CF_CURSES_LIBS is not used in 1.2.5, and the parts we "borrowed" don't
 cover header file location.

 Hhm, just by looking at it now I cannot figure out whether CF_NCURSES_CPPFLAGS
 or CF_ADD_INCDIR does the right thing in the situation described ...




Re: Mutt hangs on Subject

2001-06-18 Thread Jim Toth

On Mon, Jun 18, 2001 at 11:50:53AM -0400, Brian Hechinger
([EMAIL PROTECTED]) said:
[snip]
> when i send mail, i type m, fill in the email address, hit enter, and type in
> the subject.  i then hit enter and it hangs with the Subject:  typed in> showing.  if i Ctrl-C it'll go on to vi and i can type my email, and
> then i can send as normal.
> 
> it all works, it just hangs when i hit enter after typing in the subject. i
> just don't want to have to hit Ctrl-C every time i want to send a message.

What is your editor set to in mutt?

Do you perhaps have DISPLAY set in your environment?

-- 
Jim Toth
[EMAIL PROTECTED]



Re: Mutt hangs on Subject

2001-06-18 Thread Brian Hechinger

On Mon, Jun 18, 2001 at 01:31:12PM -0400, Jim Toth wrote:
> 
> What is your editor set to in mutt?

vim.

> Do you perhaps have DISPLAY set in your environment?

it's set to :0.1 in this case, but yes, it is set.  would that make a
difference?

-brian



Re: Mutt hangs on Subject

2001-06-18 Thread Jim Toth

(oops, meant to send this to the list--sorry about the double copy)

On Mon, Jun 18, 2001 at 01:52:40PM -0400, Brian Hechinger ([EMAIL PROTECTED]) said:
> On Mon, Jun 18, 2001 at 01:31:12PM -0400, Jim Toth wrote:
> > 
> > What is your editor set to in mutt?
> 
> vim.
> 
> > Do you perhaps have DISPLAY set in your environment?
> 
> it's set to :0.1 in this case, but yes, it is set.  would that make a
> difference?

I think vim tries to write to the title of the xterm if DISPLAY is
set, or some such...I haven't had this problem in a while and I forget
the details.  But vim is (or was) sometimes slow loading because of
that (although especially when one's DISPLAY is set to a remote
computer, which it isn't in this case).

Just to test to see if that's it, you might want to unset it before
calling mutt and see if that helps.

How long do you wait before hitting ^C?

-- 
Jim Toth
[EMAIL PROTECTED]



gpg key

2001-06-18 Thread Dale Morris

I am going to start using gpg (again) and I can't remember how to
export the key to a keyserver, could someone tell me where I can find
it? currently I'm using the following command and getting nowhere:

gpg --send-keys [EMAIL PROTECTED] www.MASTER.pgp.net.
gpg: www.MASTER.pgp.net.: user not found: public key not found
gpg: can't connect to `www.ch.pgp.net.': Connection refused

thanks




Re: gpg key: SOLVED

2001-06-18 Thread Dale Morris

* Dale Morris <[EMAIL PROTECTED]> [010618 14:17]:
> I am going to start using gpg (again) and I can't remember how to
> export the key to a keyserver, could someone tell me where I can find
> it? currently I'm using the following command and getting nowhere:
> 
> gpg --send-keys [EMAIL PROTECTED] www.MASTER.pgp.net.
> gpg: www.MASTER.pgp.net.: user not found: public key not found
> gpg: can't connect to `www.ch.pgp.net.': Connection refused
> 
> thanks

I had the wrong syntax, I've got it working now..

Here's *what worked*:
gpg --send-keys [EMAIL PROTECTED] keyserver wwwkeys.eu.pgp.net

Now I just need to learn a little more about encryption...


> 



Re: Strange messages

2001-06-18 Thread Luke Ross

Hi,

Inspecting an example message in the mailbox reveals that the structure is
as per the display, except the main body (part 1) is of type:

Content-Type: multipart/mixed; boundary="B1"

How does the interpretation of multipart/mixed differ from
multipart/alternative, and why does mutt show the former as the latter in
this case?

Regards,

Luke

On Mon, Jun 18, 2001 at 09:56:09AM -0700, Michael Elkins wrote:
> Judging from the display you pasted in your message, the top level MIME
> content-type is multipart/alternative, meaning that the MUA is supposed to
> display ONE of the following parts based upon local preference.  Each of
> 2, 3 and 4 are considered to be equivalent, so only one need be displayed
> to the user.
> 
> On Mon, Jun 18, 2001 at 05:27:46PM +0100, Luke Ross wrote:
> > 1   [multipa/alternativ]
> > 2 +->   [text/plain]
> > 3 +->   [text/plain]
> > 4 +->   [multipa/related]
> > 5   +-> [text/html]
-- 
Luke Ross - http://lcr.sys3175.co.uk



filtering a maildir

2001-06-18 Thread Jeff Coppock

   Greetings Muttsters,
   
   I use Mutt/Fetchmail/Maildrop/Postfix and was wondering if
   there's an easy way to run my Maildrop filters against a
   maildir.  I've been putting several distribution lists in the
   same maildir and now it's a bit too large and would like to
   re-filter it into two different maildirs.  There's nearly
   1,000 messages.
   
   Any help is appreciated...jc