Re: How can I post ja.po update patch?

2023-05-01 Thread ribbon
On Mon, May 01, 2023 at 08:39:35AM -0700, Kevin J. McCarthy wrote: > On Mon, May 01, 2023 at 10:25:45PM +0900, ribbon wrote: > >I am using mutt in Japan. > >I found fuzzy in the ja. po file of mutt 2.2.10, so I corrected it. > >How can I post a patch? > > Please post the patch to the mutt-po maili

Re: How can I post ja.po update patch?

2023-05-01 Thread Francesco Ariis
Hello ribbon, Il 01 maggio 2023 alle 22:25 ribbon ha scritto: > I am using mutt in Japan. > I found fuzzy in the ja. po file of mutt 2.2.10, so I corrected it. > How can I post a patch? Most likely `git format-patch -1` and attach it here or if you prefer GitLab workflow, open a Merge Request in

Re: How can I post ja.po update patch?

2023-05-01 Thread Kevin J. McCarthy
On Mon, May 01, 2023 at 10:25:45PM +0900, ribbon wrote: I am using mutt in Japan. I found fuzzy in the ja. po file of mutt 2.2.10, so I corrected it. How can I post a patch? Please post the patch to the mutt-po mailing list. See the subscribe instructions for "Mutt Translators" at

How can I post ja.po update patch?

2023-05-01 Thread ribbon
Hello. I am using mutt in Japan. I found fuzzy in the ja. po file of mutt 2.2.10, so I corrected it. How can I post a patch? ribbon

mail server/login (update to ubuntu 22.04)

2023-01-04 Thread Rolf Müller
I wanted to let you know of a little mutt problem I had; perhaps this information is helpful. I upgraded my computer from ubuntu 20.04 to 22.04 (which of course meant a new version of mutt as well). After the upgrade, I could no longer send e-mail from my work mail. Reading the mail was okay. Also

Re: collapse threads automatically after imap mailbox update

2015-09-12 Thread Steve Schmerler
On Sep 12 09:16 -0500, Jeff Melton wrote: > Your mail made it to the list, yes. OK thanks for the info. best, Steve

Re: collapse threads automatically after imap mailbox update

2015-09-12 Thread Jeff Melton
imap servers to which I'm connecting has no sieve support. The problem is now that when imapfilter alters the mailbox that I am currently viewing (move mail, ...), then mutt will uncollapse all threads. Is there a way to collapse them automatically after a mailbox update? Thanks for any hints!

Re: collapse threads automatically after imap mailbox update

2015-09-12 Thread Steve Schmerler
port. > > The problem is now that when imapfilter alters the mailbox that I am > currently viewing (move mail, ...), then mutt will uncollapse all > threads. Is there a way to collapse them automatically after a mailbox > update? Thanks for any hints! Can someone please confirm if th

collapse threads automatically after imap mailbox update

2015-09-06 Thread Steve Schmerler
ove mail, ...), then mutt will uncollapse all threads. Is there a way to collapse them automatically after a mailbox update? Thanks for any hints! best, Steve

Re: Long urls - update

2013-04-04 Thread Tom
On Tue, Apr 02, 2013 at 09:27:17AM +0100, James Griffin wrote: > Mon 1.Apr'13 at 8:14:35 -0600 Luis Mochan > > > By the way, the author of the program, Kyle Wheeler, wrote to me that > > > he expects that adding the line > > > COMMAND /etc/urlview/url_handler.

Re: Long urls - update

2013-04-03 Thread James Griffin
Tue 2.Apr'13 at 11:51:15 -0600 Luis Mochan > Hello James, > > You are not using the program correctly. extract_urlview has worked > > perfectly with mutt, for me, for probably about 2 years now. Why bother > > trying to integrate it into your shell script, just use

Re: Long urls - update

2013-04-02 Thread Luis Mochan
Hello James, > You are not using the program correctly. extract_urlview has worked > perfectly with mutt, for me, for probably about 2 years now. Why bother > trying to integrate it into your shell script, just use it as a > stand-alone program and don't use urlview at all. > > the contents of my

Re: Long urls - update

2013-04-02 Thread Luis Mochan
Dear Kyle, > ... > > /etc/urlhandler/url_handler.sh is a shell script that obtains its > > url doing '$url=$1'. > > Ahh, indeed, that could cause a problem. Variables are substituted > simply, in an "as if typed" manner. Take this simple example: > ... Thanks for your explanation. As I wrote las

Re: Long urls - update

