buMAIL.bat Done!

2003-03-19 Thread Tim Musson
Someone asked to see my buMAIL.bat when I completed it, so here it is (I
even documented it a bit!).  It requires calling more external bits of
code than I like, but it works on my Win2k ThinkPad.

If anyone has any suggestions on easier/better (I know, that is
subjective) ways to do parts of it I would be interested in hearing
about it.

,- [  ]
| @echo off
| :: Back up my The Bat! Registry key & MAIL directory
| :: By Tim Musson, March 2003.
| :: I use the for/do and if/else commands with Win2k syntax, 
| ::so it may not work on other MS OS's, I don't know...
| :: Requires
| ::PsList from sysinternals.com
| ::sleep.exe from MS Resource kit.
| ::regedit switch docs at 
| ::RAR from www.rarlab.com
| 
| ::Ok, lets shut TB down!
| "C:\Program Files\The Bat!\thebat.exe" /EXIT
| 
| ::We should wait for TB to exit...
| :: possibly find a better programmatic way to check?
| :Check
| :: so, we use the for/do command to pull apart the output of the
| :: PsList.exe command, setting the Process Name to the TBup var
| for /f "tokens=1*" %%i in ('pslist thebat') do  set TBup=%%i
| :: Now we use the if/else command to check what is in the TBup var
| :: and sleep.exe for a second an check it again.
| IF %TBup%.==thebat. (
|   echo %TBup% running, check again... & sleep 1
| ) ELSE (
|   echo %TBup% down, Back It Up! & goto :BackItUp
| )
| goto :Check
| 
| :BackItUp
| ::Now we dump the reg key for TB (keeping a backup if it exists)
| set BUfilename="\MAIL\TheBatRegBU.reg"
| copy %BUfilename% %BUfilename%.old /y
| regedit /e %BUfilename% HKEY_CURRENT_USER\software\rit
| 
| ::Build a DTS variable
| :: Using for/do, pull apart the output of date/t
| set parsearg="eol=; tokens=1,2,3,4* delims=/, "
| for /F %parsearg% %%i in ('date/t') do set ds=%%l.%%j.%%k
| 
| :: Use the output of the above for/do in the next for/do
| :: Using for/do, pull apart the output of time/t
| set parsearg="eol=; tokens=1,2* delims=:, "
| for /F %parsearg% %%i in ('time/t') do set dts=%ds%-%%i.%%j
| 
| ::Here is where we make a backup of the MAIL directory
| :: Now, I just need to put in a DateStamp as part of the FileName.rar
| :: Will use another for/do command to build it when I have the time.
| "C:\Program Files\WinRAR\RAR.exe" a E:\MAILbu%dts%.rar E:\MAIL
| 
| start "starting TB" "C:\Program Files\The Bat!\thebat.exe" /MINIMIZE
`-

-- 
Tim Musson
Flying with The Bat! eMail v1.62 Christmas Edition
Windows 2000 5.0.2195 (Service Pack 2)
Keyboard not available - Press F1; to continue.



 Current version is 1.61 | "Using TBTECH" information:
http://www.silverstones.com/thebat/TBUDLInfo.html


Re: Problem with my BU.bat

2003-03-17 Thread Tim Musson
Hey Peter,

My MUA believes you used Sylpheed version 0.8.10claws72 (GTK+ 1.2.10; 
i386-debian-linux-gnu)
to write the following on Monday, March 17, 2003 at 7:44:28 AM.

PP> should only return when the exit was sent to the proc...ess ... *geee* I
PP> see!!! this second instance you're starting (if there already is a
PP> thebat.exe process running) recognizes the first one, sends it an 'exit'
PP> signal and terminates itself immediately, while the first instance is
PP> still shutting down and e.g. compressing or whatever needs to be done
PP> ... *hmmm*

LOL, now you see my problem... :-)

PP> I guess you're out of luck on Windows, unless you find a program
PP> that allows you to check on command line or via return code the
PP> existance of a process, like 'ps' does. Than you could write a small
PP> loop that waits until termination has taken effect.

Anyone else know of something? I guess I will stick with a pause command
because TB takes a different amount of time to shutdown depending on the
message base state...

PP> But don't ask me for such a tool :-) Every time I was in the need for
PP> "controling my OS" I took Linux *eg* :-)))

It *would* be nice to have a choice of OS, but I am on my company's
notebook, and they have standards (Linux is one, but it doesn't have all
the things I need yet, and my current client runs only MS...).

-- 
Tim Musson
Flying with The Bat! eMail v1.62 Christmas Edition
Windows 2000 5.0.2195 (Service Pack 2)
Always remember to pillage BEFORE you burn.



 Current version is 1.61 | "Using TBTECH" information:
http://www.silverstones.com/thebat/TBUDLInfo.html


Re: Problem with my BU.bat

2003-03-17 Thread Tim Musson
Hey Peter,

My MUA believes you used The Bat! (v1.63 Beta/7) Personal
to write the following on Monday, March 17, 2003 at 3:13:54 AM.

PP> start "" "C:\Program Files\The Bat!\thebat.exe" /MINIMIZE

PP> Would do the same ... seems W2K-cmd need the "title", even if empty,
PP> when parameters are about to be passed to "program" ...

Yep, got that, just figured I would stick something in the "" for
documentation if nothing else... 

TM>> Any idea about figuring about when TB has finished closing?

PP> start "" /wait "C:\Program Files\The Bat!\thebat.exe" /MINIMIZE

PP> will make the cmd-script wait until The Bat! finished. From outside
PP> that script I don't know a way from the top of my memory as I don't
PP> know a CLI program for accessing the process list, like 'ps' ...

Nope, tried that, check out my message to Januk
[ mid:[EMAIL PROTECTED] ]...

-- 
Tim Musson
Flying with The Bat! eMail v1.62 Christmas Edition
Windows 2000 5.0.2195 (Service Pack 2)
Life would be easier if I had the source code.



 Current version is 1.61 | "Using TBTECH" information:
http://www.silverstones.com/thebat/TBUDLInfo.html


Re: Problem with my BU.bat

2003-03-16 Thread Tim Musson
Hey Januk,

My MUA believes you used The Bat! (v1.63 Beta/7) Educational
to write the following on Saturday, March 15, 2003 at 4:32:31 PM.

TM>> | ::Ok, lets shut TB down!
TM>> | "C:\Program Files\The Bat!\thebat.exe" /EXIT
TM>> | 
TM>> | ::We should wait for TB to exit...
TM>> | :: possibly find a programmatic way to check?
TM>> | :: or, if not, use sleep?
TM>> | pause

JA> You can use one line for this:

JA> start /w "C:\Program Files\The Bat!\thebat.exe" /EXIT

Thanks Januk, but I am guessing 'start' works differently in the
different MS OS's (surprise, surprise...). I had to use the following
syntax, but I still got the output of the echo before the TB window was
gone...

,- [  ]
| start "Close TB" /wait "C:\Program Files\The Bat!\thebat.exe" /EXIT
|
| echo. Is TB Closed?
`-

