fix bug in email sender address
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Max Erenberg 2021-11-02 03:04:51 -04:00
parent 1f107b0614
commit ae48bcd98a
4 changed files with 10 additions and 4 deletions

View File

@ -1 +1 @@
1.0.5 1.0.6

View File

@ -74,7 +74,7 @@ class MailService:
if '@' in auth_user: if '@' in auth_user:
auth_user = auth_user[:auth_user.index('@')] auth_user = auth_user[:auth_user.index('@')]
if user.terms: if user.non_member_terms:
prog = 'addclubrep' prog = 'addclubrep'
desc = 'Club Rep' desc = 'Club Rep'
else: else:

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
ceo (1.0.6-buster1) buster; urgency=medium
* Fix bug in sender email address.
-- Max Erenberg <merenber@csclub.uwaterloo.ca> Tue, 02 Nov 2021 07:05:00 +0000
ceo (1.0.5-buster1) buster; urgency=medium ceo (1.0.5-buster1) buster; urgency=medium
* Use port 465 for smtps. * Use port 465 for smtps.

View File

@ -38,8 +38,8 @@ home = /users
skel = /users/skel skel = /users/skel
[mail] [mail]
smtp_url = smtps://mail.csclub.uwaterloo.ca smtp_url = smtp://mail.csclub.uwaterloo.ca
smtp_starttls = false smtp_starttls = true
[mailman3] [mailman3]
# This is only used on the mailman_host. # This is only used on the mailman_host.