This is just some static backup of the original site, don't expect every link to work!

Ticket #157: diff_0.6.0pre4_0.6.0pre5.txt

File diff_0.6.0pre4_0.6.0pre5.txt, 1.1 KB (added by rene, 13 years ago)

diff from 0.6.0pre4 to 0.6.0pre5

Line 
1------------- branches/0.6/chrome/content/v_identity/vI_account.js -------------
2index 28e6c54..5766425 100644
3@@ -229,7 +229,7 @@ var vI_account = {
4        vI_account.account.defaultIdentity.setCharAttribute("useremail", identityData.email);
5        vI_account.account.defaultIdentity.setUnicharAttribute("fullName", identityData.fullName);
6       
7-       vI_account.account.defaultIdentity.smtpServerKey = identityData.smtp.key;
8+       vI_account.account.defaultIdentity.smtpServerKey = identityData.smtp.keyNice; // key with "" for DEFAULT_SMTP_TAG
9 
10        vI_notificationBar.dump("## vI_account: Stored virtualIdentity (name "
11            + vI_account.account.defaultIdentity.fullName + " email "
12
13---------- branches/0.6/chrome/content/v_identity/vI_identityData.js ----------
14index ef78e3a..2bd0c27 100644
15@@ -282,7 +282,7 @@ smtpObj.prototype = {
16    },
17    equal : function(compareSmtpObj) {
18        if (this.key == null || compareSmtpObj.key == null) return true;
19-       return (this.key == compareSmtpObj.key);
20+       return (this.keyNice == compareSmtpObj.keyNice);
21    },
22    hasNoDefinedSMTP : function() {
23        return (this.key == NO_SMTP_TAG);