-- 
Tim Musson
Flying with The Bat! eMail v1.62 Christmas Edition
Windows 2000 5.0.2195 (Service Pack 2)
It is easier to get forgiveness than to get permission.



 Current version is 1.61 | "Using TBTECH" information:
http://www.silverstones.com/thebat/TBUDLInfo.html


Re: Problem with my BU.bat

2003-03-16 Thread Tim Musson
Hey Peter,

My MUA believes you used The Bat! (v1.63 Beta/7) Personal
to write the following on Saturday, March 15, 2003 at 4:17:34 PM.

PP> Try changing this to

PP> ,-= [  ] =-
PP> | start "C:\Program Files\The Bat!\thebat.exe" /MINIMIZE
PP> | exit
PP> `-=

Thanks Peter, that did what I asked about! But I had to do it like this.

,- [ Seems Win2k changed the syntax of 'start' ]
| start "starting TB" "C:\Program Files\The Bat!\thebat.exe" /MINIMIZE
`-

Any idea about figuring about when TB has finished closing?

-- 
Tim Musson
Flying with The Bat! eMail v1.62 Christmas Edition
Windows 2000 5.0.2195 (Service Pack 2)
You can't have everything! Where the heck would you put it?



 Current version is 1.61 | "Using TBTECH" information:
http://www.silverstones.com/thebat/TBUDLInfo.html


Re: Problem with my BU.bat

2003-03-16 Thread Tim Musson
Hey Roelof,

My MUA believes you used The Bat! (v1.62 Christmas Edition) Personal
to write the following on Saturday, March 15, 2003 at 4:25:28 PM.

