Skip to content

Commit

Permalink
add default smtp port 587
Browse files Browse the repository at this point in the history
realistically it will never NOT be 587
  • Loading branch information
chennisden committed Jun 1, 2024
1 parent 10c73f5 commit 78d0b49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion store/settings/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class UserSettings:
@dataclass
class EmailSettings:
host: str = field(default=MISSING)
port: int = field(default=MISSING)
port: int = field(default=587)
email: str = field(default=MISSING)
password: str = field(default=MISSING)
name: str = field(default=MISSING)
Expand Down

0 comments on commit 78d0b49

Please sign in to comment.