2013-04-02 Thread Kyle Wheeler
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On Monday, April 1 at 07:30 PM, quoth Luis Mochan: > I tried now your fix, and it didn't work for me; my browser doesn't > find the resulting pages when the url has ampersands that are > converted to %26 (probably because the % itself is further e

Re: Long urls - update

2013-04-02 Thread James Griffin
Mon 1.Apr'13 at 8:14:35 -0600 Luis Mochan > > By the way, the author of the program, Kyle Wheeler, wrote to me that > > he expects that adding the line > > COMMAND /etc/urlview/url_handler.sh '%s' > > to the configuration file ~/.extract_urlview would be enoug

Re: Long urls - update

2013-04-01 Thread Luis Mochan
> Unix shell handles variables abysmally. You need to help it a lot to > do the right thing. *Always* quote variables, else if they're empty > they tend to blow up on you. Thanks for the advice! Your script did work from the command line, but it was not enough when called from extract_url.pl. Any

Re: Long urls - update

2013-04-01 Thread s. keeling
Incoming from Luis Mochan: > > I don't know much about shell programming, but I found that > /etc/urlhandler/url_handler.sh is a shell script that obtains its url > doing '$url=$1'. I replaced the whole handler by the following > program: > #! /bin/bash > url=$1; shift > echo $url >>t

Re: Long urls - update

2013-04-01 Thread Luis Mochan
Hi Kyle, > I'm the author of extract_url.pl, so perhaps I can shed some light > here. Thanks. > The *correct* place to "fix" the issue of escaping (or otherwise > sanitizing) ampersands is in the sanitizeuri function (line 208). The > current version of extract_url.pl uses this: > > sub sa

Re: Long urls - update

2013-04-01 Thread Kyle Wheeler
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On Sunday, March 31 at 11:16 PM, quoth Luis Mochan: >> I'm a perl guy, yet that's non-trivial here. Thx. :-) >> > You're welcome. I don't know if there are other characters that appear > in an url and need to be escaped for the shell ([;><]?); the

Re: Long urls - update

2013-04-01 Thread Luis Mochan
> By the way, the author of the program, Kyle Wheeler, wrote to me that > he expects that adding the line > COMMAND /etc/urlview/url_handler.sh '%s' > to the configuration file ~/.extract_urlview would be enough to solve > the problem (with %s between quotes). I believe I had tried that and >

Re: Long urls - update

2013-04-01 Thread Luis Mochan
Hi John, > I guess I'm the slow one on the list. > Is there more to the patch than commenting out > > # $command =~ s/%s/'$url'/g; > > and replacing it with > > $command=~s/&/\\&/g I didn't comment out that line; it is needed to replace %s by the URL in the 'COMMAND' that actually opens the URL

Re: Long urls - update

2013-04-01 Thread s. keeling
Incoming from John Niendorf: > > I guess I'm the slow one on the list. > Is there more to the patch than commenting out > > # $command =~ s/%s/'$url'/g; > > and replacing it with > > $command=~s/&/\\&/g > > Because either way, extract_url.pl isn't working for me. It looks like that was incorr

Re: Long urls - update

2013-04-01 Thread John Niendorf
Hi Guys, I guess I'm the slow one on the list. Is there more to the patch than commenting out # $command =~ s/%s/'$url'/g; and replacing it with $command=~s/&/\\&/g Because either way, extract_url.pl isn't working for me. I can see the list of urls, but if I click on one I still get a page

Re: Long urls - update

2013-04-01 Thread Chris Bannister
On Tue, Apr 02, 2013 at 01:06:05AM +1300, Chris Bannister wrote: > On Sun, Mar 31, 2013 at 10:00:58PM -0600, s. keeling wrote: > > Incoming from Luis Mochan: > > > I found a mistake in the extract_url.pl program: it doesn't escape > > > ampersands when present in the url, so when the command to act

Re: Long urls - update

2013-04-01 Thread Chris Bannister
On Sun, Mar 31, 2013 at 10:00:58PM -0600, s. keeling wrote: > Incoming from Luis Mochan: > > I found a mistake in the extract_url.pl program: it doesn't escape > > ampersands when present in the url, so when the command to actually > > view the url is invoked, the shell gets confused. I made a quic

Re: Long urls - update

2013-04-01 Thread James Griffin
Sun 31.Mar'13 at 15:37:28 -0600 Luis Mochan > I found a mistake in the extract_url.pl program: it doesn't escape > ampersands when present in the url, so when the command to actually > view the url is invoked, the shell gets confused. I made a quick fix > by substitu

Re: Long urls - update

2013-03-31 Thread Luis Mochan
> Line 633? 634? So: > ># $command =~ s/%s/'$url'/g; >$command=~s/&/\\&/g; Sorry for not having given the line numbers, etc. I actually made changes around 522 and 647, and defined a new subroutine (I named it wlmsanitize) which modifies the command to run. A patch follows. > > I'm a

Re: Long urls - update

2013-03-31 Thread s. keeling
Incoming from Luis Mochan: > I found a mistake in the extract_url.pl program: it doesn't escape > ampersands when present in the url, so when the command to actually > view the url is invoked, the shell gets confused. I made a quick fix > by substituting $command=~s/&/\\&/g before running command.

Re: Long urls - update

2013-03-31 Thread Luis Mochan
I found a mistake in the extract_url.pl program: it doesn't escape ampersands when present in the url, so when the command to actually view the url is invoked, the shell gets confused. I made a quick fix by substituting $command=~s/&/\\&/g before running command. > > http://www.memoryhole.net/~kyl

Re: Long urls - update

2013-03-31 Thread Luis Mochan
Dear John, On Sat, Mar 30, 2013 at 05:15:28PM +0100, John Niendorf wrote: > This looks really great, but where do I put the script? > I made it exicutable and put it in my path and I got the error that it wasn't > there. > I coped it to ~/ and got the same error. > > John > > http://www.memory

Re: Long urls - update

2013-03-30 Thread John Niendorf
This looks really great, but where do I put the script? I made it exicutable and put it in my path and I got the error that it wasn't there. I coped it to ~/ and got the same error. John http://www.memoryhole.net/~kyle/extract_url/ Try this. It's brilliant.

Re: Long urls - update

2013-03-30 Thread James Griffin
Sat 30.Mar'13 at 16:18:30 +0100 John Niendorf > Thank you all for the tips. Actually all I did was install urlview from the > repository and then when I clicked ctrl+B I got a list of ur$ > I'll see how it works with urls that extend onto multiple lines the next ti

Long urls - update

2013-03-30 Thread John Niendorf
Thank you all for the tips. Actually all I did was install urlview from the repository and then when I clicked ctrl+B I got a list of ur$ I'll see how it works with urls that extend onto multiple lines the next time one comes by. John

Re: update needed to "http://www.mutt.org/doc/manual/manual-6.html"

2012-02-11 Thread David Champion
I don't know what the debian package is, but the manual on www.mutt.org is for the "stable" version -- that is, 1.4.2.3. You may be interested in the 1.5.21 manual at http://dev.mutt.org/doc/manual.html#wrap . * On 10 Feb 2012, Paul E Condon wrote: > In section 6.3 Configuration variables, I can

update needed to "http://www.mutt.org/doc/manual/manual-6.html"

2012-02-10 Thread Paul E Condon
In section 6.3 Configuration variables, I can find no mention of the variable 'wrap' and the discussion of 'wrapmargin' does not indicate that it is deprecated. Both are in the man page that is installed by the Debian package. HTH -- Paul E Condon pecon...@mesanetworks.net

[Fwd: Re: ports/157280: [patch][maintainer-update] mail/muttils: update to version 1.1]

2011-05-24 Thread Jason Helfman
ainer-update] mail/muttils: update to version 1.1 From:cu...@freebsd.org Date:Tue, May 24, 2011 1:27 am To: jhelf...@experts-exchange.com cu...@freebsd.org cu...@freebsd.org -- Synopsis: [

Re: Update IMAP Immediately

2002-10-09 Thread Paul Brannan
On Tue, Oct 01, 2002 at 09:02:18PM -0400, Kurt Lieber wrote: > On Tue, Oct 01, 2002 at 05:49:28PM -0700 or thereabouts, Jack Bates wrote: > > How can I force mutt to update my IMAP server - changing, for instance, > > the "new" flag - immediately, instead of wai

Re: Update IMAP Immediately

2002-10-01 Thread Burton Samograd
On Tue, Oct 01, 2002 at 05:49:28PM -0700, Jack Bates wrote: > How can I force mutt to update my IMAP server - changing, for instance, > the "new" flag - immediately, instead of waiting until I quit? Thanks, Try doing a mailbox sync with the '$' key. burton msg3143

Re: Update IMAP Immediately

2002-10-01 Thread Kurt Lieber
On Tue, Oct 01, 2002 at 05:49:28PM -0700 or thereabouts, Jack Bates wrote: > How can I force mutt to update my IMAP server - changing, for instance, > the "new" flag - immediately, instead of waiting until I quit? Thanks, $, by default, resyncs your IMAP mailbox. --kurt

Update IMAP Immediately

2002-10-01 Thread Jack Bates
How can I force mutt to update my IMAP server - changing, for instance, the "new" flag - immediately, instead of waiting until I quit? Thanks, Jack

Re: mbox opened read only after update to mutt 1.4i

2002-09-26 Thread Will Yardley
jochen issing wrote: > So you suggest me to setgid for mutt and/or mutt_dotlock and reset the > /var/mail directory again? chmod 1777 /var/mail should work too. whether you do this or make mutt_dotlock setgid mail is pretty much up to you. -- Will Yardley input: william < @ hq . newdream . net

Re: mbox opened read only after update to mutt 1.4i

2002-09-26 Thread jochen issing
On Thu, Sep 26, 2002 at 10:54:48AM +0200, Nicolas Rachinsky wrote: > * jochen issing <[EMAIL PROTECTED]> [2002-09-26 09:44 +0200]: > > On Wed, Sep 25, 2002 at 06:47:01PM +0200, Sven Guckes wrote: > > > * jochen issing <[EMAIL PROTECTED]> [2002-09-25 16:25]: >

Re: mbox opened read only after update to mutt 1.4i

2002-09-26 Thread Nicolas Rachinsky
* jochen issing <[EMAIL PROTECTED]> [2002-09-26 09:44 +0200]: > On Wed, Sep 25, 2002 at 06:47:01PM +0200, Sven Guckes wrote: > > * jochen issing <[EMAIL PROTECTED]> [2002-09-25 16:25]: > > > > after my recent update to 1.4i, I am not able able to remove any mails

Re: mbox opened read only after update to mutt 1.4i

2002-09-26 Thread jochen issing
On Wed, Sep 25, 2002 at 06:47:01PM +0200, Sven Guckes wrote: > * jochen issing <[EMAIL PROTECTED]> [2002-09-25 16:25]: > > > after my recent update to 1.4i, I am not able able to remove any mails > > > out of my spool files. I can open /var/mail/jochen with vim and c

Re: mbox opened read only after update to mutt 1.4i

2002-09-25 Thread Sven Guckes
* jochen issing <[EMAIL PROTECTED]> [2002-09-25 16:25]: > > after my recent update to 1.4i, I am not able able to remove any mails > > out of my spool files. I can open /var/mail/jochen with vim and can > > write it, but mutt refuses writing. > Ah, I have solved

Re: mbox opened read only after update to mutt 1.4i

2002-09-25 Thread jochen issing
On Wed, Sep 25, 2002 at 02:33:24PM +0200, jochen issing wrote: > Hi List, > > after my recent update to 1.4i, I am not able able to remove any mails > out of my spool files. I can open /var/mail/jochen with vim and can > write it, but mutt refuses writing. > I found in the inte

Re: mbox opened read only after update to mutt 1.4i

2002-09-25 Thread jochen issing
On Wed, Sep 25, 2002 at 04:34:57PM +0200, jochen issing wrote: > On Wed, Sep 25, 2002 at 03:37:12PM +0200, Sven Guckes wrote: > > * jochen issing <[EMAIL PROTECTED]> [2002-09-25 12:39]: > > > after my recent update to 1.4i, I am not able able to remove > > > any m

Re: mbox opened read only after update to mutt 1.4i

2002-09-25 Thread jochen issing
On Wed, Sep 25, 2002 at 03:37:12PM +0200, Sven Guckes wrote: > * jochen issing <[EMAIL PROTECTED]> [2002-09-25 12:39]: > > after my recent update to 1.4i, I am not able able to remove > > any mails out of my spool files. I can open /var/mail/jochen > > with vim and can

Re: mbox opened read only after update to mutt 1.4i

2002-09-25 Thread Sven Guckes
* jochen issing <[EMAIL PROTECTED]> [2002-09-25 12:39]: > after my recent update to 1.4i, I am not able able to remove > any mails out of my spool files. I can open /var/mail/jochen > with vim and can write it, but mutt refuses writing. sounds like a locking problem.. > I fou

Re: mbox opened read only after update to mutt 1.4i

2002-09-25 Thread David T-G
Jochen -- ...and then jochen issing said... % % after my recent update to 1.4i, I am not able able to remove any mails What, it's still that way an hour later? See my reply to your first post :-) HTH & HAND :-D -- David T-G * It's easier to fight for on

Re: mbox opened read only after update to mutt 1.4i

2002-09-25 Thread David T-G
Jochen -- ...and then jochen issing said... % % Hi List, Hello! % % after my recent update to 1.4i, I am not able able to remove any mails How did you install mutt? Were you root, or just jochen? % out of my spool files. I can open /var/mail/jochen with vim and can % write it, but mutt

mbox opened read only after update to mutt 1.4i

2002-09-25 Thread jochen issing
Hi List, after my recent update to 1.4i, I am not able able to remove any mails out of my spool files. I can open /var/mail/jochen with vim and can write it, but mutt refuses writing. I found in the internet the configure switch --enable-extern-dotlock and compiled it once more, but this did not

mbox opened read only after update to mutt 1.4i

2002-09-25 Thread jochen issing
Hi List, after my recent update to 1.4i, I am not able able to remove any mails out of my spool files. I can open /var/mail/jochen with vim and can write it, but mutt refuses writing. I found in the internet the configure switch --enable-extern-dotlock and compiled it once more, but this did not

Re: query regarding 'update encoding'

2002-05-23 Thread David T-G
Suresh -- ...and then V. Suresh said... % % Hi All, Hello! % In mutt, after I create a message, when I press 'y' to send it % Mutt asks me that ' -so-so- file has been modified. Update encoding(yes/no)'. mutt checks the timestamps to see how the file is doing, and w

query regarding 'update encoding'

2002-05-22 Thread V. Suresh
Hi All, In mutt, after I create a message, when I press 'y' to send it Mutt asks me that ' -so-so- file has been modified. Update encoding(yes/no)'. Either I click y or n, the message is sent. No problems with that. But I want to know which variable I have to set to stop

Re: tmp modified. Update encoding?

2002-04-16 Thread David T-G
Hardy -- ...and then Hardy Merrill said... % % David T-G [[EMAIL PROTECTED]] wrote: % > ... % > This just came up recently; you can check the archives for the full % > discussion. Is your home dir NFS mounted and are you experience clock % > difference problems between machines? % % Yes, that

Re: tmp modified. Update encoding?

2002-04-16 Thread Hardy Merrill
David T-G [[EMAIL PROTECTED]] wrote: > Hardy -- > > ...and then Hardy Merrill said... > % > ... > %~/.mutt/tmp/mutt-merrill-1234-0 [#1] modified. Update encoding? ([y]/n): > % > % Am I doing something wrong, or have a forgotten something in the > % config of m

Re: tmp modified. Update encoding?

2002-04-16 Thread David T-G
Hardy -- ...and then Hardy Merrill said... % ... %~/.mutt/tmp/mutt-merrill-1234-0 [#1] modified. Update encoding? ([y]/n): % % Am I doing something wrong, or have a forgotten something in the % config of mutt? This just came up recently; you can check the archives for the full discussion

tmp modified. Update encoding?

2002-04-15 Thread Hardy Merrill
I recently changed configs - I'm now using fetchmail/procmail/mutt, and when I compose a message in mutt, I get this message when I try to send it: ~/.mutt/tmp/mutt-merrill-1234-0 [#1] modified. Update encoding? ([y]/n): Am I doing something wrong, or have a forgotten something in the c

Re: "update encoding?"

2002-04-03 Thread Simon White
n the local subnet and update your clock accordingly. k9 works for Windows and Linux clients. You just need one "master" server on each subnet, which broadcasts the time every minute or so to all clients. -- [Simon White. vim/mutt. [EMAIL PROTECTED] GIMPS:61.19% see www.mersenne.org] If it

Re: "update encoding?"

2002-04-02 Thread Will Yardley
Sadiq Al-Lawatia wrote: > The home directories are indeed nfs mounted. And after a little chat > with the system administrator, it turns out the problem is exactly as > Adam has suggested in his reply about the clocks not running at the > same time. > > So I guess there is nothing I can do, unl

Re: "update encoding?"

2002-04-02 Thread Sadiq Al-Lawatia
Quoting Kyle Rawlins ([EMAIL PROTECTED]): > I notice that the tmp directory is somewhere under the home directory so could > possibly be nfs mounted - if there is a time skew between the server and the > computer running mutt this could potentially cause problems too. I am having a > hard time ex

Re: "update encoding?"

2002-04-02 Thread David DeSimone
Adam Shostack <[EMAIL PROTECTED]> wrote: > > The client's clock is running a few minutes behind the server. You > write the file at local noon, which the server sets to be 12:03. Mutt > checks the file, sees that its mtime is in the future (12:03 being > later than 12:00), and warns you. I gues

Re: "update encoding?"

2002-04-02 Thread Adam Shostack
On Tue, Apr 02, 2002 at 05:02:02PM -0500, Kyle Rawlins wrote: > On Tue, Apr 02, 2002 at 01:04:24PM -0600, David DeSimone wrote: > > Sadiq Al-Lawatia <[EMAIL PROTECTED]> wrote: > > > > > > "~/Mail/tmp/mutt-csce-4803-30 [#1] modified. Update encoding? > &

Re: "update encoding?"

2002-04-02 Thread Kyle Rawlins
On Tue, Apr 02, 2002 at 01:04:24PM -0600, David DeSimone wrote: > Sadiq Al-Lawatia <[EMAIL PROTECTED]> wrote: > > > > "~/Mail/tmp/mutt-csce-4803-30 [#1] modified. Update encoding? > > ([yes]/no): " > > So, the mystery here is, why does Mutt think that

Re: "update encoding?"

2002-04-02 Thread David DeSimone
Sadiq Al-Lawatia <[EMAIL PROTECTED]> wrote: > > "~/Mail/tmp/mutt-csce-4803-30 [#1] modified. Update encoding? > ([yes]/no): " This message indicates that the time-stamp on the file has been changed since Mutt last saw you write to the file. That is, when Mutt launc

Re: "update encoding?"

2002-04-01 Thread David T-G
x27;m afraid I don't have an answer for your question, but I do have a suggestion for your admin: go back and re-update to 1.3.28 (latest development release and a 1.4 release candidate), since a security hole was fixed with 1.3.27. HTH & HAND :-D -- David T-G *

"update encoding?"

2002-03-31 Thread Sadiq Al-Lawatia
hit send: "~/Mail/tmp/mutt-csce-4803-30 [#1] modified. Update encoding? ([yes]/no): " How can I get rid of it? Its annoying to hit 'y' everytime I want to send an email, and besides, I do not see any difference in emails even when I hit n! Thanx for your help. --Sadiq

Re: update on the pgp_force_traditional patch

2002-01-30 Thread Dale Woolridge
On 30-Jan-2002 23:06 Viktor Rosenfeld wrote: | | Note however, that the usual caveats of clear-signing still apply, if | there is a broken MTA setup somewhere along the way, you might get a | broken signature. Not if Outlook would notice of course. :) I just wanted to add that if you are u

update on the pgp_force_traditional patch

2002-01-30 Thread Viktor Rosenfeld
Hi there, some people have asked me to keep them updated about my pgp_force_traditional patch. In fact, my old version posted to mutt-users two weeks ago contained a bug, which I've fixed now. You can find the patch at this URL: http://www.informatik.hu-berlin.de/~rosenfel/mutt.html o

One more threading update

2001-12-14 Thread Daniel Eisenbud
On Wed, Dec 12, 2001 at 08:05:54PM -0500, Daniel Eisenbud <[EMAIL PROTECTED]> wrote: > The attached patch makes it possible to collapse threads whose root is > missing and whose first present message has no descendants, which was > previously not possible because of an oversight. It also makes t

Re: Which grepmail little mutt front-end ? (was: Re: [ Update ] List of 3rd party apps for Mutt)

2001-11-26 Thread Paul Roberts Student lab engineer
On Mon, Nov 26, 2001 at 01:56:23PM +0100, Gregor Zattler wrote: > I'm interested in such thing. Where can i get this? Try: http://grepmail.sourceforge.net/ There's a link on that page to the mutt front-end too. - Paul -- Paul Roberts <[EMAIL PROTECTED]>

Which grepmail little mutt front-end ? (was: Re: [ Update ] List of 3rd party apps for Mutt)

2001-11-26 Thread Gregor Zattler
Hi Cliff, hi mutt users, Cliff mentioned a frontend to grepmail: * Cliff Sarginson <[EMAIL PROTECTED]> [Fre., 23. Nov. 2001; 17:36:09 +0100]: [...] > But I see no mention of grepmail, and it's little mutt front-end > friend. I'm interested in such thing. Where can i get this? Ciao, gregor

Re: [ Update ] List of 3rd party apps for Mutt

2001-11-23 Thread Cliff Sarginson
On Thu, Nov 22, 2001 at 09:34:19PM +0530, Prahlad Vaidyanathan wrote: > Hi, > > On Tue, 20 Nov 2001 René <[EMAIL PROTECTED]> spewed into the ether: > > * Prahlad Vaidyanathan <[EMAIL PROTECTED]> [20-11-2001 15:36]: > > > > | Hi, > > | > > | Finally got around to updating it : > > | > > | h

Re: [ Update ] List of 3rd party apps for Mutt

2001-11-23 Thread Prahlad Vaidyanathan
Hi, On Tue, 20 Nov 2001 René <[EMAIL PROTECTED]> spewed into the ether: > * Prahlad Vaidyanathan <[EMAIL PROTECTED]> [20-11-2001 15:36]: > > | Hi, > | > | Finally got around to updating it : > | > | http://www.symonds.net/~prahladv/mutt.html > | > | Feedback ? > > Looks nice! You could c

Re: [ Update ] List of 3rd party apps for Mutt

2001-11-20 Thread Thomas Ribbrock
On Tue, Nov 20, 2001 at 11:04:52AM -0800, Gary Johnson wrote: > For the record, w3m also supports frames, manually via the F command or > automatically via the -F command-line option. (I don't know why it > doesn't render them by default.) It does, if you set that option on the option screen and

Re: [ Update ] List of 3rd party apps for Mutt

2001-11-20 Thread Thomas Dickey
On Tue, Nov 20, 2001 at 01:16:48PM -0800, Will Yardley wrote: > Gary Johnson wrote: > > On Tue, Nov 20, 2001 at 03:44:00PM +0100, Ren? Clerc wrote: > > > > > Looks nice! You could consider adding the text-based browser "links". > > > IMO, this is the best alternative for lynx. It supports frames!

Re: [ Update ] List of 3rd party apps for Mutt

2001-11-20 Thread Will Yardley
Gary Johnson wrote: > On Tue, Nov 20, 2001 at 03:44:00PM +0100, Ren? Clerc wrote: > > > Looks nice! You could consider adding the text-based browser "links". > > IMO, this is the best alternative for lynx. It supports frames! > > For the record, w3m also supports frames, manually via the F comma

Re: [ Update ] List of 3rd party apps for Mutt

2001-11-20 Thread Gary Johnson
On Tue, Nov 20, 2001 at 03:44:00PM +0100, Ren? Clerc wrote: > Looks nice! You could consider adding the text-based browser "links". > IMO, this is the best alternative for lynx. It supports frames! For the record, w3m also supports frames, manually via the F command or automatically via the -F c

Re: [ Update ] List of 3rd party apps for Mutt

2001-11-20 Thread René Clerc
* Thomas E. Dickey <[EMAIL PROTECTED]> [20-11-2001 16:17]: | On Tue, 20 Nov 2001, René Clerc wrote: | | > * Prahlad Vaidyanathan <[EMAIL PROTECTED]> [20-11-2001 15:36]: | > | > | Hi, | > | | > | Finally got around to updating it : | > | | > | http://www.symonds.net/~prahladv/mutt.html | > |

Re: [ Update ] List of 3rd party apps for Mutt

2001-11-20 Thread Thomas E. Dickey
On Tue, 20 Nov 2001, René Clerc wrote: > * Prahlad Vaidyanathan <[EMAIL PROTECTED]> [20-11-2001 15:36]: > > | Hi, > | > | Finally got around to updating it : > | > | http://www.symonds.net/~prahladv/mutt.html > | > | Feedback ? > > Looks nice! You could consider adding the text-based browser

Re: [ Update ] List of 3rd party apps for Mutt

2001-11-20 Thread René Clerc
* Prahlad Vaidyanathan <[EMAIL PROTECTED]> [20-11-2001 15:36]: | Hi, | | Finally got around to updating it : | | http://www.symonds.net/~prahladv/mutt.html | | Feedback ? Looks nice! You could consider adding the text-based browser "links". IMO, this is the best alternative for lynx. It s

[ Update ] List of 3rd party apps for Mutt

2001-11-20 Thread Prahlad Vaidyanathan
Hi, Finally got around to updating it : http://www.symonds.net/~prahladv/mutt.html Feedback ? pv. -- Prahlad Vaidyanathan <[EMAIL PROTECTED]>What, me worry ? http://www.symonds.net/~prahladv/Don't Panic ! -- msg20589/pgp0.pgp Description: PGP si

Re: IMAP subfolder update flag

2001-10-20 Thread Rob 'Feztaa' Park
On Fri, Oct 19, 2001 at 01:01:47AM -0400, David T-G (dis)graced my inbox with: > % > % If you leave a folder with new messages, mutt will 'forget' that there > % > % are new messages in it -- very annoying. > % > > % > No, no, no... You're confusing your definition of "new" with mutt's > % > def

Re: IMAP subfolder update flag

2001-10-18 Thread David T-G
Rob -- ...and then Rob 'Feztaa' Park said... % On Thu, Oct 18, 2001 at 10:58:00AM -0400, David T-G (dis)graced my inbox with: % > % > Just adding the subfolders to your mailboxes list works fine -- I used % > % > Mutt with IMAP for months after sorting server-side with procmail. % > % % > % That

Re: IMAP subfolder update flag

2001-10-18 Thread Rob 'Feztaa' Park
On Thu, Oct 18, 2001 at 10:58:00AM -0400, David T-G (dis)graced my inbox with: > % > Just adding the subfolders to your mailboxes list works fine -- I used > % > Mutt with IMAP for months after sorting server-side with procmail. > % > % That doesn't work for local mbox folders, though :) > > Why

Re: IMAP subfolder update flag

2001-10-18 Thread David T-G
Rob, et al -- ...and then Rob 'Feztaa' Park said... % On Tue, Oct 16, 2001 at 08:37:47PM -0400, Justin R. Miller (dis)graced my inbox with: % > > I'm not sure how feasable this is in an IMAP environment, but I was % > > having a similar problem with my local mail folders... What I did to ... % >

Segfault in Mutt 1.2.5i, while executing $ update

2001-07-17 Thread John P. Verel
I produced a segfault in Mutt 1.2.5i as follows. I have a folder hook set for mbox to show only new messages. I started Mutt, went to mbox. Deleted the one message which was marked as new. I then pressed $ to update mbox, thinking this would show the remaining contents (which is over 300

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

Re: maildir update

2001-04-24 Thread Tim Legant
On Tue, Apr 24, 2001 at 03:01:48PM +, Subba Rao wrote: > I have maildir format mailbox. After I read my email from mutt, the maildir/new > directory is not updated until I exit Mutt. Mutt seems to write and update > these directories only when I exit from Mutt. Is there anyway to u

maildir update

2001-04-24 Thread Subba Rao
I have maildir format mailbox. After I read my email from mutt, the maildir/new directory is not updated until I exit Mutt. Mutt seems to write and update these directories only when I exit from Mutt. Is there anyway to update the maildir directories once I read the email? -- Subba Rao [EMAIL

Re: Update

2001-03-03 Thread tompoe
On Fri, 02 Mar 2001, Erika Pacholleck wrote: > ( Fre, 02 Mär 2001 ) tompoe <-- : > > > > So, if someone could describe briefly just what happens when I enter "y" to > > send message? > > I do not use Suse and no sendmail but postfix, but its slightly equal, > so flatly spoken: > - mutt calls th

RE: Update

2001-03-02 Thread Suresh Ramasubramanian
tompoe : > So, if someone could describe briefly just what happens when I > enter "y" to send message? I need to track the message, mutt hands off to sendmail (which queues the mail). then when you connect to your isp and give a /usr/sbin/sendmail -q then the mail is sent to your isp smtp ser

Update

2001-03-01 Thread tompoe
Hi: Well, spent time with the manual, faq, and whatever else I could find on google. At this point, I am able to call fetchmail, read mail in mutt, and set emacs as an editor to send a mail message. All looks satisfactory, and sets the stage to enter the learning curve with working tools [exclu

Segfault in 1.2.5i -- Update

2000-12-23 Thread John P. Verel
Hi, Thomas. Just an update on occurrences of segfault. I've changed my .muttrc setting around a bit to change the way a folder is displayed when first opened. I have the following: folder-hook =mbox 'push odl~N' folder-hook =outbox 'push od folder-hook =CGO_Chorus &

Why am I asked to update encoding?

2000-12-07 Thread Charles Krug
List: I'm using mutt under Win95/Cygwin. When I finish composing a message, I am occasionally asked if I want to update encoding. Looking at the source code, it appears that it's asking me if I want to convert between two different encodings.--is that 8-bit vs 7-bit? However, I

Re: Update on blocking spam in mutt

2000-09-28 Thread Suresh Ramasubramanian
Pete Robie proclaimed on mutt-users that: > After a few hours of sitting here reading I found a temporary > solution that can be done from a users end. The recipiant has no idea if Tell you what - the best way to block spam - the most permanent way to block spam - is to forward the spam,

Update on blocking spam in mutt

2000-09-28 Thread Pete Robie
After a few hours of sitting here reading I found a temporary solution that can be done from a users end. The recipiant has no idea if this is true or not and all I need to find is how to remove the message based on the domain. Here is what I found (I hope this helps others out th

Re: fcc-hook update after To: change

2000-08-24 Thread David Champion
My bet is that it would only be a benevolent feature patch, > though. Seems like the most adaptable approach, if this were to be implemented, is to have an update-fcc routine that rewrites fcc: according to to: and $force_name/$save_name. I think that automating it would be problematic for a va

Re: fcc-hook update after To: change

2000-08-24 Thread David T-G
Daniel -- Did you know your message hit the list twice as two separate items? ...and then Daniel Kollar said... % Hi there, % % I encountered a missing feature (or a bug?). I think it's more the former. % % When creating a new mail and exiting the editor, mutt fills in the correct Fcc: fo

  1   2   >