RO> When I'm running the batch file under W98, it executes all fine.

I am running W2k as my sig indicates... (surprise, surprise, different
MS OS's behave differently, who would have thought...) Good to know it
works like I expected under one MS OS anyway!

RO> What makes you think TB doesn't pass control back?

:-)
The .bat opens a cmd window, but does not close it after TB starts back
up. If I open a cmd window and run the .bat, I don't get a prompt back
after the last line. ^C, ^X, ^Z ^break all have no affect, but if I
close TB, I immediately get a command prompt back.

RO> Maybe you've just set some properties wrong?

I don't think there are any properties to affect this... Anyone know of
any?

-- 
Tim Musson
Flying with The Bat! eMail v1.62 Christmas Edition
Windows 2000 5.0.2195 (Service Pack 2)
My operat~1 system unders~1 long filena~1 , does yours?



 Current version is 1.61 | "Using TBTECH" information:
http://www.silverstones.com/thebat/TBUDLInfo.html


Problem with my BU.bat

2003-03-15 Thread Tim Musson
Hey All,

I am having a problem with the last line of this .bat file...

After running thebat.exe, control is not passed back to the .bat file,
and I have to kill the cmd window. I have run it like shown and with CMD
/C in front of it with the same results.

Any thoughts on what might be happening?

,- [ MAILbu.bat ]
| @echo off
| 
| ::Ok, lets shut TB down!
| "C:\Program Files\The Bat!\thebat.exe" /EXIT
| 
| ::We should wait for TB to exit...
| :: possibly find a programmatic way to check?
| :: or, if not, use sleep?
| pause
| 
| ::Now we dump the reg key for TB (keeping a backup if it exists)
| set BUfilename="\MAIL\TheBatRegBU.reg"
| copy %BUfilename% %BUfilename%.old /y
| regedit /e %BUfilename% HKEY_CURRENT_USER\software\rit
| 
| ::Here is where we make a backup of the MAIL directory
| :: make the .rar filename YYMMDD.rar...
| "C:\Program Files\WinRAR\RAR.exe" a E:\MAILbu.rar E:\MAIL
| 
| "C:\Program Files\The Bat!\thebat.exe" /MINIMIZE
`-

-- 
Tim Musson
Flying with The Bat! eMail v1.62 Christmas Edition
Windows 2000 5.0.2195 (Service Pack 2)
OK, I'm weird! But I'm saving up to become eccentric.



 Current version is 1.61 | "Using TBTECH" information:
http://www.silverstones.com/thebat/TBUDLInfo.html


Re: Need help with Regex in filter

2003-01-20 Thread Tim Musson
Hey Miguel,

My MUA believes you used The Bat! (v1.61) Business
to write the following on Monday, January 20, 2003 at 11:18:39 AM.

MAU> Strings: <.*\[EMAIL PROTECTED]>

MAU> But this is not working, not finding any. Any idea why?

I am certinly not a RegEx expert, but will hazard a suggestion.

Try taking out the .* and <>

As I recall .* is a greedy 'match everything', and you should not need
the <> in there (do you really need to match em?)

,- [ so the match would read (I think ) ]
| match @ermspain.com as long as it has a digit right before the @
`-

-- 
Tim Musson
Flying with The Bat! eMail v1.62 Christmas Edition
Windows 2000 5.0.2195 (Service Pack 2)
As I said before, I never repeat myself.



 Current version is 1.61 | "Using TBTECH" information:
http://www.silverstones.com/thebat/TBUDLInfo.html



Re: external editor in BAT?

2003-01-13 Thread Tim Musson
Hey 1ns0mn1a,

My MUA believes you used The Bat! (v1.62 Christmas Edition)
to write the following on Monday, January 13, 2003 at 6:03:42 PM.

1> is it possible to configure the bat to use an external text editor,
1> (of course, except the copy&paste way...) ?

Not in the current version, it is rumored to be a feature of the
elusive V2 though.

-- 
Tim Musson
Flying with The Bat! eMail v1.62 Christmas Edition
Windows 2000 5.0.2195 (Service Pack 2)
Error, no keyboard - press F1 to continue.



 Current version is 1.61 | "Using TBTECH" information:
http://www.silverstones.com/thebat/TBUDLInfo.html



Re: remeber less - registry

