------------- branches/0.6/chrome/content/v_identity/vI_account.js ------------- index 28e6c54..5766425 100644 @@ -229,7 +229,7 @@ var vI_account = { vI_account.account.defaultIdentity.setCharAttribute("useremail", identityData.email); vI_account.account.defaultIdentity.setUnicharAttribute("fullName", identityData.fullName); - vI_account.account.defaultIdentity.smtpServerKey = identityData.smtp.key; + vI_account.account.defaultIdentity.smtpServerKey = identityData.smtp.keyNice; // key with "" for DEFAULT_SMTP_TAG vI_notificationBar.dump("## vI_account: Stored virtualIdentity (name " + vI_account.account.defaultIdentity.fullName + " email " ---------- branches/0.6/chrome/content/v_identity/vI_identityData.js ---------- index ef78e3a..2bd0c27 100644 @@ -282,7 +282,7 @@ smtpObj.prototype = { }, equal : function(compareSmtpObj) { if (this.key == null || compareSmtpObj.key == null) return true; - return (this.key == compareSmtpObj.key); + return (this.keyNice == compareSmtpObj.keyNice); }, hasNoDefinedSMTP : function() { return (this.key == NO_SMTP_TAG);