From 88458a6565247863a96ea2f3a99f22c5d4a79a9e Mon Sep 17 00:00:00 2001 From: "dmose%mozilla.org" <> Date: Thu, 25 Jan 2001 04:26:23 +0000 Subject: patch from bug 17464 to give user some control over what sorts of bug mail get sent to an account. Original patch by al_raetz@yahoo.com and lots of additional hacking by me; r=donm@bluemartini.com --- checksetup.pl | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'checksetup.pl') diff --git a/checksetup.pl b/checksetup.pl index a0a729876..0b00bb470 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -748,6 +748,7 @@ $table{profiles} = newemailtech tinyint not null, mybugslink tinyint not null default 1, blessgroupset bigint not null, + emailflags mediumtext, unique(login_name)'; @@ -1868,6 +1869,13 @@ unless (-d 'graphs') { } } +# +# 2000-12-18. Added an 'emailflags' field for storing preferences about +# when email gets sent on a per-user basis. +# +if (!GetFieldDef('profiles', 'emailflags')) { + AddField('profiles', 'emailflags', 'mediumtext'); +} # # If you had to change the --TABLE-- definition in any way, then add your -- cgit v1.2.3-24-g4f1b