2002-10-29 Thread Tim Musson
Hey Krzysztof,

My MUA believes you used The Bat! (v1.62/Beta5) Personal
to write the following on Tuesday, October 29, 2002 at 5:02:42 AM.

KK>  TB!  remembers  last  40  email  addresses which I used. That
KK>  number - 40 pieces - is AFAIK set in registry. 1. can you show me
KK>  in which part of registy? 2. is it possible to change this from
KK>  40 to ... 5?

,- [ I found this in the Reg.  (28 hex == 40 Dec) ]
| [HK.C.U\software\rit\The Bat!]
| "History Strings"=dword:0028
`-

this might be what you are looking for.

-- 
[EMAIL PROTECTED]
Flying with The Bat! eMail v1.61
Windows 2000 5.0.2195 (Service Pack 2)
What garlic is to salad, insanity is to art.



 Current version is 1.61 | "Using TBTECH" information:
http://www.silverstones.com/thebat/TBUDLInfo.html



Re: List filter

2002-07-02 Thread Tim Musson

Hey Paul,

My MUA believes you used The Bat! (v1.60q) Personal
to write the following on Tuesday, July 2, 2002 at 9:40:47 AM.

PC> I'm not sure I fully understand what a kludge is

Hit F9 while reading this msg.  Everything in blue is part of the
Kludges.  It is the RFC[2]822 headers that tell the mail software
about the message.

-- 
[EMAIL PROTECTED]
Using The Bat! eMail v1.60q
Windows 2000 5.0.2195 (Service Pack 2)
Junk: stuff we throw away. Stuff: junk we keep. 


__
Archives   : http://tbtech.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]




Re: a question about "New Message" button

2002-07-02 Thread Tim Musson

Hey Roy,

My MUA believes you used The Bat! (v1.60q) Personal
to write the following on Monday, July 1, 2002 at 11:32:58 PM.

RC> Hi Everyone,

RC>   I see there is a small arrow on the right of the "New Message"
RC>   button in the toolbar, the same case as the "Send Messages" button
RC>   and "Receive Messages" button. But when I push the small arrow part,
RC>   it will not show a menu list as the "Send..." and "Receive ...". It
RC>   seems the arrow has no use. Who know the reason?

It will list the 'Favorites' in your address book.  If you have groups
in your address book with contacts that have the 'Favorite' setting
checked, then it will list them also (with All, or just the 'favs' as
sub items.)

-- 
[EMAIL PROTECTED]
Using The Bat! eMail v1.60q
Windows 2000 5.0.2195 (Service Pack 2)
Why is it that doctors call what they do "practice"?


__
Archives   : http://tbtech.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]




Re: Problems rendering html mail

2002-07-02 Thread Tim Musson

Hey Ricardo,

My MUA believes you used The Bat! (v1.60c)
to write the following on Monday, July 1, 2002 at 3:19:52 PM.

RMR> If you read the attached mail in html mode you should see it
RMR> 'cutted' in the middle of a sentence (I see a line cut in half
RMR> vertically),

The cut is horizontal here...  , and yes I see the same thing.

RMR> Any ideas why it does that?

Not really.

I did look at the html file, and it looked ok, it also displayed ok
when double clicked.

RMR> (I don't want to send the images with the mail because I don't think
RMR> they are relevant, but TB doesn't let me erase them from inside the
RMR> .msg attachment. Any help with that will also be appreciated)

before you forward it, you should be able to select it and hit the
delete button, or right click - delete.  I used to do it all the time
(don't bet many inline pix any more).

-- 
[EMAIL PROTECTED]
Using The Bat! eMail v1.60q
Windows 2000 5.0.2195 (Service Pack 2)
Today is the tomorrow you worried about yesterday.


__
Archives   : http://tbtech.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]




Re: colour group

2002-06-18 Thread Tim Musson

Hey Luigi,

My MUA believes you used The Bat! (v1.60q) Personal
to write the following on Tuesday, June 18, 2002 at 1:44:46 PM.

LR> I am _deeply_ sorry.

No reason to be sorry, TB has too many cool things to not overlook
some. I do it all the time!

-- 
[EMAIL PROTECTED]
MUA = TB! v1.60q (www.RitLabs.com/The_Bat)
Windows 2000 5.0.2195 (Service Pack 2)
How come wrong numbers are never busy?


__
Archives   : http://tbtech.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]




Re: colour group

2002-06-18 Thread Tim Musson

Hey Luigi,

My MUA believes you used The Bat! (v1.60q) Personal
to write the following on Tuesday, June 18, 2002 at 1:21:52 PM.

LR> Hello Everyone,

LR> If I apply a colour group to an unread message, the colour of the
LR> message in the message list is not applied until I read the
LR> message.

LR> A bug or a feature?

Did you notice there is a "Read" and "Unread" tab in the color group
tool?

-- 
[EMAIL PROTECTED]
MUA = TB! v1.60q (www.RitLabs.com/The_Bat)
Windows 2000 5.0.2195 (Service Pack 2)
Hang up and drive. 


__
Archives   : http://tbtech.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]




Re: BatPost

2002-06-15 Thread Tim Musson

Hey Eddie,

My MUA believes you used The Bat! (v1.60k) Personal
to write the following on Saturday, June 15, 2002 at 2:49:42 AM.

EC> Dear Tim,

EC>  --->>> Tim Musson / Freitag 14.06.2002, 22:04:10
EC> BatPost


>> I have heard of Hamster, and I don't know if they both server the
>> same function. I have not really looked at Hamster, and can't read
>> the docs for BatPost.

EC> What language is it? If it is in German or French I could look into
EC> it.

I don't know, but I don't think it is German or French. You could grab
it.  The zip dl is only 1,475,951 bytes, or if you like, I can zip the
.rtf file and send it to you directly.

-- 
[EMAIL PROTECTED]
MUA = TB! v1.60q (www.RitLabs.com/The_Bat)
Windows 2000 5.0.2195 (Service Pack 2)
What's brown and sticky? A stick!


__
Archives   : http://tbtech.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]




Re: BatPost

2002-06-14 Thread Tim Musson

Hey Eddie,

My MUA believes you used The Bat! (v1.60k) Personal
to write the following on Friday, June 14, 2002 at 4:01:45 PM.

>> An MTA is what moves your mail around the networks, and the POA is
>> where you MUA (Mail User Agent - The Bat!) gets the mail.

>> Does that help?  Did I put in enough abbreviations 

EC> In Germany there is a often used Program called 'Hamster' that you can
EC> configure to pickup mails and news everywhere. Is BatPost something
EC> like this?

I have heard of Hamster, and I don't know if they both server the same
function.  I have not really looked at Hamster, and can't read the
docs for BatPost.

-- 
[EMAIL PROTECTED]
MUA = TB! v1.60q (www.RitLabs.com/The_Bat)
Windows 2000 5.0.2195 (Service Pack 2)
How come wrong numbers are never busy?


__
Archives   : http://tbtech.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]




Re: Choosing to install The Bat v1.60 ?

2002-06-14 Thread Tim Musson

Hey David,

My MUA believes you used The Bat! (v1.53d) Personal
to write the following on Friday, June 14, 2002 at 3:58:04 PM.

DRA> Greetings, all:

DRA> I've been really quite happy with my current version of the Bat and am
DRA> now considering v 1.60. There seem to be so many more features, and
DRA> fewer bugs.

DRA> I've got to tell you that the most miserable experience I've had for
DRA> some time recently had to do with re-installing (or was it moving?
DRA> moving?) my (legal) copy of The Bat. A lot of email was lost.

DRA> My philosophy in SW is usually to let sleeping dogs lie.

DRA> Is there anybody out there who would like to reassure me that this
DRA> upgrade is pretty much foolproof, and that the instructions provided
DRA> with the download upgrade are just fine?

Well, I know I didn't have a problem...
Close TB, back it up (I just copied the folder - as I usually keep it
backed up with the internal bu), run the installer.  Everything took
less than 10 min!

-- 
[EMAIL PROTECTED]
MUA = TB! v1.60q (www.RitLabs.com/The_Bat)
Windows 2000 5.0.2195 (Service Pack 2)
Keyboard Not Found - Press [F1] to Continue 


__
Archives   : http://tbtech.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]




Re: BatPost

2002-06-14 Thread Tim Musson

Hey Eddie,

My MUA believes you used The Bat! (v1.60k) Personal
to write the following on Friday, June 14, 2002 at 2:57:14 PM.

EC> Could you please explain me what BatPost is for?

I am not sure yet, the docs are not in English, and I am not multi
lingual :-(

I am guessing it is a Post Office Agent [POA] (doing POP, IMAP, and
SMTP)that runs on your workstation.  Seems to have lots of features
that I have also seen on Message Transfer Agents [MTA].

An MTA is what moves your mail around the networks, and the POA is
where you MUA (Mail User Agent - The Bat!) gets the mail.

Does that help?  Did I put in enough abbreviations 

-- 
[EMAIL PROTECTED]
MUA = TB! v1.60q (www.RitLabs.com/The_Bat)
Windows 2000 5.0.2195 (Service Pack 2)
Why is it considered necessary to nail down the lid of a coffin?


__
Archives   : http://tbtech.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]




Re: BatPost

2002-06-14 Thread Tim Musson

Hey Tim,

My MUA believes you used The Bat! (v1.60q) Personal
to write the following on Friday, June 14, 2002 at 12:06:01 PM.

TM> Hey Marck,

TM> My MUA believes you used Ritlabs SecureBat! (v1.60q)
TM> to write the following on Friday, June 14, 2002 at 11:35:59 AM.

MO Maybe the info is to be found somewhere in the non-english
MO documentation...

>>> I got it running, but haven't been able to do anything...

>>> Marck, wondering if this should go to TBOT? or is it ok here. Also,
>>> does anyone know if there is a list for BatPost?

MDP>> I don't know of a list for BatPost. TBOT is a bit of a stretch, but
MDP>> TBTECH seems an appropriate place for such a conversation.

TM> TBTECH it is then...

Cool! I used telnet (port 25) to connect to BatPost, then TB to pop
the message down!

Do I know what I am doing, no..., but it still seems *very* cool! I
wonder what RIT is going to charge for it.

Lots of options that I can't seem to figure out.  ie, in the
Configurator\Options\SMTPAuth\Local: there is a default of "Enable 3".
Any idea what that stuff is?

It looks like it is a POA with MTA features built in.  Lots of options
that I can't figure out...  Seems to be able to do both POP, IMAP, and
SMTP.  Did they write this so they could have their own
IMAP server and be able to get into the core of it while updating TB!
to do IMAP better?  

-- 
[EMAIL PROTECTED]
MUA = TB! v1.60q (www.RitLabs.com/The_Bat)
Windows 2000 5.0.2195 (Service Pack 2)
If you drink, don't park.  Accidents cause people.


__
Archives   : http://tbtech.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]




Re: Windows infinite

2002-05-31 Thread Tim Musson

Hey Roelof,

My MUA believes you used The Bat! (v1.60m) Personal
to write the following on Thursday, May 30, 2002 at 7:16:30 PM.

RO> No, after all it's not that difficult to kill 100 windows,
RO> especially when they're al maximized, so the closing x is at the
RO> same place.

I believe that the  key works to close sub windows of TB...  ie,
if I enter on a message to open it,  closes it.

-- 
[EMAIL PROTECTED]
MUA = TB! v1.60k (www.RitLabs.com/The_Bat)
Windows 2000 5.0.2195 (Service Pack 2)
Ever stop to think, and forget to start again?


__
Archives   : http://tbtech.thebat.dutaint.com
Moderators : mailto:[EMAIL PROTECTED]
Unsubscribe: mailto:[EMAIL PROTECTED]




Re[3]: All mail to one account

2001-06-07 Thread Tim Musson

Hey andema,

Thursday, June 07, 2001, 7:08:10 AM, you wrote:

a> My question for everyone is two fold:-
a> 1) GMX only updates every 6 hours are there any faster services?
a> 2) It can only take mail from three other pop address anyone got a
a> service that can do more?

I don't think www.MyRealBox.com has a limit on the number of other pop
services it will get mail from, but I don't know how often it gathers
mail...

-- 
[EMAIL PROTECTED]
Using The Bat! eMail v1.51
Windows NT 5.0.2195 (Service Pack 1)
Why doesn't glue stick to the inside of the bottle?

-- 
__
Archives   : 
Moderators : 
Unsubscribe: 

You are subscribed as : archive@jab.org





Re[2]: Yahoo deleted mail (was:Delete post from Pop3 Server)

2001-02-27 Thread Tim Musson

Hey Dean,

Tuesday, February 27, 2001, 1:59:09 AM, you wrote:

D> I gave Myrealbox.com  a try, it appears to work with IMAP OK. However, I cannot
D> get it to work with POP3.

I have a number of accounts on MyRealBox, and I use POP3 with all of
them with no problems.  How do you have TB! set up to get the mail
(Account|Properties|Transport)?

D> One last question. I'm unfamiliar with IMAP. It downloads incredibly fast, I
D> have the settings to delete from the server, however I cannot get onto the web
D> site to actually see if this is happening (the realbox.com server) Does IMAP
D> delete from the server like POP3?  And an OT does IMAP/TheBAT! & Norton AV still
D> work?

>From previous posts I think TB! has not fully implemented IMAP4.  I
have not had good luck using IMAP4 in TB!, but have not really needed
it yet. I will need it when I get my ancient GroupWise account up so I
can pull all my old mail and folders, so if anyone can shed some light
on how well TB! does IMAP4 (and what it's behavior is), I would be
interested... .

BTW Dean, IMAP4 is similar to POP, but it adds the ability to have
folders (sync'ed on the server and client), and it lets you leave mail
on the server and mark it "read".

-- 
[EMAIL PROTECTED]
Using The Bat! eMail v1.49
Windows NT 5.0.2195 (Service Pack 1)
Remember folks: Stop lights timed for 35mph are also timed for 70mph.

-- 
__
Archives   : 
Moderators : 
Unsubscribe: 

You are subscribed as : archive@jab.org





Re[2]: Yahoo deleted mail (was:Delete post from Pop3 Server)

2001-02-26 Thread Tim Musson

Hey Dave,

Monday, February 26, 2001, 1:41:55 PM, you wrote:

DG> So far a weekly trip to the yahoo mail website to empty the trash folder is less
DG> of an inconvenience than moving my mailing lists to a different email address!
DG> But I will keep these suggestions in mind should the need arise.

One of the reasons I registered my own domain.  I can point my
[EMAIL PROTECTED] address at any "real" account I want, and change as
often as I like.

-- 
[EMAIL PROTECTED]
Using The Bat! eMail v1.49
Windows NT 5.0.2195 (Service Pack 1)
Why doesn't glue stick to the inside of the bottle?

-- 
__
Archives   : 
Moderators : 
Unsubscribe: 

You are subscribed as : archive@jab.org





Yahoo deleted mail (was:Delete post from Pop3 Server)

2001-02-26 Thread Tim Musson

Hey Dave,

Monday, February 26, 2001, 12:15:29 PM, you wrote:

D>>  I have my email account set up to delete posts from the Pop3 Server.  In this
D>>  case Yahoo as @home isn't working.  My messages are getting placed in the
D>>  delete file at Yahoo, however not deleted from the Yahoo Server. Any
D>>  suggestions?
  
DG> I will be interested to see if anyone has an answer for this!

I don't get enough mail at my Yahoo account for this to be a problem,
but I seem to remember there being a thread on this in the TBUDL a
while back. I think the answer was that Yahoo will time the messages
out after a time. I also recall that it was not a feature you could
change.

A possible solution is to use a free mail service like www.gmx.net, or
www.MyRealBox.com.

-- 
[EMAIL PROTECTED]
Using The Bat! eMail v1.49
Windows NT 5.0.2195 (Service Pack 1)
Why is it that doctors call what they do "practice"?

-- 
__
Archives   : 
Moderators : 
Unsubscribe: 

You are subscribed as : archive@jab.org





Re[2]: Test

2001-01-18 Thread Tim Musson

Hey Roel,

Thursday, January 18, 2001, 4:26:28 PM, you wrote:

TM>>   I have heard this list is bouncing messages...

R> well, that came through :-)
R> and I'm testing too...

Yep, I got both also.

Moderators, Sorry this is off topic, & it is my last test post. 

-- 
[EMAIL PROTECTED]
Using The Bat! eMail v1.49
Windows NT 5.0.2195 (Service Pack 1)
Out of my mind...Back in five minutes. 

-- 
__
Archives   : 
Moderators : 
Unsubscribe: 




Test

2001-01-18 Thread Tim Musson

TBTECH,

  I have heard this list is bouncing messages...

-- 
[EMAIL PROTECTED]
Using The Bat! eMail v1.49
Windows NT 5.0.2195 (Service Pack 1)
Experience is something you don't get until just after you need it.

-- 
__
Archives   : 
Moderators : 
Unsubscribe: