Re: Help on rexexp

2002-03-21 Thread Dirk Heiser

Hi HORA/Lionnel_FERRATON,

On Thu, 21 Mar 2002 16:53:40 +0100, you wrote:

 I want to take a text beetween 2 words (say START and END).

 %SETPATTREGEXP=(?ism)(.*)(START)(.*)(END)(.*)

 All is fine if i have only one END in my text but if thers is two or
 more, i have all the text beetween START and the last END

 How can i tell the bat to stop at the first 'END' 

Try

(?ism)(.*)(START)(.*?)(END)(.*)
^

BTW: If you need only the text between START/END you could also write:

(?ism).*START(.*?)END.*
^
Than the result are in subpattern 1

cu,
 Dirk
-- 
Using The Bat! 1.54 RC/1 (S/N 12A1F196 / Educational) under Windows 95 4.0 Build   
B


Current Ver: 1.53d
FAQ: http://faq.thebat.dutaint.com 
Unsubscribe: mailto:[EMAIL PROTECTED]
Archives   : http://tbudl.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
TBTech List: mailto:[EMAIL PROTECTED]




Re: Wish list

2002-02-08 Thread Dirk Heiser

Hi Marck,

On Fri, 8 Feb 2002 17:17:55 +, you wrote:

 Well now when I go back and add text things wrap fine, so
 everything is great until I hit return/enter and it doesn't
 bring me to a new line.

 You need two new lines. Since this is plain text, the only way to
 delimit two distinct paragraphs is by have a clear, blank line between
 them.

Sorry but you are wrong ;-) if you are in TB!s editor the text is
_not_ plain text, its some binary data in the PCs memory.

I see _no_ reason why it should not possibly to have soft and hard
line breaks. Every other plain text editor i know do it also, only the
one in TB! does it not.

So what's wrong with: You type your mail and TB! do on the fly soft
line breaks at the 72 column (or whatever you set in options), if you
hit enter the editor to do an hard line break. Then if the mail are
send TB! could turn all soft line break to hard line breaks.


The way the editor now work are simply crazy (_not_ IMHO) and I am do
not know any other editor that do such stupid thinks.

 Because a single new line doesn't denote a new pargraph. Sometimes I
 want to type a bullet list so I have to turn Auto-Format off. There's
 a control key combo for that - it's simple enough to remember -
 Ctrl-Shift-F.

 o  Typing paragraph data?Turn it on.
 o  Typing lists? Turn it off.
 o  Amending a paragraph? Turn it on.

Well with an real editor its also possible to write normal text and
bullet list without always switch the options.

 expecting too much of a plain text format. Plain text only has hard

And again, how does the editor handle the stuff internally are not
related to the output text format. For Example even in an Plain text
mail TB! show me different colors for the quoted text (yes its
possible because internally you do not use plain text) :-)

 It has been suggested in the past that the TB programmers implement
 some system of soft returns. I've always felt that to be dangerous. At

Well i noticed no dangerous thinks with my other plain text editors.

 least with the present system, what we type is what will be sent. No
 behind-the-scenes formatting for us TB users - oh no! ;-).

There are no behind the user formatting with soft returns. Only the
convert from soft to hard. But the user see this while writing.

 FWIW, the TB editor *does* follow a standard. It's a very old one.

*ROTFL* Not an bug or missing feature only an old standard.

 It's based on the old MS-DOS SideKick editor, which itself drew from
 the old WordStar standard. These standards are still in use in most
 Borland IDE editors (with tweaks and additions).

Well in an IDE editor you need other features as in an editor for
email. In programming you does no wan't line breaks at 72 chars.

And BTW i not buy my P200 to work with the same editor an 8086 system
have used because of its limited power.

SCNR,
 Dirk
-- 
Using The Bat! 1.54 Beta/36 (S/N 12A1F196 / Educational) under Windows 95 4.0 Build 
  B

-- 

Archives   : http://tbudl.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
TBTech List: mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]
Latest Vers: 1.53d
FAQ: http://faq.thebat.dutaint.com 




Re: Printing the table (index) of messages

2001-09-21 Thread Dirk Heiser

Hi Thomas,

On Fri, 21 Sep 2001 14:04:31 +0800, you wrote:

 I need a listing of messages for each folder, but I don't
 need the message bodies. Any ideas?

DH 1. IIRC there are a screenshot utility called HyperSnap (IIRC
DH Shareware) that allow screenshots of contents from windows that
DH contain scroll bars by scrolling that windows and do an complete
DH screenshot of this. So you could select the pane contain the messages

 The way you decribe that software, I don't think it would work,
 because the message list is neither a wondow nor a frame, but a panel.

Its all the same :-)

OK, speak more technical. With this utility you could select every
control that owns a Handle. The utility make a Snap Shout of this
control and (if the option checked and the control have a Scroll Bar)
scroll it down make a new Snap Shot, scroll it down  at the end it
assemble the Shout together to an large bitmap.

