Revision: 109
http://svn.sourceforge.net/nmailserver/?rev=109&view=rev
Author: tmyroadctfig
Date: 2007-01-08 04:56:49 -0800 (Mon, 08 Jan 2007)
Log Message:
-----------
Fixed defect in assigning next delivery attempt.
Modified Paths:
--------------
NMail/trunk/NMail/DataTypes/Spool/SpoolRecipient.cs
Modified: NMail/trunk/NMail/DataTypes/Spool/SpoolRecipient.cs
===================================================================
--- NMail/trunk/NMail/DataTypes/Spool/SpoolRecipient.cs 2007-01-08 12:54:11 UTC (rev 108)
+++ NMail/trunk/NMail/DataTypes/Spool/SpoolRecipient.cs 2007-01-08 12:56:49 UTC (rev 109)
@@ -35,7 +35,7 @@
public SpoolRecipient(EmailAddress address, int recipientId, DateTime nextDelivery, int deliveryAttempts) {
this.address = address;
this.recipientId = recipientId;
- this.nextDeliveryAttempt = nextDeliveryAttempt;
+ this.nextDeliveryAttempt = nextDelivery;
this.deliveryAttempts = deliveryAttempts;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|