This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== QWKLIMITS field,limit ====== QWKLIMITS(field) ===== 1) The QWKLIMITS Statement ===== This statement allows the PPL programmer to modify a users QWK limits. Four fields can be modified with their statement. **Important note:** You **must** use GET USER AND PUTUSER with these QWK functions. **Example:** GETUSER QWKLIMITS MAXMSGS,500 PUTUSER - Max Messages: Maximum messages allowed in a qwk packet **Note:** If you specify a number higher than that contained in PCBSETUP the values in PCBSETUP will be used. - Max Messages per Conference: Maximum messages allowed in a qwk packet per conference. **Note:** If you specify a number higher than that contained in PCBSETUP the values in PCBSETUP will be used. - Personal Attach Limit: Maximum number of bytes in attached files for the user. - Public Attach Limit: Maximum number of bytes in attached files for the user. Four constants have been defined to identify the FIELD value. | Constant | Value | Field | |:---------------|------:|:-----------------------------| | MAXMSGS | 0 | Max messages per qwk packet | | CMAXMSGS | 1 | Max Messages per conference | | ATTACH_LIM_U | 2 | Personal attach bytes limit | | ATTACH_LIM_P | 3 | Public attach bytes limit | ===== 2) The QWKLIMITS() function ===== This functions returns the values contained in the users QWK configuration. The same constants used in the QWKLIMITS statements can be used with the field parameter. **Example:** GETUSER PRINTLN QWKLIMITS(MAXMSGS)