Changeset 115 for trunk

Show
Ignore:
Timestamp:
11/07/08 21:55:12 (2 months ago)
Author:
amcgregor
Message:

Corrected missing default value of None on the mail.smtp.tls configuration option.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/turbomail/providers/smtp.py

    r113 r115  
    3232        self.user = self.config_get("mail.smtp.user", tm2_key='username') 
    3333        self.password = self.config_get("mail.smtp.password") 
    34         self.tls = self.config_get("mail.smtp.tls") 
     34        self.tls = self.config_get("mail.smtp.tls", None) 
    3535        self.debug = self.config_get("mail.smtp.debug", False) 
    3636        # TODO: rename count - it needs a comment