Re: Bug fix for IMAP::Admin perl module

2002-12-19 Thread Rob Siemborski
This has been committed to CVS, btw... Thanks, -Rob On Thu, 19 Dec 2002, Ron Roskens wrote: > > What you really want is this: > > return unless $d{-text} =~ s/^\"*\Q$mbx\E\"*\s+//; > > Using the \Q and \E disables regex expansions between them. > > On 19 Dec 2002, Edward Rudd wrote: > > > He

Re: Bug fix for IMAP::Admin perl module

2002-12-19 Thread Edward Rudd
Cool, Thanks... On Thu, 2002-12-19 at 10:26, Ron Roskens wrote: > What you really want is this: > > return unless $d{-text} =~ s/^\"*\Q$mbx\E\"*\s+//; > > Using the \Q and \E disables regex expansions between them. > > On 19 Dec 2002, Edward Rudd wrote: > > > Here's a quick hack to fix a b

Re: Bug fix for IMAP::Admin perl module

2002-12-19 Thread Ron Roskens
What you really want is this: return unless $d{-text} =~ s/^\"*\Q$mbx\E\"*\s+//; Using the \Q and \E disables regex expansions between them. On 19 Dec 2002, Edward Rudd wrote: > Here's a quick hack to fix a bug with the IMAP::Admin perl module in > cyrus IMAPD version 2.1.11 > on line 269: