added some safeguards for the mail to community members/conference

participants: to wit, any user can opt-out from ALL those mailings with one
setting; each message now carries a standard disKlaimer indicating how the
user can opt-out (and it's REAL opt-out, not this fakey stuff the spammers do)
This commit is contained in:
Eric J. Bowersox
2001-12-04 20:50:04 +00:00
parent e35045acf4
commit 9cc34facf6
11 changed files with 142 additions and 12 deletions

View File

@@ -257,4 +257,17 @@ public class OptionSet extends BitSet
} // end asString
/*--------------------------------------------------------------------------------
* External static operations
*--------------------------------------------------------------------------------
*/
public static final char getOptionChar(int index)
{
if ((index<0) || (index>=ALPHA.length()))
throw new IndexOutOfBoundsException();
return ALPHA.charAt(index);
} // end getOptionChar
} // end class OptionSet