Huge Collections of Software Manuals and Knowledgebase

GreatManuals.com
Huge Collections of Software Manuals and Knowledgebase

 
Home Contact Us Request to publish your help manuals Request to remove your help manuals
Introduction
» Turbo Email Answer
» Features
» Installation
» General Description of Operation
» Quickstart Tutorial
User Interface
» Keyboard Acceleration
» Email I/O Accounts Dialog
» Auto-Responder Setup Dialog
» General Settings Dialog
» Mail Transfer Settings
» Backup & Auto Save Configuration
» Menu/Config/Set Application Database Location
» Common Base Macros
» Internal Mail Editor
» Template Editor Dialog
FAQ & Troubleshooting
» How To...
» FAQ
 

Common Base Macros

Hint: See Python Language for details of the macro language and TEA's macro API.

Answer Base Macro
This macro is always executed before execution of the template's individual answer macro. The computed name space (all set variables) is also inherited to the template's macro.

Classification Base Macro
This macro is always executed before execution of the template's individual classification macro. The computed name space (all set variables) is also inherited to the template's macro.

Application Init Macro
This macro is executed when TEA starts (or when you press the "Run App Init Macro" button in this dialog. The computed name space (all set variables) is also inherited to the other 2 Base Macros! Thus can e.g. define global utility functions etc... like:

file retrieval free spy software notebook data recovery
digital photo restore camera photo recovery flash drive undelete
undelete memory card data download drive recovery software professional data recovery

def test_from_me():
return 'xellsoft.com' in mail.From

A special function is def email_once_script_classifier(). If this function is defined here, then it is executed once for all templates when a new mail is classified (the Classification Base Macro is executed for each template which is classified against the new mail). This can improve run-time for complex classification setups.

def email_once_script_classifier():
global from_me
from_me=test_from_me() # mail.From is constant for each template!

Home | Contact Us | Request to publish your help manuals | Request to remove your help manuals