So it should work for all Windows controls (EditBox, ListBox,
TreeView...) and all Controls based on a Windows Control. Only if the
Application Draw all the stuff itself and also draw its own scrollbar
and handle this, then the Utility fail. But i guess in TB! all
Controls are based in some way on an Windows Control.

 My idea would be an entry to the wish list. It should be fairly easy
 to write a modul to print out the message list.

Hmmm, please let me vote for fixing the current Bugs first ;-)

cu,
 Dirk

-- 
Using The Bat! 1.54 Beta/8 (S/N 12A1F196 / Educational) under Windows 95 4.0 Build 
  B

-- 

Archives   : http://tbudl.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
TBTech List: mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]
Latest Vers: 1.53d




Re: Printing the table (index) of messages

2001-09-20 Thread Dirk Heiser

Hi Joseph,

On Thu, 20 Sep 2001 17:58:39 -0500, you wrote:

 Is there any way to print the table, or index, of messages from a
 folder, i.e., the pane that shows the sender, recipient, subject,
 and date? I need a listing of messages for each folder, but I don't
 need the message bodies. Any ideas?

1. IIRC there are a screenshot utility called HyperSnap (IIRC
Shareware) that allow screenshots of contents from windows that
contain scroll bars by scrolling that windows and do an complete
screenshot of this. So you could select the pane contain the messages
for the srceenshout and get a large bitmap of all the messages
headers that you could print.

2. There are exists scripts that convert UNIX mailboxes (you could
export the whole folder to a UNIX mailbox with TB!) to an set of HTML
pages (like the Archive for this group). Then you could print the
first page. But i do not know where to find a converter and this are
may slow for large folders.

cu,
 Dirk

-- 
Using The Bat! 1.54 Beta/8 (S/N 12A1F196 / Educational) under Windows 95 4.0 Build 
  B

-- 

Archives   : http://tbudl.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
TBTech List: mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]
Latest Vers: 1.53d




Re: ANN: RegExTest 0.3beta

2001-07-02 Thread Dirk Heiser

Hi David,

On Fri, 29 Jun 2001 18:52:09 +0200, you wrote:

   I installed it but I doesn't show up in the help dialog. I copied
   the 'RegExTest.dll' in the TB! directory and and I inserted this
   ':Tab RegExTest=RegExTest.dll' into 'the_bat.cnt'.

   What am I doing wrong?

Do you have the HTML Help installed and enabled? Work it if you call
rundll32 RegExTest.dll,Run ?

cu,
 Dirk

-- 
Using The Bat! 1.53bis (S/N 12A1F196 / Educational) under Windows 95 4.0 Build   B
-- 
__
Archives   : http://tbudl.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
TBTech List: mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]

You are subscribed as : archive@jab.org





Re: ANN: RegExTest 0.3beta

2001-07-02 Thread Dirk Heiser

Hi David,

On Fri, 29 Jun 2001 18:51:58  +0100, you wrote:

 A good start, but have you tried to set all the options to on I can
 get the error [Perlre: unknown optionbit(s) set]. I might be able to

This option box allow you to set all flags. But it seams that some
combinations are not allowed by the PCRE library and the library
report this error. I do not know the meaning of the last options, i
simply provide a GUI for all the options the PCRE library provide.

cu,
 Dirk

-- 
Using The Bat! 1.53bis (S/N 12A1F196 / Educational) under Windows 95 4.0 Build   B
-- 
__
Archives   : http://tbudl.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
TBTech List: mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]

You are subscribed as : archive@jab.org





ANN: RegExTest 0.3beta

2001-06-29 Thread Dirk Heiser

3th try to post to this group, the previous never get it to the list :-(
---

Hi TB! users,

I want let you know that I have created a little program to
create/modify/study Regular Expressions. It's simply an input filed
for the regular expression and and input field for the sample text. If
you modify one of these the result (the subpatterns or the error
message) are immediately shown.

So you could play easy with your ideas and could test the regex with
different textes and see how this work.

The program are integrated into the TB! help system and available by
clicking Help - Help Topics - RegExTest.

You could found it at:
http://www.Dirk-Heiser.de/RegExTest/RegExTest_V0.3beta.zip
(This are freeware without source)

Follow the instructions in the included readme. And note this are beta
software.

cu,
 Dirk

-- 
The Bat! (1.53bis) Educational [12A1F196]
OS: Windows 95 4.0 Build   B
-- 
__
Archives   : http://tbudl.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
TBTech List: mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]

You are subscribed as : archive@jab.org





Re: Clean up in reply: macros...

2001-06-20 Thread Dirk Heiser

Hi --pb,

On Wed, 20 Jun 2001 14:19:09 -0400, you wrote:

  I am subscribed to a list and at the bottom of every message this
  thing appears:

 begin ---\ not included

 --- Vortex Diehards
 Website http://www.VortexDiehards.com
 clan forum password: x

[snip]

 end ---\ not included

 Now, is there a way to make sure that this disappears when I reply?

