Payal Rathod | 3 Oct 2005 09:29

send-hooks for Cc:

Hi,
I have a small query. When I send a mail with To: or Cc: to 
 <at> scriptkitchen.com, my address at scriptkitchen.com should be seen.
In rest of the cases my address for e.g. payal <at> example.net should be 
seen in From field. I could achieve this only for To: field but not for 
Cc: field. Can anyone guide please?
With warm regards,
-Payal

Thomas Glanzmann | 3 Oct 2005 09:38
Picon
Picon

Re: send-hooks for Cc:

Hello,

> I have a small query. When I send a mail with To: or Cc: to 
>  <at> scriptkitchen.com, my address at scriptkitchen.com should be seen.
> In rest of the cases my address for e.g. payal <at> example.net should be 
> seen in From field. I could achieve this only for To: field but not for 
> Cc: field. Can anyone guide please?

some time ago I wrote a patch to adopt the Reply-To: header based on ~C
however it would be easy to enhance it to cover your case, too. I don't
even know where the patch is, but I posted it to the list - that is for
sure.

But I am not up to the task at the moment,
                                        Thomas

Payal Rathod | 4 Oct 2005 10:42

Re: send-hooks for Cc:

On Mon, Oct 03, 2005 at 09:38:02AM +0200, Thomas Glanzmann wrote:
> Hello,
> 
> > I have a small query. When I send a mail with To: or Cc: to 
> >  <at> scriptkitchen.com, my address at scriptkitchen.com should be seen.
> > In rest of the cases my address for e.g. payal <at> example.net should be 
> > seen in From field. I could achieve this only for To: field but not for 
> > Cc: field. Can anyone guide please?

Thanks for the tip, I will search for it.
Incase you get it, kindly mail me the same.
With warm regards,
-Payal

Payal Rathod | 4 Oct 2005 10:45

address book

Hi,
I am using the .mutt/aliases file for address book and just use the 
default "a" key for adding addresses. But this always adds only the 
address  listed in From: field. I may want other addresses too. Any 
ideas on how I can get them? mail2muttaliases.py does not work properly 
on my system so please suggest something else.

With warm regards,
-Payal

Marcus Franke | 4 Oct 2005 13:43
Picon

mutt, exchange, and public folders

Hello everyone,

I asked the question before, but got no answers and the problem still
exists.

I use mutt to read my mails via IMAP on the local exchange server which 
works flawless and fine.

