TB files

2006-04-06 Thread Günter Minnerup
Where can I find a detailed description of what the various files which TB 
sprays around the hard disk actually do? Some, like the .TBB and .TBI, and also 
.ADR, are pretty obvious, but most others aren't.

-- 
Regards,
Günter  

mailto:[EMAIL PROTECTED]
Using The Bat! Version 3.65.03
Windows XP Version 5 Build 2600



Current version is 3.71.03 | 'Using TBUDL' information:
http://www.silverstones.com/thebat/TBUDLInfo.html


Re: TB files

2006-04-06 Thread Roelof Otten
Hallo Günter,

On Thu, 6 Apr 2006 18:19:44 +1000GMT (6-4-2006, 10:19 +0100, where I
live), you wrote:

GM Where can I find a detailed description of what the various files
GM which TB sprays around the hard disk actually do? Some, like the
GM .TBB and .TBI, and also .ADR, are pretty obvious, but most others aren't.

They're described in the tb-wiki.
http://www.pcwize.com/thebat/tbudp/tiki-index.php?page=Program%20Folders%20and%20Files

-- 
Groetjes, Roelof

WINDOWS is to computing what Etch-a-Sketch is to art.

The Bat! 3.72.05 (Beta)
Windows XP 5.1 Build 2600 Service Pack 2
1 pop3 account, server on LAN
OTFE enabled
P4 3GHz
2 GB RAM


pgpjF2Eqg4G65.pgp
Description: PGP signature

Current version is 3.71.03 | 'Using TBUDL' information:
http://www.silverstones.com/thebat/TBUDLInfo.html

Implementing a 'Scoring system' with TB filters

2006-04-06 Thread MAU
Hello all,

I'm xposting to TBBeta and TBUDL because not everyone is on both lists.

Last Sunday, in TBUDL, George M. Menegakis expressed his wish for a
Scoring System for TB in his mid:[EMAIL PROTECTED]
and some others agreed it would be a nice feature to have in TB.

I thought such a system could somewhat easily be implemented with a few
filters taking advantage of the 'user parameters' in the Filter System.
I tried and it didn't work. As I later found out there was a problem
with the syntax for using parameters with the %Calc macro. Well, this
has been corrected in the latest Beta released today (v3.72.07) and my
'proof of concept' for a scoring system now works.

It's a simple example with two filter trees:

Score
  Test for TEN
  Test for TWENTY
  See if Score = 10
  See if Score = 20

Act on Score
  Act on Score = 10
  Act on Score = 20

What this simple 'proof of concept' does is to see if the words TEN or
TWENTY appear in the Subject of an incoming message and will add 10 to
Score if either one appears. So, a message with only one of the words
will get a score of 10 and if both appear the score will be 20.

What the action filters do is 'Flag' the message if the score is = 10 and
'Mark as Parked and Read if score = 20. So, a message with only one of
the words will be Flagged and one with both words will be Flagged,
Parked and Read.

I make use of the %Calc and %UserParams macros. 'Calc' is well described
in TB's Help and what the 'UserParams' does is return the value of a
user parameter. Its syntax is: %UserParameter(ParameterName).

If you want to see more detail or even test this 'system', copy each of
the filter trees included below and paste them in your Incoming Filters.

 TB! Message Filter 
