1
0
mirror of https://github.com/moparisthebest/mail synced 2024-12-23 07:48:48 -05:00

Add comment to email dao code for integration test

This commit is contained in:
Felix Hammerl 2014-06-17 12:41:22 +02:00
parent 20f12f042b
commit 6124bd1a04

View File

@ -886,7 +886,7 @@ define(function(require) {
self._pgpMailer.send({
encrypt: true,
cleartextMessage: str.message + str.signature,
smtpclient: options.smtpclient,
smtpclient: options.smtpclient, // filled solely in the integration test, undefined in normal usage
mail: options.email,
publicKeysArmored: options.email.publicKeysArmored
}, callback);
@ -909,7 +909,7 @@ define(function(require) {
// mime encode, sign and send email via smtp
this._pgpMailer.send({
smtpclient: options.smtpclient,
smtpclient: options.smtpclient, // filled solely in the integration test, undefined in normal usage
mail: options.email
}, callback);
};
@ -1453,4 +1453,4 @@ define(function(require) {
}
return EmailDAO;
});
});