Try this in your reply template:
%QUOTES='%SETPATTREGEXP=(?i)\A(.*?)--- Vortex Diehards\nWebsite 
http://www.VortexDiehards.com\nclan forum password: x%REGEXPMATCH=%TEXT'

HTH,
 Dirk

-- 
Using The Bat! 1.53bis (S/N 12A1F196 / Educational) under Windows 95 4.0 Build   B

-- 
__
Archives   : http://tbudl.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
TBTech List: mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]

You are subscribed as : [EMAIL PROTECTED]





Re: sound - click ?

2001-01-17 Thread Dirk Heiser

Hi Stojan,

On Wed, 17 Jan 2001 10:47:21 +0100, you wrote:

SR Is there a way to make TheBat! produce a click via the computer
SR speaker rather than via sound card when a new mail arrives to an
SR account ?

If there are no Sound card you can try calling:
rundll32 user,messagebeep
This should create s short click sound.

If this not work you can try my little app that i have written for my
own use:
http://www.Dirk-Heiser.de/dl/Melody.zip
call it without parameters to see the list of options.

It may not work with NT (i never tested it on another PC) but maybe it
help you, try it.

cu,
 Dirk

-- 
Using The Bat! 1.49 (S/N 12A1F196 / Educational) under Windows 95 4.0 Build   B

-- 
--
View the TBUDL archive at http://tbudl.thebat.dutaint.com
To send a message to the list moderation team double click here:
   mailto:[EMAIL PROTECTED]
To Unsubscribe from TBUDL, double click here and send the message:
   mailto:[EMAIL PROTECTED]
--

You are subscribed as : archive@jab.org





Re: address book search

2000-11-06 Thread Dirk Heiser

Hi Hendrik,

On Mon, 6 Nov 2000 17:43:08 +0100, you wrote:

HT But now I have a problem with the search function in my
HT addressbook. I opened the search window, typed a name an ticked my
HT private addressbook. When I hit the Start-Button nothing happens
HT except the Start an Stop-buttons become (in-)active. Has anybody
HT else encountered this problem?

Yes, I guess that is only for Address Books associated with a LDAP
Server and _not_ for local Address Books.

cu,
 Dirk

-- 
Using The Bat! 1.48 Beta/3 (S/N 12A1F196 / Educational) under Windows 95 4.0 Build 
  B

-- 
--
View the TBUDL archive at http://tbudl.thebat.dutaint.com
To send a message to the list moderation team double click here:
   mailto:[EMAIL PROTECTED]
To Unsubscribe from TBUDL, double click here and send the message:
   mailto:[EMAIL PROTECTED]
--

You are subscribed as : archive@jab.org





Re: Regex Problem

2000-11-01 Thread Dirk Heiser

Hi Dirk,

:-)

On Wed, 1 Nov 2000 00:31:49 +0100, you wrote:

[Subject Cleaning Regex]

DH This all work fine for all cases i tryed, but if i use a Subjekt like
DHFwd: Test
DH I get
DH   Re: : Test
DH  ^^

Thank for all replaying to this.

The ":?\s*" Work around Work fine. Now i am using this Regex for my
Replays:

one line
%SUBJECT="%SETPATTREGEXP=""(?i)\A(?::?\s*)(?:(?:\s*(?:fwd|re|aw|fw|antwort|wg|forw)(?:\[\d*\])?:\s*)|(?:\s*\[(?:Palm|palmcomp)\]\s*))*(.*?)(?:(?:\s*\((?:was|war):.*\)\s*)|(?:\((?:PGP|S/MIME)
 Decrypted\)))*\z""%REGEXPMATCH=""%OSUBJ"""
/one line

This work fine in all cases for me.



I found out that the Problem that need this Work around are a Bug in
the %SUBJ and the %OSUBJ Macros. If the Subject Contain a "Fwd:" this
Macros return _not_ a Valid result. i.e. a Subject Like "Fwd: Test"
Return ": Test".

cu,
 Dirk

-- 
Using The Bat! 1.48 Beta/1 (S/N 12A1F196 / Educational) under Windows 95 4.0 Build 
  B

-- 
--
View the TBUDL archive at http://tbudl.thebat.dutaint.com
To send a message to the list moderation team double click here:
   mailto:[EMAIL PROTECTED]
To Unsubscribe from TBUDL, double click here and send the message:
   mailto:[EMAIL PROTECTED]
--

You are subscribed as : archive@jab.org





Regex Problem

2000-10-31 Thread Dirk Heiser

Hi there,

To Clean up Subjects like this:
   Antwort: [Palm] Re: [Palm] fwd: [palm] re: new Subject (was: old s)
   (yes i really received Subjects like this :-) )
To this:
   Re: new Subject

I used one of the Regex i found here and tryed to modify it.

I use a Quick Template Named "INC_MYSUBJEKT" that contain this:

ONELINE
%SUBJECT="%SETPATTREGEXP=""(?i)\A(?:(?:\s*(?:fwd|re|aw|fw|antwort|wg|forw)(?:\[\d*\])?:\s*)|(?:\s*\[(?:Palm|palmcomp)\]\s*))*(.*?)(?:(?:\s*\((?:was|war):.*\)\s*)|(?:\(PGP
 Decrypted\)))*\z""%REGEXPMATCH=""%OSUBJ"""
