[PATCH v2 1/2] Use smtplib for sending emails

2020-02-07 Thread Lukas Fleischer
Support mail delivery without a local MTA. Instead, an SMTP server can now be configured using the smtp-server option in the [notifications] section. Signed-off-by: Lukas Fleischer --- Change the default configuration to use localhost. aurweb/scripts/notify.py | 13 -

[PATCH v2 2/2] Make SMTP port and authentication configurable

2020-02-07 Thread Lukas Fleischer
Signed-off-by: Lukas Fleischer --- Change the default configuration to use localhost. aurweb/scripts/notify.py | 19 ++- conf/config.defaults | 5 + 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/aurweb/scripts/notify.py b/aurweb/scripts/notify.py index

[PATCH] Use smtplib for sending emails

2020-02-07 Thread Lukas Fleischer
Support mail delivery without a local MTA. Instead, an SMTP server can now be configured using the smtp-server option in the [notifications] section. Signed-off-by: Lukas Fleischer --- aurweb/scripts/notify.py | 13 - conf/config.defaults | 2 +- 2 files changed, 9

Re: Automated database migrations with Alembic

2020-02-07 Thread Lukas Fleischer
Hi Frédéric, Thanks for the proposal! On Fri, 07 Feb 2020 at 01:51:28, Frédéric Mangano-Tarumi wrote: > We want to be able to deploy new versions of aurweb from Ansible without > requiring manual intervention for data migration. That is correct. We are still working closely with the DevOps team

[PATCH] Make SMTP port and authentication configurable

2020-02-07 Thread Lukas Fleischer
Signed-off-by: Lukas Fleischer --- aurweb/scripts/notify.py | 19 ++- conf/config.defaults | 5 + 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/aurweb/scripts/notify.py b/aurweb/scripts/notify.py index 35d2701..ddf4736 100755 ---