On Monday, March 10, 2008 at 23:25:30 +0100, Michelle Konzack wrote:
> Am 2008-03-09 17:58:02, schrieb Alain Bench:
>> the backtick expansion picks the first line only
> I have added the \ only for the mail...
Sorry I was not specific enough: Several \-ended lines in muttrc are
not the probl
Hi Alain,
Am 2008-03-09 17:58:02, schrieb Alain Bench:
> On Monday, March 3, 2008 at 20:48:27 +0100, Michelle Konzack wrote:
> >| `for file in ~/Mail/lists/* ; do name=$(basename $file) ; \
> >| echo -e "lists $name\nsubscribe $name" ; done`
>
> This doesn't work:
>
> - th
Hello Michael,
On Sunday, March 2, 2008 at 21:18:37 +, Michael Kjörling wrote:
> `lists' and `subscribe' takes an address regexp
Regexps came in Mutt 1.5.6. The OP uses Mutt 1.4.2.2i, where lists
and subscribe patterns were simple strings matched against the beginning
of the address (ie
Hello Michelle,
On Monday, March 3, 2008 at 20:48:27 +0100, Michelle Konzack wrote:
>| unlists *
>| unsubscribe *
>| `for file in ~/Mail/lists/* ; do name=$(basename $file) ; \
>| echo -e "lists $name\nsubscribe $name" ; done`
This doesn't work:
- the backtick expansion p
Am 2008-03-01 14:21:43, schrieb Jorge Luis Gonzalez:
> I'm using the following to list and subscribe to my mailing lists:
>
> unlists *
> lists `for file in ~/Mail/lists/*; do echo -n "=lists/$(basename \
> $file) "; done`
>
> unsubscribe *
> subscribe `for file in ~/Mail/lists/*; do echo -
=- Jorge Luis Gonzalez wrote on Sat 1.Mar'08 at 14:21:43 -0500 -=
> I'm using the following to list and subscribe to my mailing lists:
>
> unlists *
> lists `for file in ~/Mail/lists/*; do echo -n "=lists/$(basename \
> $file) "; done`
>
> unsubscribe *
> subscribe `for file in ~/Mail/lis
On 1 Mar 2008 14:21 -0500, by [EMAIL PROTECTED] (Jorge Luis Gonzalez):
> When I try to follow up to a mailing list using L, I get "mailing
> lists not found." What's wrong with the lists and subscribe lines?
`lists' and `subscribe' takes an address regexp, not a mailbox name.
http://www.mutt.org
I'm using the following to list and subscribe to my mailing lists:
unlists *
lists `for file in ~/Mail/lists/*; do echo -n "=lists/$(basename \
$file) "; done`
unsubscribe *
subscribe `for file in ~/Mail/lists/*; do echo -n "=lists/$(basename \
$file) "; done`
(The lines aren't w