Re[2]: Submission forms

2000-01-25 Thread Max Masyutin

Hello Leif,

Tuesday, January 25, 2000, 6:38:41 PM, you wrote:

LG> Hmmm, I must be doing something wrong. I imported your PGP keys and
LG> signed them, but whenever I try to add the forms, I get an invalid
LG> signature.

LG> Any ideas?

LG> I have the international PGP v5.5 installed and the Thebat pgp dll as
LG> well.

  Oh, sorry for my previous message... Sure, I do have the idea! As
  said, submission forms work with internal PGP implementation only!
  Select "Tools/Pgp/Choose Version"..

-- 
Best regards,
 Maxmailto:[EMAIL PROTECTED]

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




Re[2]: 1.39 & PGP key generation

2000-01-25 Thread Max Masyutin

Hello tracer,

Tuesday, January 25, 2000, 6:02:08 PM, you wrote:

Max>>   1.39 was unable to generate PGP keys using internal implementation.
Max>>   1.41 Beta/1 fixes that. There are no other new features.
t> what happened to 1.40(g)

  Don't worry - it was never released. We've jumped from 1.39 to 1.41
  to avoid trailing zeros - they are sometimes treated as milestones.



-- 
Best regards,
 Maxmailto:[EMAIL PROTECTED]

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




Re[2]: Submission forms

2000-01-25 Thread Max Masyutin

Hello Leif,

Tuesday, January 25, 2000, 6:38:41 PM, you wrote:

MM>> Examples are attached. Hope you find them useful. But, before
MM>> installing them, import office.txt PGPkey.

LG> Hmmm, I must be doing something wrong. I imported your PGP keys and
LG> signed them, but whenever I try to add the forms, I get an invalid
LG> signature.

LG> Any ideas?

 No, by now. Does anywone has same troubles?


-- 
Best regards,
 Maxmailto:[EMAIL PROTECTED]

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




Re: Submission forms

2000-01-25 Thread Max Masyutin

Hello Jast!

J>  So  now  my question: Does anybody here use the submission forms, or can give
J>  me  some  examples for the effective use of these? I'm a little lost on where
J>  to start with this...

   Submission forms require internal PGP implementation, but you need
   not any additional dlls - everything is inside thebat.exe

   Examples are attached. Hope you find them useful. But, before
   installing them, import office.txt PGPkey.



-- 
Max Masyutin,
Software Engineer
RIT Research Labs  http://www.ritlabs.com/
-- 
--
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]>
--

 tbc.zip


1.39 & PGP key generation

2000-01-25 Thread Max Masyutin

Hello TBUDL! 

  1.39 was unable to generate PGP keys using internal implementation.
  1.41 Beta/1 fixes that. There are no other new features.

  http://www.ritlabs.com/the_bat/beta.html

  There is no reason to download this beta for those who no not use
  internal PGP implementation.
  
-- 
Max Masyutin,
Software Engineer
RIT Research Labs  http://www.ritlabs.com/



-- 
--
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]>
--




Submission forms - recent additions

2000-01-07 Thread Max Masyutin

Hello TBUDL! 

http://www.ritlabs.com/the_bat/forms.html reflects recent additions
(such as DEFTPL, VBODYRE, WORDWRAP, BATCH, QUEUEOUT, TPL, NFO,
PASSWORD, MASK Parameter (Character-By-Character Validation and
URL/EMAIL/DATA/REGEX/MANDATORY), to submission forms that were not
descrivbed in 1.38e help file.


Online reference (http://www.ritlabs.com/the_bat/hlp_eng.html) has
also been updated.


-- 
Max Masyutin,
Software Engineer
RIT Research Labs  http://www.ritlabs.com/



-- 
--
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]>
--




Exapmples of nice usage of regular expressions...

1999-12-20 Thread Max Masyutin

Hello TBUDL! 

  There were some exapmples of nice usage of regular expressions,
  could someone prepare a digest or even send his own examples.

  I plan to include it to the help so everybody could see and use the
  advantages.

-- 
Max Masyutin,
Software Engineer
RIT Research Labs  http://www.ritlabs.com/



-- 
--
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: Stripping "(Decrypted)" from subject when replying

1999-12-19 Thread Max Masyutin

Hello Peter,

Saturday, December 18, 1999, 11:16:57 PM, you wrote:

PS> Purpose: strip all kinds of Re:'s and Aw:'s from a subject while
PS> replying.

PS> I have modified the expression above to additionally strip a
PS> trailing " (Decrypted)" as added by TB! when decrypting PGP
PS> messages:

PS> %subject=""%subject="Re: 
%SETPATTREGEXP=""(?i)((Re|Aw)\:\s*)*(.*?)(\s\(Decrypted\))?$""%REGEXPBLINDMATCH=""%OSUBJ""%SUBPATT=""3"""

  Nice but why not to use lookahead positive assertions?

  (?=Re|Aw) instead of (Re|Aw) and so on for Decrypted.
  It will save from using additional %SUBPATT= macro,
  %REGEXPBLINDMATCH= will be replaced to %REGEXPMATCH.

  Shorter, anyway :-)
  

-- 
Best regards,
 Maxmailto:[EMAIL PROTECTED]

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




1.38e updated

1999-12-13 Thread Max Masyutin

Hello TBUDL! 

  Link for those who experienced system hangs under Win95/98 when starting
  The Bat! 1.38e

  http://www.ritlabs.com/the_bat/beta.html

  This is just a repacked executable.

-- 
Max Masyutin,
Software Engineer
RIT Research Labs  http://www.ritlabs.com/



-- 
--
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]>
--





Sorry, wrong area :-)

1999-12-03 Thread Max Masyutin

Hello Everybody! 

  I'm sorry about the Beta announcement - I've picked a wrong address
  :-)


-- 
Max Masyutin,
Software Engineer
RIT Research Labs  http://www.ritlabs.com/



-- 
--
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]>
--




1.38 Beta/6

1999-12-03 Thread Max Masyutin

Hello Everybody! 

  1.38 Beta/6 is available from
  http://www.ritlabs.com/the_bat/beta.html

[-] "Save message" in editor window could reset modified flag without
saving a message if destination address was blank (or message could
not be saved by other resaon).

[+] "Print"+"Print setup" function in the message editor

[+] Message age filter in the MessageTicker ("Messages|Age limits"
local menu command)
  

-- 
Max Masyutin,
Software Engineer
RIT Research Labs  http://www.ritlabs.com/



-- 
--
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]>
--