launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #22417
[Merge] lp:~cjwatson/launchpad/db-email-force-strong-auth into lp:launchpad/db-devel
Colin Watson has proposed merging lp:~cjwatson/launchpad/db-email-force-strong-auth into lp:launchpad/db-devel.
Commit message:
Add PersonSettings.require_strong_email_authentication.
Requested reviews:
Stuart Bishop (stub): db
Launchpad code reviewers (launchpad-reviewers): db
For more details, see:
https://code.launchpad.net/~cjwatson/launchpad/db-email-force-strong-auth/+merge/343789
--
Your team Launchpad code reviewers is requested to review the proposed merge of lp:~cjwatson/launchpad/db-email-force-strong-auth into lp:launchpad/db-devel.
=== added file 'database/schema/patch-2209-68-2.sql'
--- database/schema/patch-2209-68-2.sql 1970-01-01 00:00:00 +0000
+++ database/schema/patch-2209-68-2.sql 2018-04-23 08:40:44 +0000
@@ -0,0 +1,10 @@
+-- Copyright 2018 Canonical Ltd. This software is licensed under the
+-- GNU Affero General Public License version 3 (see the file LICENSE).
+
+SET client_min_messages=ERROR;
+
+ALTER TABLE PersonSettings ADD COLUMN require_strong_email_authentication boolean;
+
+COMMENT ON COLUMN PersonSettings.require_strong_email_authentication IS 'Require strong authentication for incoming emails.';
+
+INSERT INTO LaunchpadDatabaseRevision VALUES (2209, 68, 2);