/ONELINE

In my Replay Templates i use:

  %QINCLUDE="INC_MYSUBJEKT"%SUBJECT="Re: %SUBJ"
  or
  %QINCLUDE="INC_MYSUBJEKT"%SUBJECT="Re: [Palm] %SUBJ"
  in the Mailing List (inserting this [Palm] Prefix) Templates


This all work fine for all cases i tryed, but if i use a Subjekt like

   Fwd: Test

I get

  Re: : Test
 ^^

I only have this Problem if the Subjekt contain a "Fwd", all other
Prefixes work fine.

If i try this Regex with another Program (XNews) that use also Regular
Expresions this Regex work fine with cutting of the "Fwd" String.


Is the a Bug in TB! or is there a Problem with my Regex (different
default settings)?

cu,
 Dirk

-- 
The Bat! (1.48 Beta/1) Educational [12A1F196]
OS: Windows 95 4.0 Build   B
-- 
--
View the TBUDL archive at http://tbudl.thebat.dutaint.com
To send a message to the list moderation team double click here:
   mailto:[EMAIL PROTECTED]
To Unsubscribe from TBUDL, double click here and send the message:
   mailto:[EMAIL PROTECTED]
--

You are subscribed as : archive@jab.org





Re: The bat in the system tray at star-up ?

2000-10-09 Thread Dirk Heiser

Hi Frédéric,

On Mon, 9 Oct 2000 18:31:44 -0400, you wrote:

FM But how can I tell in to minimize automatically ?

Use the "/MINIMIZE" Command Line Parameter.

cu,
 Dirk

-- 
Using The Bat! 1.47 Beta/7 (S/N 12A1F196 / Educational) under Windows 95 4.0 Build 
  B



--
--
View the TBUDL archive at http://tbudl.thebat.dutaint.com
To send a message to the list moderation team double click here:
   mailto:[EMAIL PROTECTED]
To Unsubscribe from TBUDL, double click here and send the message:
   mailto:[EMAIL PROTECTED]
--

You are subscribed as : archive@jab.org





Re: Importing addresses from a database

2000-10-09 Thread Dirk Heiser

Hi Thorvald,

On Mon, 9 Oct 2000 15:12:29 +0200, you wrote:

TN I have done a CSV-file by hand for testing purposes (with EXCEL) and
TN have used the fieldnames of TB for my database fields. The import will
TN not function; TB only displays a warning: "No addresses have been
TN imported."

Have you try to export a example first (from TB! Addressbook) to see
how TB! want the format?

cu,
 Dirk

-- 
Using The Bat! 1.47 Beta/7 (S/N 12A1F196 / Educational) under Windows 95 4.0 Build 
  B

-- 
--
View the TBUDL archive at http://tbudl.thebat.dutaint.com
To send a message to the list moderation team double click here:
   mailto:[EMAIL PROTECTED]
To Unsubscribe from TBUDL, double click here and send the message:
   mailto:[EMAIL PROTECTED]
--

You are subscribed as : archive@jab.org





Re: Inquiries of a neophyit

2000-07-31 Thread Dirk Heiser

Hi Marek,

On Mon, 31 Jul 2000 19:57:18 +0200, you wrote:

MM Problem is, OE export to CVS, but values are separated by semi-colon
MM (";") characters and TB import CVS as values separated by commas (",").

Check you local settings in the control panel of Windows. I know Excel
use for CSV Files the ";" if the number Decimal Sepperator is ","
(e.g. 1,5). If you select the "." as the decimal sepperator Excel use
the "," for CVS Files. Perhaps it is the same in OE. Perhaps it need a
reboot after the change.

cu,
 Dirk

-- 
Using The Bat! 1.46 Beta/1 (S/N 12A1F196 / Educational) under Windows 95 4.0 Build 
  B



-- 
--
View the TBUDL archive at http://tbudl.thebat.dutaint.com
To send a message to the list moderation team double click here:
   mailto:[EMAIL PROTECTED]
To Unsubscribe from TBUDL, double click here and send the message:
   mailto:[EMAIL PROTECTED]
--

You are subscribed as : archive@jab.org





Re: Importing mail from Outlook (not Express!)

2000-07-21 Thread Dirk Heiser

Hi Ming-Li,

On Thu, 20 Jul 2000 07:58:43 -0700, you wrote:

ML This is very strange. I imported all my mail from OE to The Bat not
ML too long ago (around late May or early June), and I'm sure all the
ML headers are imported intact. (I've just checked some of my old mail
ML to be sure.)

ML Are you sure those header fields aren't ripped elsewhere (e.g., in
ML the process from Outlook to OE)?

