problem with save-hook

1999-12-09 Thread Andrew O'Callaghan
Hi. I have tried to create a save-hook for a mailing list that I am on, but it doesn't seem to work. I may be confusing the way save-hook works though, so please correct me if I am way off. I created a hook in my .muttrc file: save-hook linuxsa +linux I assumed this was going to save any mail

Re: problem with save-hook

1999-12-10 Thread Robert Chien
On Fri, Dec 10, 1999 at 12:49:52PM +1030, Andrew O'Callaghan wrote: > Hi. > I have tried to create a save-hook for a mailing list that > I am on, but it doesn't seem to work. I may be confusing > the way save-hook works though, so please correct me if I > am way off. > > I created a hook in my .m

Re: problem with save-hook

1999-12-10 Thread David DeSimone
Andrew O'Callaghan <[EMAIL PROTECTED]> wrote: > > save-hook linuxsa +linux > > I assumed this was going to save any mail that contained "linux" in > the To: field, into my ~/mail/linux mailbox. Since you know you want to match "linuxsa" in the To: field, go ahead and use that as your pattern:

Re: problem with save-hook

1999-12-10 Thread David DeSimone
Robert Chien <[EMAIL PROTECTED]> wrote: > > Try this instead: > > save-hook '~C linuxsa*' +linux Is the '*' there so that you can match 'linuxs', 'linuxsa', 'linuxsaa'? That's what it will do for you. -- David DeSimone | "The doctrine of human equality reposes on this: [EMAIL PROTECTED]

Re: problem with save-hook

1999-12-10 Thread Robert Chien
On Fri, Dec 10, 1999 at 02:07:18PM -0600, David DeSimone wrote: > Robert Chien <[EMAIL PROTECTED]> wrote: > > > > Try this instead: > > > > save-hook '~C linuxsa*' +linux > > Is the '*' there so that you can match 'linuxs', 'linuxsa', 'linuxsaa'? > That's what it will do for you. Hmm... you