Re: Sent messages to server IMAP folder

2016-06-06 Thread Petr Laznovsky

Dne 31.1.2016 v 22:34 Roelof Otten napsal(a):

Hallo TBUDL,

Op zondag 31 januari 2016, 18:40:53, schreef Petr Laznovsky:


I am new on IMAP: How could I config program to storing messages sent from IMAP 
account to server
SENT forlder, not only to local disc. Want to messages sent from
desktop will be visible in webmail
connnected to this account.


Match the sent messages folder to a sever side folder via:
  Account -> Properties -> Mail management -> Set predefined folders...




That is the point... Thank you...



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


Sent messages to server IMAP folder

2016-01-31 Thread Petr Laznovsky
I am new on IMAP: How could I config program to storing messages sent from IMAP account to server 
SENT forlder, not only to local disc. Want to messages sent from desktop will be visible in webmail 
connnected to this account.


thanks, L.



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


Re: Start specific profile depend on URI

2015-10-14 Thread Petr Laznovsky

Dne 11.10.2015 v 14:47 MFPA napsal(a):

Hi


On Sunday 11 October 2015 at 10:47:49 AM, in
<mid:mvdb85$8ao$1...@ger.gmane.org>, Petr Laznovsky wrote:




Solved. EDIT command sould be added into string and if
account name contain space, it must doublequoted in
command string. this could be added to documentation.



Glad you worked it out.

For my version of TB! the Help file does mention the need to use
quotes if a parameter contains spaces:-

Note: If a parameter value contains space characters, enclose
it in quotation marks. If a value contains quotation marks, you
should use single quotes (" ' " characters).




One more question:

OS send to application 'protocol_name:value' in %1, thus this whole string appears in 'Recipient' 
field of mail editor. Is it possible programatically (on the fly) parse such string to only part 
after semicolon is putted into RCPT field?


L.



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


Re: Start specific profile depend on URI

2015-10-11 Thread Petr Laznovsky

Dne 10.10.2015 v 15:21 Petr Laznovsky napsal(a):

Dne 8.10.2015 v 0:36 MFPA napsal(a):

Hi


On Wednesday 7 October 2015 at 3:14:54 AM, in
<mid:1888312682.20151007091...@gmx.net>, Thomas Fernandez wrote:



Hello Lore,



On Tue, 6 Oct 2015 14:11:29 -0700 GMT (07-Oct-15, 04:11
+0700 GMT), Lore Galore wrote:



On 10/6/2015 11:24 AM, Petr Laznovsky wrote:

Have internal web system with different type of customers. Want to
mail to customer using Thebat! but different type of customer need
different thebat! profiles (different sender address, signature,
etc..). Thebat should be started by clicking on link in web system,
now I using 'mailto:' URI for default profile, but I can specify
another URI for different profile.



Is such solution possible?



   You can set up multiple email accounts in The
Bat!, with one being primary/default.  When compose
window is open, you can look at the  bottom border of
the window and see the name of your default mail
account.  Clicking that shows all configured mail
accounts to choose  from, but choose it before you
type anything.



I cannot write any Regular Expressions, but they keep
impression me. I would think that a RegEx can parse the
URI for something you code into it, and then issue a
command "choose account". That would do the same thing
but automated.



