Setting default SMTP port

This commit is contained in:
Sebastien Ros
2013-12-13 11:55:02 -08:00
parent ae7a5dea9b
commit 0ce510ff88

View File

@@ -21,7 +21,7 @@ namespace Orchard.Email.Models {
}
public int Port {
get { return this.Retrieve(x => x.Port); }
get { return this.Retrieve(x => x.Port, 25); }
set { this.Store(x => x.Port, value); }
}