Perhaps, as i said i do this import a few month ago, by convert from
Outlook to OE to TB!.

But this is that was Christian in the first mail ask. So perhaps he
can expect the same trouble.

cu,
 Dirk

-- 
Using The Bat! 1.45 Beta/11 (S/N 12A1F196 / Educational) under Windows 95 4.0 Build 
  B

-- 
--
View the TBUDL archive at http://tbudl.thebat.dutaint.com
To send a message to the list moderation team double click here:
   mailto:[EMAIL PROTECTED]
To Unsubscribe from TBUDL, double click here and send the message:
   mailto:[EMAIL PROTECTED]
--

You are subscribed as : archive@jab.org





Re: Corrupt TBI file -- should I use a backup?

2000-07-21 Thread Dirk Heiser

Hi Marck,

On Fri, 21 Jul 2000 17:32:18 +0100, you wrote:

MDP .tbi  files  will  recreate on-the-fly if ever any are missing. If you
MDP are doubtful of the integrity of any of these - delete them. They will
MDP be rebuilt.

And the Flagging, color groups, memos, ... are lost!?


cu,
 Dirk

-- 
Using The Bat! 1.45 Beta/11 (S/N 12A1F196 / Educational) under Windows 95 4.0 Build 
  B



-- 
--
View the TBUDL archive at http://tbudl.thebat.dutaint.com
To send a message to the list moderation team double click here:
   mailto:[EMAIL PROTECTED]
To Unsubscribe from TBUDL, double click here and send the message:
   mailto:[EMAIL PROTECTED]
--

You are subscribed as : archive@jab.org





Re: Filters/Actions/External proggie - how ?

2000-07-20 Thread Dirk Heiser

Hi Ming-Li,

On Thu, 20 Jul 2000 03:50:58 -0700, you wrote:

ML It gets trickier, however, when it comes to outgoing mail filter,
ML since the filter is only triggered when TB is actually sending it
ML out. Can it be done should I want to do something to my message
ML "prior to" sending it on an automatic basis? The .bat trick still
ML works, but it can't prevent TB from sending out the original
ML (unmodified) message. Is there a way to get around this?

If i understand you right you want to modify the messages you send
before the bat send them.

AFAIK that is not possible.

But i am doing this with a local Mail/News server. Thats a program
that rum on your PC and work like a mail server. You send your mails
to the server "localhost" the program recive the mail and store it in
a file on the HDD, then you can modify it and run the command to send
this out. This can be automated by Scripts.

I am using "Hamster" for this, it need some time to setup this, but it
is really powerfull:
http://freebee.home.pages.de/
This is free and work really fine.

If you only want to change the X-Mailer: Header or add some new
xherders search for a program called IIRC xray (scan this list archive
for this).

cu,
 Dirk

-- 
Using The Bat! 1.45 Beta/11 (S/N 12A1F196 / Educational) under Windows 95 4.0 Build 
  B

-- 
--
View the TBUDL archive at http://tbudl.thebat.dutaint.com
To send a message to the list moderation team double click here:
   mailto:[EMAIL PROTECTED]
To Unsubscribe from TBUDL, double click here and send the message:
   mailto:[EMAIL PROTECTED]
--

You are subscribed as : archive@jab.org





Re: Importing mail from Outlook (not Express!)

2000-07-20 Thread Dirk Heiser

Hi Ming-Li,

On Thu, 20 Jul 2000 06:08:03 -0700, you wrote:

ML Ok, that's Reference. I still think what Dirk meant by "Received"
ML should be what I said.

I am talking about Received:. That header contain the Routing of the
mails. Thats the first example for an missing header entry that come
me in mind. No really importend to have this header entry.

ML Knowing what "Reference" is, I don't think TB has trouble importing
ML it, or any other information on the message header.

ML Could you be more specific, Dirk?

After impoting my mail from OE i get this headers (This are a example
from my archive):

: From: "xx " [EMAIL PROTECTED]
: To: [EMAIL PROTECTED]
: Subject: [Palm] PocketMirrow und PalmProfessionel
: Date: Fri, 20 Aug 1999 09:45:17 +0200
: MIME-Version: 1.0
: Content-Type: text/plain; charset="iso-8859-1"
: Content-Transfer-Encoding: quoted-printable
: X-Priority: 3
: X-MSMail-Priority: Normal
: X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2106.4

sure there are more Header on this mail in Outlook.

The interesting Header i am missing are:

Message-ID:
In-reply-To:
References:

And sure the recived time are missing.

cu,
 Dirk

-- 
Using The Bat! 1.45 Beta/11 (S/N 12A1F196 / Educational) under Windows 95 4.0 Build 
  B



-- 
--
View the TBUDL archive at http://tbudl.thebat.dutaint.com
To send a message to the list moderation team double click here:
   mailto:[EMAIL PROTECTED]
To Unsubscribe from TBUDL, double click here and send the message:
   mailto:[EMAIL PROTECTED]
--

You are subscribed as : archive@jab.org





Re: Filters/Actions/External proggie - how ?

2000-07-19 Thread Dirk Heiser

Hi Ming-Li,

On Wed, 19 Jul 2000 06:27:43 -0700, you wrote:

ML Hi Dirk,

 The External program must import it back to TB! with the
 commandline parameter.

ML That's what I thought. But I tried and it didn't work that way.

 So Setup the filter Action for starting the external Program, the
 external program reformat the message and at the end it call:

 thebat.exe /IMPORTU="accout";F="folder";IN="file.msg";DEL';

ML So you mean I've to setup the external program to call this? I'm not

Yes

ML sure I can do that with my editor automatically. Would it launch

Think about a *.bat file

---
rem start the editor with the first commandline parameter
rem the editor do the job and save this file under the same name

Start /wait myeditor.exe %1

thebat.exe /IMPORTU="accout";F="folder";IN="%1";DEL';
--

Or write a reformat program with a Script language (eg. Python, Perl)


ML another instance of TB? Shouldn't TB "take it back" by itself

No, if TB! is allready started and you call it again with some
commandline parameters, TB! send the parameter for executing to the
first instance and quit, so there is no problem.

ML (otherwise what's the "wait for completion" option for)?

I assume that this means that TB! wait until the external programm
quits. But i am not sure.

So.

- The Filter trigger
- TB! Start the Program and wait
-  The  external prg do the job, call TB! with the inport command. and
exit
- now your called TB! execute your command and import the mail, and at
the  same  time  TB! continue with the next filter because you external
prg are quit.


cu,
 Dirk

-- 
Using The Bat! 1.45 Beta/10 (S/N 12A1F196 / Educational) under Windows 95 4.0 Build 
  B

-- 
--
View the TBUDL archive at http://tbudl.thebat.dutaint.com
To send a message to the list moderation team double click here:
   mailto:[EMAIL PROTECTED]
To Unsubscribe from TBUDL, double click here and send the message:
   mailto:[EMAIL PROTECTED]
--

You are subscribed as : archive@jab.org





Re: Filters/Actions/External proggie - how ?

2000-07-18 Thread Dirk Heiser

Hi Ming-Li,

On Tue, 18 Jul 2000 09:32:01 -0700, you wrote:

   I have been used filter for rewriting (via external proggie)
   incoming messages but it has no effect, why ?  Or it's normal
   and this action only for custom message saving ?

ML I'm not sure but I think the "run external program" action in a
ML filter is just that: it save the message as a temp file and send it
ML a the designated program as a parameter, but it won't re-import it
ML after the program finishes the job, not even if you check the "wait
ML for completion" option.

The External program must import it back to TB! with the commandline
parameter.

So Setup the filter Action for starting the external Program, the
external program reformat the message and at the end it call:

thebat.exe /IMPORTU="accout";F="folder";IN="file.msg";DEL';

See the Help for the syntax.


cu,
 Dirk

-- 
Using The Bat! 1.45 Beta/10 (S/N 12A1F196 / Educational) under Windows 95 4.0 Build 
  B



-- 
--
View the TBUDL archive at http://tbudl.thebat.dutaint.com
To send a message to the list moderation team double click here:
   mailto:[EMAIL PROTECTED]
To Unsubscribe from TBUDL, double click here and send the message:
   mailto:[EMAIL PROTECTED]
--

You are subscribed as : archive@jab.org





The Bat! - bug report - Message Truncated after =00

2000-05-21 Thread Dirk Heiser

Hello The Bat! developers,

  I'm using The Bat! Version 1.42f
  Serial Number 12A1F196
  under Windows 95 4.0 Build   B
  and would like to report a bug

  The bug description:


   Sometime the messages generated by the Bat! (quoted printable
   coding) contain the sequence "=00". At this sequence the message
   get truncated by the mail server (Zero Byte means often "end of
   Text").
  

  Steps to reproduce the bug:

   I do not find a pattern, a solution is simply _never_ add "=00" in
   the outgoing text.


Regards,
  Dirk Heiser



-- 
--
View the TBUDL archive at http://tbudl.thebat.dutaint.com
To send a message to the list moderation team double click here:
   mailto:[EMAIL PROTECTED]
To Unsubscribe from TBUDL, double click here and send the message:
   mailto:[EMAIL PROTECTED]
--

You are subscribed as : archive@jab.org





Re: Why is thebat.exe from tb142f.zip so big?

2000-05-12 Thread Dirk Heiser

Hi Mike,

On Fri, 12 May 2000 09:47:04 -0500, you wrote:

MH   I downloaded tb142f.zip, and found that it only contains
MH   thebat.exe

MH   This is a 3,179 KB file, in contrast to the 1,679 KB file of TB!
MH   1.42c executable. I thought that it must be an install program,

That's is because ritlabs sometimes compress that file and sometimes
not :-)

I am talking about an exe compression, that means if you start the exe
the program decompress in memory and execute.


MH   Why the increased executable size?

Because this one is uncompressed.

cu,
 Dirk

-- 
Using The Bat! 1.42f (S/N 12A1F196 / Educational) under Windows 95 4.0 Build   B



-- 
--
View the TBUDL archive at http://tbudl.thebat.dutaint.com
To send a message to the list moderation team double click here:
   mailto:[EMAIL PROTECTED]
To Unsubscribe from TBUDL, double click here and send the message:
   mailto:[EMAIL PROTECTED]
--

You are subscribed as : archive@jab.org





Re: TB! 1.42 final

2000-05-07 Thread Dirk Heiser

Hi Allie,

On Fri, 5 May 2000 14:54:19 -0500, you wrote:
 Am I the first to have noticed that 1.42 Final is out?
^

What means final, no more bug fixes???


 I am downloading it right now!

AM That nasty compression of the executable is back. :-(

And my slow and instable system if the Bat! is running is also back
:-(


cu,
 Dirk

-- 
Using The Bat! 1.42 (S/N 12A1F196 / Educational) under Windows 95 4.0 Build   B



-- 
--
View the TBUDL archive at http://tbudl.thebat.dutaint.com
To send a message to the list moderation team double click here:
   mailto:[EMAIL PROTECTED]
To Unsubscribe from TBUDL, double click here and send the message:
   mailto:[EMAIL PROTECTED]
--

You are subscribed as : archive@jab.org





Re: 1.42?

2000-04-20 Thread Dirk Heiser

Hi Alexander,

On Fri, 21 Apr 2000 01:57:01 +0400, you wrote:
AVK Why? This is quite simple indeed: TB is capable of deleting attachment from
AVK messages, right? Further, the attached MSG file is just a valid RFC822
   ^

AFAIK NO, the Bat! can only delete attachments if you store this not in
message bodys.

AVK message, so theoretically on "move" from MIME digest TB should do the 
AVK following:
AVK 1. Import the specified message file to the specified folder;
AVK 2. Delete the corresponding attachment from the original digest message.


cu,
 Dirk

-- 
Using The Bat! 1.42 Beta/18 (S/N 12A1F196 / Educational) under Windows 95 4.0 Build 
  B



-- 
--
View the TBUDL archive at http://tbudl.thebat.dutaint.com
To send a message to the list moderation team double click here:
   mailto:[EMAIL PROTECTED]
To Unsubscribe from TBUDL, double click here and send the message:
   mailto:[EMAIL PROTECTED]
--

You are subscribed as : archive@jab.org





Re: MSGIDs

2000-04-06 Thread Dirk Heiser

Hi Steve,

On Thu, 6 Apr 2000 07:56:47 -0700, you wrote:

SL Wednesday, April 05, 2000, 7:03:49 PM, Dirk wrote:
 The String before the "@" must only be unique for mails send from your
 PC, because the part after the "@" is only used by your PC. This part
 must be a valid Domain you own.

SL This is untrue.  The string, as a whole, needs to be unique, that is the
SL /only/ requirement of it per RFC822.

But that _must_ be guaranteed!! that is _another_ requirement by this RFC.

 The Bat use the Domain Part of the account Email address, that is in
 most cases wrong, because normally the user don't own the Domain of
 the email address.

SL No, it is not wrong.  For it to be wrong means that the above assumption
SL is true.

IMHO my assumption is true :-)

 IMHO the only options to make an valid RFC MSID is to make the Part
 after the "@" user configurable (for people they have his own Domain)
 or make an option to _not_ generate an MSID, so the Mailserver can
 make this.

SL Incorrect again.  The RFC clearly states that the only requirement is that
SL the host generating the MSGID must ensure that it is unique.  That means that
  ^^

How can the Host ensure that if all Strings after "@" are allowed??

If you have two the Bat on different PCs sending mails at the same
time with the same string after the "@" you get the same MID (stronger
algorithm or not).
  
SL the part after the @ is nothing more than a static string for the purposes of
SL the whole.  The Bat! should employ a stronger algorithm on the front end to
SL ensure unique addresses across instances of TB!.  Also, it should continue to
SL generate MSGIDs since allowing the server to generate it reducing
SL functionality of TB!, most notably CNTL-BACKSPACE.

Every one can get his own FQDN, even for free.


cu,
 Dirk

-- 
Using The Bat! 1.42 Beta/11 (S/N 12A1F196 / Educational) under Windows 95 4.0 Build 
  B



-- 
--
View the TBUDL archive at http://tbudl.thebat.dutaint.com
To send a message to the list moderation team double click here:
   mailto:[EMAIL PROTECTED]
To Unsubscribe from TBUDL, double click here and send the message:
   mailto:[EMAIL PROTECTED]
--

You are subscribed as : archive@jab.org





Re: left overfiles

2000-03-13 Thread Dirk Heiser

Hi tracer,

On Mon, 13 Mar 2000 19:30:28 +0700, you wrote:
t I seem inthe attachment directrory get many files like
t 1.msg, 2.msg, 3.msg etc

IMHO this is a Bug.

I get this Files if i MIME forward Messages. This forwaded messages
are stores in the Attach Dir and the massage get the X-BAT-FILES: Link
to the msg File.

BTW: the same Problem with attachments attached per DragDraop.

cu,
 Dirk

PS: YES i have setup "Store attachments inside the Message" :-)
 
-- 
Using The Bat! 1.41 (S/N 12A1F196 / Educational)
under Windows 95 4.0 Build   B

-- 
--
View the TBUDL archive at http://tbudl.thebat.dutaint.com
To send a message to the list moderation team double click here:
   mailto:[EMAIL PROTECTED]
To Unsubscribe from TBUDL, double click here and send the message:
   mailto:[EMAIL PROTECTED]
--

You are subscribed as : archive@jab.org




Re: Beta/3 with PNG support

2000-02-03 Thread Dirk Heiser

Hi Jast,

On Thu, 3 Feb 2000 20:19:18 +0100, you wrote:

J Morning Dirk Heiser,

 but the png images are not shown on the tabs on the bottom of the
 message like gif and jpg images. Bug?

J  I just added a PNG image to a mail. I got a tab, no problem, check again
J  :-)

You have changed the List, why?

OK sometimes i get an Tab for an png image, sometimes not.

If the tab is there then i see the message text as an tab and as an
icon also. That mean if i open such an message i get on the left side
of the message the icons for the message text and the icons for the
attached pngs. Under the message i get this tabs for the message text
and the pngs too.

If i have an message were the message text is _not_ displayed as an
separate icon, i see only the icons for the png and _no_ tab.

With gif and jpg images it work in _all_ cases. So IMHO it is a bug.


BTW: we should move back to the Beta list with this thread. I CC a
copy to the TBBETA, please answer there.


cu,
 Dirk

-- 
Using The Bat! 1.41 Beta/3 (S/N 12A1F196 / Educational) under Windows 95 4.0 Build 
  B



-- 
--
View the TBBETA archive at http://tbbeta.thebat.dutaint.com
To send a message to the list moderation team double-click HERE:
   mailto:[EMAIL PROTECTED]
To Unsubscribe from TBBETA, double-click HERE:
   mailto:[EMAIL PROTECTED]
--





Re: re's and regexp's

1999-12-18 Thread Dirk Heiser

Hi Peter,

On Sat, 18 Dec 1999 15:56:46 +0100, you wrote:

PS There are two reasons why this doesn't work:
PS 1. [ and ] have a special meaning inside regular expression (see in
PSthe Help under Regular Expressions Syntax (Basic)). You have to
PSwrite \[ and \]

OK, Time for me to read this again :-)

PS 2. [Palm] is not followed by a colon, therefore you can't put in
PStogether with Aw: and Re:

Ahh, that is the answer.

PS Here's the solution

PS %subject=""%subject="Re: 
%SETPATTREGEXP=""(?i)(((Re|Aw|Antwort):|\[Palm\])\s*)*(.*)""%REGEXPBLINDMATCH=""%OSUBJ""%SUBPATT=""4"""

PS Note two things:
PS - "((Re|Aw|Antwort):|\[Palm\])" instead of "(Re|Aw|Antwort):",
PS   having one more level of parentheses
PS - %SUBPATT=""4"" instead of %SUBPATT=""3"" because of the additional
PS   parentheses

PS You could expand this for more maillists if you replace \[Palm\]
PS with \[(Palm|Pilot|whatever)\] and incrementing SUBPATT to 5...

Now it work great! Thanks to all people working on this.

IMHO this example must be in the FAQ. It is very useful to add this in
all Answer Templates.

cu,
 Dirk

-- 
Using The Bat! 1.38e under Windows 95 4.0 Build   B



-- 
--
View the TBUDL archive at http://tbudl.thebat.dutaint.com
To send a message to the list moderation team double click here:
   mailto:[EMAIL PROTECTED]
To Unsubscribe from TBUDL, double click here and send the message:
   mailto:[EMAIL PROTECTED]
--




Re: pipe character

1999-11-09 Thread Dirk Heiser

Hi AL,

Tuesday, November 09, 1999, 6:35:33 PM, you wrote:
AC I am now on my third day, If I cannot figure this problem out I will have
AC to dump it and stay with PRO.

It seams you have more Problems with EudoraPro :-) Or is it a Virus?

PLEASE  stop  sending  20 x the same mail to this list, perhaps you must
check your autoresponder!

cu,
 Dirk

-- 
Using The Bat! 1.36 under Windows 95 4.0 Build   B



-- 
--
View the TBUDL archive at http://tbudl.thebat.dutaint.com
To send a message to the list moderation team double click here:
   mailto:[EMAIL PROTECTED]
To Unsubscribe from TBUDL, double click here and send the message:
   mailto:[EMAIL PROTECTED]
--