Maybe it could be even simpler with AddressBook Group templates. For
one type of customer, all the customer email addresses go in a
specific AB Group. You set up the AB group templates to take care of
the sender address, signature, etc. Then, when you follow your Mailto:
link for a customer whose email address is in that AB Group, the
right template should be used. (If their address is in multiple AB
Groups, this won't work.)

Alternatively, take a look at "Command Line Parameters" in TB!'s help
file and see if /mail or /mailto might help you.



Have defined custom protocol 'testprot' in windows 7 by following registry 
entry:

"C:\Program Files (x86)\The Bat!\thebat.exe" 
"/MAILU=testprot;TO=%1;S=Test;TEXT=c:\work\template.txt"

in 'HKEY_CLASSES_ROOT\testprot\shell\open\command' registry path.
In my web application have following link:

mailbox-19nr15rz...@public.gmane.org

clik on link perform (if not started yet) start TheBat!, create mail by 
template and put it in the
Outbox folder, but such string 'testprot://mail...@host.com' is putted in 'To:'
box, insted of recipients address only. Changing registry string to '/MAILTOU' 
cause same behaviour
but mail goes into output folder of default profile, not the specified profile.

How could I achieve the created message is opened in 'edit message' window on 
focus with correct
recipient address?

L.


Solved. EDIT command sould be added into string and if account name contain space, it must 
doublequoted in command string. this could be added to documentation.


L.




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


Re: Start specific profile depend on URI

2015-10-10 Thread Petr Laznovsky

Dne 8.10.2015 v 0:36 MFPA napsal(a):

Hi


On Wednesday 7 October 2015 at 3:14:54 AM, in
<mid:1888312682.20151007091...@gmx.net>, Thomas Fernandez wrote:



Hello Lore,



On Tue, 6 Oct 2015 14:11:29 -0700 GMT (07-Oct-15, 04:11
+0700 GMT), Lore Galore wrote:



On 10/6/2015 11:24 AM, Petr Laznovsky wrote:

Have internal web system with different type of customers. Want to
mail to customer using Thebat! but different type of customer need
different thebat! profiles (different sender address, signature,
etc..). Thebat should be started by clicking on link in web system,
now I using 'mailto:' URI for default profile, but I can specify
another URI for different profile.



Is such solution possible?



   You can set up multiple email accounts in The
Bat!, with one being primary/default.  When compose
window is open, you can look at the  bottom border of
the window and see the name of your default mail
account.  Clicking that shows all configured mail
accounts to choose  from, but choose it before you
type anything.



I cannot write any Regular Expressions, but they keep
impression me. I would think that a RegEx can parse the
URI for something you code into it, and then issue a
command "choose account". That would do the same thing
but automated.



Maybe it could be even simpler with AddressBook Group templates. For
one type of customer, all the customer email addresses go in a
specific AB Group. You set up the AB group templates to take care of
the sender address, signature, etc. Then, when you follow your Mailto:
link for a customer whose email address is in that AB Group, the
right template should be used. (If their address is in multiple AB
Groups, this won't work.)

Alternatively, take a look at "Command Line Parameters" in TB!'s help
file and see if /mail or /mailto might help you.



Have defined custom protocol 'testprot' in windows 7 by following registry 
entry:

"C:\Program Files (x86)\The Bat!\thebat.exe" 
"/MAILU=testprot;TO=%1;S=Test;TEXT=c:\work\template.txt"

in 'HKEY_CLASSES_ROOT\testprot\shell\open\command' registry path.
In my web application have following link:

mail...@host.com

clik on link perform (if not started yet) start TheBat!, create mail by template and put it in the 
Outbox folder, but such string 'testprot://mail...@host.com' is putted in 'To:' box, insted of 
recipients address only. Changing registry string to '/MAILTOU' cause same behaviour but mail goes 
into output folder of default profile, not the specified profile.


How could I achieve the created message is opened in 'edit message' window on focus with correct 
recipient address?


L.



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


Re: Start specific profile depend on URI

2015-10-08 Thread Petr Laznovsky

Dne 8.10.2015 v 0:36 MFPA napsal(a):

Hi


On Wednesday 7 October 2015 at 3:14:54 AM, in
<mid:1888312682.20151007091...@gmx.net>, Thomas Fernandez wrote:



Hello Lore,



On Tue, 6 Oct 2015 14:11:29 -0700 GMT (07-Oct-15, 04:11
+0700 GMT), Lore Galore wrote:



On 10/6/2015 11:24 AM, Petr Laznovsky wrote:

Have internal web system with different type of customers. Want to
mail to customer using Thebat! but different type of customer need
different thebat! profiles (different sender address, signature,
etc..). Thebat should be started by clicking on link in web system,
now I using 'mailto:' URI for default profile, but I can specify
another URI for different profile.



Is such solution possible?



   You can set up multiple email accounts in The
Bat!, with one being primary/default.  When compose
window is open, you can look at the  bottom border of
the window and see the name of your default mail
account.  Clicking that shows all configured mail
accounts to choose  from, but choose it before you
type anything.



I cannot write any Regular Expressions, but they keep
impression me. I would think that a RegEx can parse the
URI for something you code into it, and then issue a
command "choose account". That would do the same thing
but automated.



Maybe it could be even simpler with AddressBook Group templates. For
one type of customer, all the customer email addresses go in a
specific AB Group. You set up the AB group templates to take care of
the sender address, signature, etc. Then, when you follow your Mailto:
link for a customer whose email address is in that AB Group, the
right template should be used. (If their address is in multiple AB
Groups, this won't work.)


I cant import list of addresses into thebat!, is stored and maintained in 
external db.


Alternatively, take a look at "Command Line Parameters" in TB!'s help
file and see if /mail or /mailto might help you.


Sounds interesting. Look like windows can start app with specified CLI parameters by custom URI 
handler. 
http://stackoverflow.com/questions/389204/how-do-i-create-my-own-url-protocol-e-g-so/7277284#7277284 
 will try it.


thanks to point me on this, L.



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


Start specific profile depend on URI

2015-10-06 Thread Petr Laznovsky
Have internal web system with different type of customers. Want to mail to customer using Thebat! 
but different type of customer need different thebat! profiles (different sender address, signature, 
etc..). Thebat should be started by clicking on link in web system, now I using 'mailto:' URI for 
default profile, but I can specify another URI for different profile.


Is such solution possible?

L.



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


Re: IMAP folders

2013-04-02 Thread Petr Laznovsky

Dne 2.4.2013 10:31, Tony Hoare napsal(a):

Hello Petr,

Monday, April 1, 2013, 9:54:15 AM, you wrote:


How do I recongnize if the imap folder is the local one (created by thebat!) or 
server one. When I
switching thebat! language, the folders in the Thebat! changing its names 
accordingly.


The IMAP folders are a darker blue colour. Also, right click the
folder properties, you'll see an item for IMAP-Specfic settings.

Cheers



Hi, does this means the only Inbox is folder on server? I was created the IMAP account, so I am sure 
the folders inside account are IMAP folders.


But as far as I know, the imap folders can be remote (on imap server) or local. I am curious if my 
folders are remote or local. About folder colors, see attached pict.


L.

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

IMAP folders

2013-04-01 Thread Petr Laznovsky
How do I recongnize if the imap folder is the local one (created by thebat!) or server one. When I 
switching thebat! language, the folders in the Thebat! changing its names accordingly.


L.



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


Re: Missing folders - ctrl+shift+alt+L does not help

2010-09-04 Thread Petr Laznovsky

Yes


Is the focus on the account tree pane when you try Ctrl Alt Shift L?




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


Missing folders - ctrl+shift+alt+L does not help

2010-09-01 Thread Petr Laznovsky

The folder tree on HDD under %APPDATA%\The Bat! is OK, but there are
few missed folders in TB folder list. There are also unnamed folder,
which receive new mails, which normally should be filtered into missed
folders.

ctrl+shift+alt+L solution does not help (Number of finded losts
folders are: 0)

Any ideas??

Win7, TB 4.0.38, Standard instalation

P.L.



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