Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

Love makes the world go 'round, with a little help from intrinsic angular momentum.


computers / alt.usenet.offline-reader.forte-agent / Re: Request of the filter experts

SubjectAuthor
* Request of the filter expertsbart bard
`* Re: Request of the filter expertsRalph Fox
 `- Re: Request of the filter expertsgrontijb

1
Request of the filter experts

<o5kqeihcmte6dcq3vmpk1esf9ff903gaq5@4ax.com>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=5213&group=alt.usenet.offline-reader.forte-agent#5213

  copy link   Newsgroups: alt.usenet.offline-reader.forte-agent
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border-2.nntp.ord.giganews.com!nntp.giganews.com!Xl.tags.giganews.com!local-1.nntp.ord.giganews.com!news.giganews.com.POSTED!not-for-mail
NNTP-Posting-Date: Tue, 29 Aug 2023 02:04:25 +0000
From: bart bard@nowhere
Newsgroups: alt.usenet.offline-reader.forte-agent
Subject: Request of the filter experts
Date: Mon, 28 Aug 2023 21:04:26 -0500
Message-ID: <o5kqeihcmte6dcq3vmpk1esf9ff903gaq5@4ax.com>
User-Agent: ForteAgent/8.00.32.1272
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Lines: 13
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-5dfOjVB3PIIhvVeUGtuT7yQ1spbIn/rAz1brXGvDKNHguSCf5J+hcNnbqgbfVlxxQtkRG/2VzI5kuJl!eRWLbsrU+BMkBGgjbWBd0KV7OFWBALFH1QCVbgeWRU1KdBapNT3zPKUIJ5p0qNdLBdizbZs=
X-Complaints-To: abuse@giganews.com
X-DMCA-Notifications: http://www.giganews.com/info/dmca.html
X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers
X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly
X-Postfilter: 1.3.40
 by: bart bard@nowhere - Tue, 29 Aug 2023 02:04 UTC

I have not found the answer to this question in the help sections, and
I cannot find a manual online for Agent's expression language, so I'm
requesting input from the experts.

How can a filter be created to ignore the first 20 or so character in
subject text before beginning analysis of the string? I'm trying to
get past the subject line before filtering the character "]". Another
way to approach this would be to filter out only those strings with >1
instance of "]".

Can you help? Maybe I should approach an AI bot?

Thanks!

Re: Request of the filter experts

<8a8rei9tid4f24288ffub6p9onghei5tsg@4ax.com>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=5214&group=alt.usenet.offline-reader.forte-agent#5214

  copy link   Newsgroups: alt.usenet.offline-reader.forte-agent
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx10.iad.POSTED!not-for-mail
From: -rf-nz-@-.invalid (Ralph Fox)
Newsgroups: alt.usenet.offline-reader.forte-agent
Subject: Re: Request of the filter experts
Message-ID: <8a8rei9tid4f24288ffub6p9onghei5tsg@4ax.com>
References: <o5kqeihcmte6dcq3vmpk1esf9ff903gaq5@4ax.com>
User-Agent: ForteAgent/8.00.32.1272
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Face: 5gSW~"1=jGDo(BXfTrgL2BnC3tUB_\d0u@mP~wA1fvK`z8I[>1jXVVZ!N6ittQ.K<5!i3l> ==jcyAk.[B>kLg8TY{+8%edZ(le:ncPt%s8Pr?]QXNXO]0RC#V_zt|%>=bt>rZ2iCI^-yl7Be(]Ep> OfyI!3Bf|e
X-InReplyTo-Permalink: hxxp://al.howardknight.net/?ID=169329428300 hxxps://www.novabbs.com/computers/article-flat.php?id=4359&group=alt.usenet.offline-reader.forte-agent#4359
X-Comment: "bart bard" is a new nym, not seen in auorfa in the last 20 years. The post does not show up on GG.
Lines: 71
X-Complaints-To: abuse@easynews.com
Organization: Forte - www.forteinc.com
X-Complaints-Info: Please be sure to forward a copy of ALL headers otherwise we will be unable to process your complaint properly.
Date: Tue, 29 Aug 2023 19:42:09 +1200
X-Received-Bytes: 3465
 by: Ralph Fox - Tue, 29 Aug 2023 07:42 UTC

On Mon, 28 Aug 2023 21:04:26 -0500, bart bard wrote:

> I have not found the answer to this question in the help sections, and
> I cannot find a manual online for Agent's expression language, so I'm
> requesting input from the experts.
>
> How can a filter be created to ignore the first 20 or so character in
> subject text before beginning analysis of the string?

A. When you are using a regular expression filter, it is easy.

Say you are filtering subjects with the 3 characters "xxx"
anywhere in the subject. Whether "xxx" is a whole word or part
of a word. You would use a regular expression filter like this:

Subject: {xxx}

Now if you want to ignore he first 20 characters in the subject
text and look for "xxx" starting from the 21st character, you
would change the regular expression to this, with 20 dots before
the xxx:

Subject: {....................xxx}

This will match any 20 characters followed by xxx.
As per the help section [1], in a regular expression the dot '.'
matches any character.
The first dot can start matching anywhere in the subject, the
second dot can start matching anywhere after the first character,
the third dot can start matching anywhere after the first two
characters, ..., and the xxx can start matching anywhere after
the first 20 characters.

B. When you are using a word-based filter, it is harder. There is
no easy way to combine the regular expression 20 dots with a
word-based filter.

> I'm trying to
> get past the subject line before filtering the character "]".

You must already be using a regular expression filter. (Word-based
expressions cannot match "]".)

To ignore the first 20 characters in the subject, add 20 dots as above.

____
REFERENCES

[1] Help >> Index >> Expressions >> Regular Expressions Reference

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ QUOTE ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Rules for Writing Regular Expressions
...
* The . (dot) character. A dot matches any character.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ QUOTE ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

--
Kind regards
Ralph Fox

ζητεῖτε καὶ εὑρήσετε

Re: Request of the filter experts

<vnbsei1s7d8fb3ec2h9e57ojnn8di51stj@4ax.com>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=5216&group=alt.usenet.offline-reader.forte-agent#5216

  copy link   Newsgroups: alt.usenet.offline-reader.forte-agent
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!feeder.usenetexpress.com!tr1.iad1.usenetexpress.com!69.80.99.26.MISMATCH!Xl.tags.giganews.com!local-2.nntp.ord.giganews.com!news.giganews.com.POSTED!not-for-mail
NNTP-Posting-Date: Tue, 29 Aug 2023 17:47:37 +0000
From: grontijb@mailinator.com
Newsgroups: alt.usenet.offline-reader.forte-agent
Subject: Re: Request of the filter experts
Date: Tue, 29 Aug 2023 12:47:39 -0500
Message-ID: <vnbsei1s7d8fb3ec2h9e57ojnn8di51stj@4ax.com>
References: <o5kqeihcmte6dcq3vmpk1esf9ff903gaq5@4ax.com> <8a8rei9tid4f24288ffub6p9onghei5tsg@4ax.com>
User-Agent: ForteAgent/8.00.32.1272
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Lines: 68
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-x2PIGdtfyKHerNvhOjcBMOZRpl8xwFmQY84aM6FVHZ7XQnb1rsAOiZduk/8wKgu5/ZapBwCfdjH1ZJ5!ugY85nCHOxfWg0ZT+77nAcM+1OYEkQKVxVn6vPcMWnbswse+hkVOttnP49GW6bombwUOY6w=
X-Complaints-To: abuse@giganews.com
X-DMCA-Notifications: http://www.giganews.com/info/dmca.html
X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers
X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly
X-Postfilter: 1.3.40
 by: grontijb@mailinator.com - Tue, 29 Aug 2023 17:47 UTC

On Tue, 29 Aug 2023 19:42:09 +1200, Ralph Fox <-rf-nz-@-.invalid>
wrote:

>On Mon, 28 Aug 2023 21:04:26 -0500, bart bard wrote:
>
>> I have not found the answer to this question in the help sections, and
>> I cannot find a manual online for Agent's expression language, so I'm
>> requesting input from the experts.
>>
>> How can a filter be created to ignore the first 20 or so character in
>> subject text before beginning analysis of the string?
>
>
> A. When you are using a regular expression filter, it is easy.
>
> Say you are filtering subjects with the 3 characters "xxx"
> anywhere in the subject. Whether "xxx" is a whole word or part
> of a word. You would use a regular expression filter like this:
>
> Subject: {xxx}
>
> Now if you want to ignore he first 20 characters in the subject
> text and look for "xxx" starting from the 21st character, you
> would change the regular expression to this, with 20 dots before
> the xxx:
>
> Subject: {....................xxx}
>
> This will match any 20 characters followed by xxx.
> As per the help section [1], in a regular expression the dot '.'
> matches any character.
> The first dot can start matching anywhere in the subject, the
> second dot can start matching anywhere after the first character,
> the third dot can start matching anywhere after the first two
> characters, ..., and the xxx can start matching anywhere after
> the first 20 characters.
>
>
> B. When you are using a word-based filter, it is harder. There is
> no easy way to combine the regular expression 20 dots with a
> word-based filter.
>
>
>> I'm trying to
>> get past the subject line before filtering the character "]".
>
>
>You must already be using a regular expression filter. (Word-based
>expressions cannot match "]".)
>
>To ignore the first 20 characters in the subject, add 20 dots as above.
>
>____
>REFERENCES
>
>[1] Help >> Index >> Expressions >> Regular Expressions Reference
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ QUOTE ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Rules for Writing Regular Expressions
> ...
> * The . (dot) character. A dot matches any character.
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ QUOTE ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Yep, that's it! Thanks!

BB

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor