[Checkins] SVN: Products.TransactionalMailHost/trunk/ new no_tls, force_tls properties

Andreas Jung andreas at andreas-jung.com
Sat Aug 18 12:13:40 EDT 2007


Log message for revision 78952:
  new no_tls, force_tls properties
  

Changed:
  U   Products.TransactionalMailHost/trunk/mailhost.py
  U   Products.TransactionalMailHost/trunk/version.txt

-=-
Modified: Products.TransactionalMailHost/trunk/mailhost.py
===================================================================
--- Products.TransactionalMailHost/trunk/mailhost.py	2007-08-18 16:10:41 UTC (rev 78951)
+++ Products.TransactionalMailHost/trunk/mailhost.py	2007-08-18 16:13:40 UTC (rev 78952)
@@ -32,6 +32,8 @@
         {'id' : 'smtp_port', 'type' : 'int', 'mode' : 'rw'}, 
         {'id' : 'smtp_username', 'type' : 'string', 'mode' : 'rw'}, 
         {'id' : 'smtp_password', 'type' : 'string', 'mode' : 'rw'}, 
+        {'id' : 'force_tls', 'type' : 'boolean', 'mode' : 'rw'}, 
+        {'id' : 'no_tls', 'type' : 'boolean', 'mode' : 'rw'}, 
     )
 
     id = 'MailHost'
@@ -40,6 +42,8 @@
     smtp_port = 25
     smtp_username = ''
     smtp_password = ''
+    force_tls = False
+    no_tls = False
 
     security = ClassSecurityInfo()
 

Modified: Products.TransactionalMailHost/trunk/version.txt
===================================================================
--- Products.TransactionalMailHost/trunk/version.txt	2007-08-18 16:10:41 UTC (rev 78951)
+++ Products.TransactionalMailHost/trunk/version.txt	2007-08-18 16:13:40 UTC (rev 78952)
@@ -1 +1 @@
-0.1.1
+0.1.2



More information about the Checkins mailing list