The same server holds a public folder structure, which can be accessed fine
via IMAP but not with mutt, it fails badly, so I have to use Evolution for
those folders :(

It is a german Exchange so public folders is called "Öffentliche Ordner" 
here.

In the mailbox list I can see the following output:
   18     IMAP                                  outbox
   19     IMAP                                  Öffentliche Ordner//
   20     IMAP                                  Öffentliche Ordner

Mailbox 20 does not work, if I try to open it I get the following
message: This a special mailbox and can not be selected or used as the
destination for mailbox operations.

But no. 19 works fine, I can open it and can see the next level of mailboxes
in it:
->  1     IMAP                                  ../
    2     IMAP +                                Öffentliche Ordner/error/
    3     IMAP +                                Öffentliche
Ordner/Statuskonten/
(Continue reading)

Wilkinson, Alex | 5 Oct 2005 03:06
Picon

dynamically switching $editor [keybinding question]

Hi all,

Can someone tell me if it is possible to set a keybinding to
dynamically switch between different $editors on the fly ?

e.g. I want to be able to set a keybinding that will switch between
     the following 2 $editor:

     set editor="vim -c 'set filetype=mail' -c 'set textwidth=70' +:$ +:star!"
     set editor="vim"

Is this possible ?

Cheers

 - aW

Gary Johnson | 5 Oct 2005 04:22

Re: dynamically switching $editor [keybinding question]

On 2005-10-05, "Wilkinson, Alex" <alex.wilkinson <at> dsto.defence.gov.au> wrote:
> Hi all,
> 
> Can someone tell me if it is possible to set a keybinding to
> dynamically switch between different $editors on the fly ?
> 
> e.g. I want to be able to set a keybinding that will switch between
>      the following 2 $editor:
> 
>      set editor="vim -c 'set filetype=mail' -c 'set textwidth=70' +:$ +:star!"
>      set editor="vim"
> 
> Is this possible ?

Yes.  The tricky part is handling three levels of nested quotes.  
This should work.

    macro index ,E 'set editor="vim -c \"set filetype=mail\" -c \"set textwidth=70\" +:$ +:star!"'
    macro index ,e 'set editor="vim"'

Those define keybindings for the index menu.  If you want to be able
to switch editors from some other mutt menu, you'll have to add
macros for them as well.

I chose ",E" and ",e" to invoke the macros, but you can use
single-letter keybindings instead if you prefer.

See the mutt manual, section 3.6, "Keyboard macros".

There is a way to toggle back and forth between editor settings
(Continue reading)

Nicolas Rachinsky | 5 Oct 2005 09:19

Re: dynamically switching $editor [keybinding question]

* Gary Johnson <garyjohn <at> spk.agilent.com> [2005-10-04 19:22 -0700]:
> On 2005-10-05, "Wilkinson, Alex" <alex.wilkinson <at> dsto.defence.gov.au> wrote:
> > Hi all,
> > 
> > Can someone tell me if it is possible to set a keybinding to
> > dynamically switch between different $editors on the fly ?
> > 
> > e.g. I want to be able to set a keybinding that will switch between
> >      the following 2 $editor:
> > 
> >      set editor="vim -c 'set filetype=mail' -c 'set textwidth=70' +:$ +:star!"
> >      set editor="vim"
> > 
> > Is this possible ?
> 
> Yes.  The tricky part is handling three levels of nested quotes.  
> This should work.
> 
>     macro index ,E 'set editor="vim -c \"set filetype=mail\" -c \"set textwidth=70\" +:$ +:star!"'
>     macro index ,e 'set editor="vim"'

T think this shoud read
     macro index ,E '<enter-command>set editor="vim -c \"set filetype=mail\" -c \"set textwidth=70\" +:$ +:star!"\n'
     macro index ,e '<enter-command>set editor="vim"\n'

Nicolas

Gary Johnson | 5 Oct 2005 19:40

Re: dynamically switching $editor [keybinding question]

On 2005-10-05, Nicolas Rachinsky <mutt-users-0 <at> ml.turing-complete.org> wrote:
> * Gary Johnson <garyjohn <at> spk.agilent.com> [2005-10-04 19:22 -0700]:

> >     macro index ,E 'set editor="vim -c \"set filetype=mail\" -c \"set textwidth=70\" +:$ +:star!"'
> >     macro index ,e 'set editor="vim"'
> 
> T think this shoud read
>      macro index ,E '<enter-command>set editor="vim -c \"set filetype=mail\" -c \"set textwidth=70\" +:$ +:star!"\n'
>      macro index ,e '<enter-command>set editor="vim"\n'
> 
> Nicolas

Yes.  Thanks.

Gary

--

-- 
Gary Johnson                               | Agilent Technologies
garyjohn <at> spk.agilent.com                   | Wireless Division
http://www.spocom.com/users/gjohnson/mutt/ | Spokane, Washington, USA

Seth Hasani | 6 Oct 2005 05:11
Picon

text/enriched is unsupported

Im getting this in mail sent from Apple Mail users. What's weird to me is I
thought mutt had native support for displaying text/enriched mail already
built in. I know I can set a mailcap entry to pipe this somewhere else, but
is there any reason Im missing that mutt wont render this message?

  [-- Attachment #1 --]
  [-- Type: multipart/alternative, Encoding: 7bit, Size: 2.5K --]
  Content-Type: multipart/alternative; boundary=Apple-Mail-20--100266368

  Content-Transfer-Encoding: quoted-printable
  Content-Type: text/enriched;
        charset=US-ASCII

  [-- text/enriched is unsupported (use 'v' to view this part) --]

  [-- Attachment #2 --]
  [-- Type: text/plain, Encoding: 7bit, Size: 0.1K --]
  Content-Type: text/plain; charset="us-ascii"
  MIME-Version: 1.0
  Content-Transfer-Encoding: 7bit
  Content-Disposition: inline

Since I cant control mail sent from their end, how can I setup mutt so I can
view this at my end? Im using Mutt 1.5.9i in Ubuntu Breezy with the default
mailcap. And I have the following in my muttrc:

auto_view text/enriched text/html text/vcard
alternative_order text/enriched text/plain text

Thanks,
(Continue reading)


Gmane