Re: Returned mail: see transcript for details

2009-03-05 Thread joshua
Can someone give a temporary solution?

On Fri, Mar 6, 2009 at 5:38 AM, Alfredo Quiroga-Villamil
wrote:

>
> Can someone please fix this. As Brian previously pointed out I am
> getting one of these failures everytime I post.
>
> Thanks in advance,
>
> Alfredo
>
> On Thu, Mar 5, 2009 at 4:25 PM, Mail Delivery Subsystem
>  wrote:
> > The original message was received at ...
> >
> >   The following addresses had permanent fatal errors 
> > 
> >  (553 5.7.1 From=grbounce-j2ddrguaaaboxexadd8yj4w11_qw7men=iraj23=
> lycos@googlegroups.com: To=iraj23: Mail is denied, message has been
> blocked by user's personal blacklist)
> >
> > Final-Recipient: RFC822; ira...@lycos.com
> > Action: failed
> > Status: 553 5.7.1 From=grbounce-j2ddrguaaaboxexadd8yj4w11_qw7men=iraj23=
> lycos@googlegroups.com: To=iraj23: Mail is denied, message has been
> blocked by user's personal blacklist
> >
> >
> > -- Forwarded message --
> > From: Alfredo Quiroga-Villamil 
> > To: cake-php@googlegroups.com
> > Date: Thu, 5 Mar 2009 16:25:37 -0500
> > Subject: Re: routes regex
> >
> > Btw, I think I might have missed a digit in that regex:
> >
> > /\w+-\w+-\w+-\d+-\+-\d+-\w+-\w+/
> >
> > Regards,
> >
> > Alfredo
> >
> >
> > On Thu, Mar 5, 2009 at 4:18 PM, Alfredo Quiroga-Villamil
> >  wrote:
> >> The code below is using perl; but take a look at the regex to match
> >> the given string. I didn't test this a whole lot; so double check it
> >> and run a few tests to see if it does what you want.
> >>
> >> use strict;
> >> use warnings;
> >>
> >> my $string  = 'asus-eee-pc-900-+-2-gb-ram';
> >>
> >> if ( $string =~ /\w+-\w+-\w+-\d+-\+-\w+-\w+/ ) {
> >>   print "yes it matched \n";
> >> } else {
> >>   print "no match \n";
> >> }
> >>
> >> Regards,
> >>
> >> Alfredo
> >> On Thu, Mar 5, 2009 at 3:12 PM, Alexandru Ciobanu <
> ics.cake...@gmail.com> wrote:
> >>>
> >>> Hi guys,
> >>>
> >>> I'm having some trouble with custom routes.
> >>>
> >>> I'm trying to match /asus-eee-pc-900-+-2-gb-ram/1521
> >>>
> >>> My line for this in routes.php is:
> >>> Router::connect('/product-details/:slug/:id', array('controller' =>
> >>> 'store', 'action' => 'view_product', 'id', 'slug'), array('id' =>
> >>> '[0-9]+','slug' => '[A-Za-z0-9_\-\.\,\+]+', 'pass' => array('id',
> 'slug')));
> >>>
> >>> For some reason "\+" (literal plus sign) is ignored.
> >>>
> >>> Can anyone shed some light?
> >>>
> >>> Thanks.
> >>>
> >>> >>
> >>>
> >>
> >
> > >
> >
> >
>
> >
>


-- 
Thanks
Joshua

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: Returned mail: see transcript for details

2009-03-05 Thread Alfredo Quiroga-Villamil

Can someone please fix this. As Brian previously pointed out I am
getting one of these failures everytime I post.

Thanks in advance,

Alfredo

On Thu, Mar 5, 2009 at 4:25 PM, Mail Delivery Subsystem
 wrote:
> The original message was received at ...
>
>   The following addresses had permanent fatal errors 
> 
>  (553 5.7.1 
> from=grbounce-j2ddrguaaaboxexadd8yj4w11_qw7men=iraj23=lycos@googlegroups.com:
>  To=iraj23: Mail is denied, message has been blocked by user's personal 
> blacklist)
>
> Final-Recipient: RFC822; ira...@lycos.com
> Action: failed
> Status: 553 5.7.1 
> from=grbounce-j2ddrguaaaboxexadd8yj4w11_qw7men=iraj23=lycos@googlegroups.com:
>  To=iraj23: Mail is denied, message has been blocked by user's personal 
> blacklist
>
>
> -- Forwarded message --
> From: Alfredo Quiroga-Villamil 
> To: cake-...@googlegroups.com
> Date: Thu, 5 Mar 2009 16:25:37 -0500
> Subject: Re: routes regex
>
> Btw, I think I might have missed a digit in that regex:
>
> /\w+-\w+-\w+-\d+-\+-\d+-\w+-\w+/
>
> Regards,
>
> Alfredo
>
>
> On Thu, Mar 5, 2009 at 4:18 PM, Alfredo Quiroga-Villamil
>  wrote:
>> The code below is using perl; but take a look at the regex to match
>> the given string. I didn't test this a whole lot; so double check it
>> and run a few tests to see if it does what you want.
>>
>> use strict;
>> use warnings;
>>
>> my $string  = 'asus-eee-pc-900-+-2-gb-ram';
>>
>> if ( $string =~ /\w+-\w+-\w+-\d+-\+-\w+-\w+/ ) {
>>   print "yes it matched \n";
>> } else {
>>   print "no match \n";
>> }
>>
>> Regards,
>>
>> Alfredo
>> On Thu, Mar 5, 2009 at 3:12 PM, Alexandru Ciobanu  
>> wrote:
>>>
>>> Hi guys,
>>>
>>> I'm having some trouble with custom routes.
>>>
>>> I'm trying to match /asus-eee-pc-900-+-2-gb-ram/1521
>>>
>>> My line for this in routes.php is:
>>> Router::connect('/product-details/:slug/:id', array('controller' =>
>>> 'store', 'action' => 'view_product', 'id', 'slug'), array('id' =>
>>> '[0-9]+','slug' => '[A-Za-z0-9_\-\.\,\+]+', 'pass' => array('id', 'slug')));
>>>
>>> For some reason "\+" (literal plus sign) is ignored.
>>>
>>> Can anyone shed some light?
>>>
>>> Thanks.
>>>
>>> >>
>>>
>>
>
> >
>
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---