Fix some a couple of places where form variables were passed, remove a couple more...
[civicrm-core.git] / xml / schema / Mailing / BounceType.xml
1 <?xml version="1.0" encoding="iso-8859-1" ?>
2
3 <table>
4 <base>CRM/Mailing</base>
5 <class>BounceType</class>
6 <name>civicrm_mailing_bounce_type</name>
7 <comment>Table to index the various bounce types and their properties</comment>
8 <component>CiviMail</component>
9 <field>
10 <name>id</name>
11 <title>Bounce Type ID</title>
12 <type>int unsigned</type>
13 <required>true</required>
14 <html>
15 <type>Number</type>
16 </html>
17 </field>
18 <primaryKey>
19 <name>id</name>
20 <autoincrement>true</autoincrement>
21 </primaryKey>
22 <field>
23 <name>name</name>
24 <title>Bounce Type Name</title>
25 <type>varchar</type>
26 <length>24</length>
27 <required>true</required>
28 <comment>Type of bounce</comment>
29 </field>
30 <field>
31 <name>description</name>
32 <title>Bounce Type Description</title>
33 <type>varchar</type>
34 <length>255</length>
35 <comment>A description of this bounce type</comment>
36 </field>
37 <field>
38 <name>hold_threshold</name>
39 <title>Hold Threshold</title>
40 <type>int unsigned</type>
41 <required>true</required>
42 <comment>Number of bounces of this type required before the email address is put on bounce hold</comment>
43 </field>
44 </table>