beginFilter
UID: [CCD2333A.01C656A2.04C95E3E.567F533A]
Name: Score
Filter: {\0D\0A\20`21\0D\0A}
UserParam param Score value 0
IsContinue
IsActive
Ignore
endFilter
1
beginFilter
UID: [1FA98860.01C656A3.325F741C.3CA43891]
Name: Test\20for\20TEN
Filter: {\0D\0A\20`2`0`TEN\0D\0A}
UserParam param Score value %Calc\3D\27%UserParams(\22Score\22)+10\27
IsContinue
IsActive
Ignore
endFilter
1
beginFilter
UID: [C231F47E.01C656A7.0F159CB5.01E5A58B]
Name: Test\20for\20TWENTY
Filter: {\0D\0A\20`2`0`TWENTY\0D\0A}
UserParam param Score value %Calc\3D\27%UserParams(\22Score\22)+10\27
IsContinue
IsActive
Ignore
endFilter
1
beginFilter
UID: [5D3DC4E8.01C656A3.2CEC20D7.684C0437]
Name: See\20if\20Score\20\3D10
Filter: {\0D\0A\20`21\0D\0A}
UserParam param 10orGreater value %Calc\3D\27%UserParams(\22Score\22)\3D10\27
IsContinue
IsActive
Ignore
endFilter
1
beginFilter
UID: [FEBD8C00.01C656A7.7F386BBB.558B4CAE]
Name: See\20if\20Score\20\3D\2020
Filter: {\0D\0A\20`21\0D\0A}
UserParam param 20orGreater value %Calc\3D\27%UserParams(\22Score\22)\3D20\27
IsContinue
IsActive
Ignore
endFilter


 TB! Message Filter 
beginFilter
UID: [858997C2.01C659BB.74520C5A.4ED129C6]
Name: Act\20on\20Score
Filter: {\0D\0A\20`27`10orGreater`0`1\0D\0A1`27`20orGreater`0`1\0D\0A}
IsContinue
IsActive
Ignore
endFilter
1
beginFilter
UID: [FCAA19F2.01C659B7.696B6C6D.4671D625]
Name: Act\20on\20Score\20\3D\2010
Filter: {\0D\0A\20`27`10orGreater`0`1\0D\0A}
Flag
IsContinue
IsActive
Ignore
endFilter
1
beginFilter
UID: [578FC132.01C659B8.77D908C0.0DC8AFC5]
Name: Act\20on\20Score\20\3D\2020
Filter: {\0D\0A\20`27`20orGreater`0`1\0D\0A}
MarkRead
Park
IsContinue
IsActive
Ignore
endFilter


*NOTE 1: If instead of comparing for = you only needed to compare for
=, the 'See if Score' sub-filters would not be needed as you could
directly check the value of 'Score' in the conditions of the 'Act on
Score' sub-filters. They would not be needed either if in filter
conditions 'user parameters' could also be checked for 'greater than'
and 'less than' and not just for 'equal to' and 'not equal to'.

**NOTE 2: If instead of taking actions in filters you wanted to use Score
in Virtual Folders, you can make use of the 'Set Memo' action in filters
to pass the score and then check Memo in your VF.

REMEMBER: This will only work with v3.72.07 (and hopefully with newer
ones).

Enjoy! :)

-- 
Best regards,

Miguel A. Urech (El Escorial - Spain)
Using The Bat! v3.72.07 (Beta) on Windows XP 5.1 Service Pack 2




Current version is 3.71.03 | 'Using TBUDL' information:
http://www.silverstones.com/thebat/TBUDLInfo.html


Re: Implementing a 'Scoring system' with TB filters

2006-04-06 Thread MAU
Hello MAU,

snipped
 REMEMBER: This will only work with v3.72.07 (and hopefully with newer
 ones).

***NOTE 3: I didn't try Common filters because sub-filters may not work.
See BT report https://www.ritlabs.com/bt/view.php?id=4021

-- 
Best regards,

Miguel A. Urech (El Escorial - Spain)
Using The Bat! v3.72.07 (Beta) on Windows XP 5.1 Service Pack 2




Current version is 3.71.03 | 'Using TBUDL' information:
http://www.silverstones.com/thebat/TBUDLInfo.html


Renaming Inbox

2006-04-06 Thread Larry Wing
Is it possible to rename the Inbox for each account?

I like to use the folder tabs and I have several Inbox's and it would
be nice to be able to rename to see which account they are associated
with.

Thanks,
Larry



-- 
TheBat! 3.71.03
Windows XP



Current version is 3.71.03 | 'Using TBUDL' information:
http://www.silverstones.com/thebat/TBUDLInfo.html


Re: Renaming Inbox

2006-04-06 Thread Thomas Fernandez
Hello Larry,

On Thu, 6 Apr 2006 18:56:20 -0700 GMT (07/04/2006, 08:56 +0700 GMT),
Larry Wing wrote:

LW Is it possible to rename the Inbox for each account?

No. If you rename it, TB will create a new Inbox upon restart.

LW I like to use the folder tabs and I have several Inbox's and it would
LW be nice to be able to rename to see which account they are associated
LW with.

Which is exactly the reason I consider the Unread tab unusable. A good
idea, but due to half-implementation just a waste of programming time.
The account name should be shown in any subset of folders.

I'll bring this up again in a few days; I don't remember whether I
created a wish or a bugreport at the time.

-- 

Cheers,
Thomas.

I saw a woman wearing a sweatshirt with 'Guess' on it. I said,
'Thyroid problem?'
http://thomas.fernandez.hat-gar-keine-homepage.de/

Message reply created with The Bat! 3.71.03
under Windows XP 5.1 Build 2600 Service Pack 2






Current version is 3.71.03 | 'Using TBUDL' information:
http://www.silverstones.com/thebat/TBUDLInfo.html


Re: Renaming Inbox

2006-04-06 Thread Larry Wing




TF Hello Larry,

TF On Thu, 6 Apr 2006 18:56:20 -0700 GMT (07/04/2006, 08:56 +0700 GMT),
TF Larry Wing wrote:

LW Is it possible to rename the Inbox for each account?

TF No. If you rename it, TB will create a new Inbox upon restart.

LW I like to use the folder tabs and I have several Inbox's and it would
LW be nice to be able to rename to see which account they are associated
LW with.

TF Which is exactly the reason I consider the Unread tab unusable. A good
TF idea, but due to half-implementation just a waste of programming time.
TF The account name should be shown in any subset of folders.

TF I'll bring this up again in a few days; I don't remember whether I
TF created a wish or a bugreport at the time.



Thanks.  I've found VF as a workaround but still agree that it needs
account name diplayed with Inbox.

Larry

-- 
TheBat! 3.71.03
Windows XP



Current version is 3.71.03 | 'Using TBUDL' information:
http://www.silverstones.com/thebat/TBUDLInfo.html