Jz | 1 Sep 03:40
Picon

How to quote in mutt?

Great to ask a question here,my question is:
How to quote some words to my email in mutt? Here I have seen
examples,but don't know how.

Thanks for you patient!

jazzi

Kyle Wheeler | 1 Sep 04:33

Re: How to quote in mutt?


On Friday, September  1 at 09:40 AM, quoth Jz:
> Great to ask a question here,my question is:
> How to quote some words to my email in mutt? Here I have seen 
> examples,but don't know how.

You mean like that?

Generally that's accomplished by simply replying to a message. How 
this happens is affected by several configuration settings. The first 
is $attribution, which defines the line at the top:

    On Friday, September  1 at 09:40 AM, quoth Jz:

You set this by adding a line to your ~/.muttrc file that looks like 
this:

    set attribution="On %d, quoth %n:"

Each quoted line above is quoted by prepending a "> " in front of it. 
This is defined by $indent_string, like so:

    set indent_string="> "

Finally, mutt will only use $indent_string to quote the message if the 
$include setting is set properly. $include is a "quad-option", which 
means it can have one of four values: yes, no, ask-yes, and ask-no. If 
mutt isn't including the test in your replies, then it's probably set 
to "no" (or it's asking and you're telling it "no"). The default, 
which is what I usually use, is ask-yes. Set it like so:
(Continue reading)

Picon
Favicon

Re: some mutt questions

Michael Tatge escribe:
> Subject? No, you want to match the Message-ID in References/In-Reply-To.

That's far more proper, of course!

Cordially, Ismael
--

-- 
Ismael Valladolid Torres   "Il est vain de pleurer sur l'esprit, il suffit
                                de travailler pour lui." Albert Camus
http://digitrazos.info/
http://lamediahostia.blogspot.com/      OpenPGP key ID: 0xDE721AF4

Bob Self | 1 Sep 12:17
Favicon

index_format %l


I have %l in the index_format string (I'm just using the default).

I notice that mosts messages have (   0) as the number of lines, but now
and then one will have a non-zero number. The ones that show zero actually
have many lines of text. How can I get the to show non-zero numbers?

thanks,
Bob

RLB | 1 Sep 12:30
Picon
Picon
Favicon

Re: Sidebar patch: 1 keybinding not working

On 31-08-06 12:43, David Champion wrote:

> I'm not familiar with this patch particularly, but having written
> other patches that add key bindings, I can say that problems like this
> can come up if the patch uses bindings that mutt already uses, or if
> mutt adds bindings after the patch is written.  In such cases, two or
> more operations can have the same binding, and only one wins out.  It
> may be that there's nothing wrong with the binding per se -- it's just
> that something else is overriding it.

> If you're curious, you might want to check your patched functions.h
> for other operations with the same binding as you expect sidebar
> operations to use.

Nice, didn't know that one.

> If you just want it to work, it might be enough to make the sidebar
> binding (with the original keystroke) explicit in your muttrc.

I remapped the keys, and now it's working. Still a strange problem with
my already existing macro <ESC>A which before reloaded my muttrc, but
now opens/closes the sidebar. Seems I need some more remapping.

Thanks for your explanation.

Best regards, Dick

Alain Bench | 1 Sep 13:30
Picon
Favicon

Re: weird qp encoding?

Hello Will,

 On Thursday, August 31, 2006 at 10:17:54 -0700, William B. Yardley wrote:

> Their quote marks have an "=A0" after them, like:
>> >=A0Foo quoted text here

    That's probably the Latin-1 U+00A0 non-breaking space " ". For me
this appears as a normal space, both in Mutt and in $editor. Can you
describe and quote " " back?

> when I edit the message in vim, I get something that looks like:
>> >|Foo quoted text here

    Do you use a different font in Vim? Or have some setting to
distinguish real spaces from other spacings?

Bye!	Alain.
--

-- 
Give your computer's unused idle processor cycles to a scientific goal:
The Folding <at> home project at <URL:http://folding.stanford.edu/>.

Michael Tatge | 1 Sep 14:08
Picon

Re: index_format %l

* On Fri, Sep 01, 2006 Bob Self (bobself <at> charter.net) muttered:
> I have %l in the index_format string (I'm just using the default).
> I notice that mosts messages have (   0) as the number of lines

You're using maildir, right? Maildir does not need Lines: or
Content-Length: header so the info is just not there.
You might want to use %c instead. I find the size more informative
anyways, especially for messages with attachments.
If you insist on a lines count and use procmail you can easily add the
Lines: header.

:0 Bfh
* H ?? !^Lines:
* -1^0
*  1^1 ^.*$
| formail -A "Lines: $="

HTH,

Michael
--

-- 
...[Linux's] capacity to talk via any medium except smoke signals.
		-- Dr. Greg Wettstein, Roger Maris Cancer Center

PGP-Key-ID: 0xDC1A44DD
Jabber:     init[0]@amessage.de

Bob Self | 1 Sep 14:32
Favicon

Re: index_format %l

On Fri, Sep 01, 2006 at 02:08:15PM +0200, Michael Tatge wrote:
> * On Fri, Sep 01, 2006 Bob Self (bobself <at> charter.net) muttered:
> > I have %l in the index_format string (I'm just using the default).
> > I notice that mosts messages have (   0) as the number of lines
> 
> You're using maildir, right? Maildir does not need Lines: or
> Content-Length: header so the info is just not there.
> You might want to use %c instead. I find the size more informative
> anyways, especially for messages with attachments.
> If you insist on a lines count and use procmail you can easily add the
> Lines: header.
> 
> :0 Bfh
> * H ?? !^Lines:
> * -1^0
> *  1^1 ^.*$
> | formail -A "Lines: $="
> 
> 

I am using maildir. I changed to %c and will try that for a while.
I also added the lines to .procmailrc to try that.

thanks

Patrick Shanahan | 1 Sep 15:05
Picon

Re: index_format %l

* Michael Tatge <Michael.Tatge <at> web.de> [09-01-06 08:10]:
> If you insist on a lines count and use procmail you can easily add
> the Lines: header.
> 
> :0 Bfh
> * H ?? !^Lines:
> * -1^0
> *  1^1 ^.*$
> | formail -A "Lines: $="
> 

or the following so it only operates on messages *missing* the 'Lines:'
header:

:0
* ! ^Lines:
{
  :0B
  * 1^1 ^.*$
  { }
  LINES = $=

  :0 fhw
  | formail -a "Lines: $LINES"
}

--

-- 
Patrick Shanahan                        Registered Linux User #207535
http://wahoo.no-ip.org                        @ http://counter.li.org
HOG # US1244711         Photo Album:  http://wahoo.no-ip.org/gallery2
(Continue reading)

RLB | 1 Sep 16:47
Picon
Picon
Favicon

Folder keeps showing new messages

Hi guys,

I'm using Mutt with IMAP. When I start Mutt, I can see which folders
have new messages. When I enter a folder with new messages, and leave it
without reading any, the new message counter is reset to zero (when I
look in the folder list). This is fine.  However, when I close and
restart Mutt, the counter is back to the number of unread messages. I do
not want this behaviour, en keep the unread message to zero.

How can I avoid this ?

Thanks.  
Dick


Gmane