Re: [squid-users] correct regular expression to use to capture all

2023-07-08 Thread Alex Rousskov
On 7/8/23 17:49, robert k Wild wrote: So will this (^|\.)redshift3d\.com$ I know it will match Blah.redshift3d.com and redshift3d.com But what about Blah.Blah.redshift3d.com It will also match, for the same set of reasons. FWIW, I am worried that you keep asking about specific basic

Re: [squid-users] correct regular expression to use to capture all

2023-07-08 Thread robert k Wild
So will this (^|\.)redshift3d\.com$ I know it will match Blah.redshift3d.com and redshift3d.com But what about Blah.Blah.redshift3d.com On Sat, 8 Jul 2023, 22:32 Alex Rousskov, wrote: > On 7/8/23 06:14, Stuart Henderson wrote: > > On 2023-07-07, robert k Wild wrote: > >>

Re: [squid-users] correct regular expression to use to capture all

2023-07-08 Thread Alex Rousskov
On 7/8/23 06:14, Stuart Henderson wrote: On 2023-07-07, robert k Wild wrote: --===6398075081121841451== Content-Type: multipart/alternative; boundary="a03dcc05ffeb4428" --a03dcc05ffeb4428 Content-Type: text/plain; charset="UTF-8" hi all, i know ive been

Re: [squid-users] correct regular expression to use to capture all

2023-07-08 Thread robert k Wild
True but I don't want to create two ACL lists, one for "ssl name" and one for "ssl name regex" On Sat, 8 Jul 2023, 12:57 Matus UHLAR - fantomas, wrote: > On 07.07.23 21:13, robert k Wild wrote: > >i know ive been talking about this before but i want to understand why i > >cant use this regex

Re: [squid-users] correct regular expression to use to capture all

2023-07-08 Thread Matus UHLAR - fantomas
On 07.07.23 21:13, robert k Wild wrote: i know ive been talking about this before but i want to understand why i cant use this regex (^|.*)redshift3d.com$ instead i have to use this (^|\.)redshift3d.com$ OR (^|\.)redshift3d\.com$ for strings www.redshift3d.com activate.redshift3d.com

Re: [squid-users] correct regular expression to use to capture all

2023-07-08 Thread Stuart Henderson
On 2023-07-07, robert k Wild wrote: > --===6398075081121841451== > Content-Type: multipart/alternative; boundary="a03dcc05ffeb4428" > > --a03dcc05ffeb4428 > Content-Type: text/plain; charset="UTF-8" > > hi all, > > i know ive been talking about this before but