| 640 | // ***** Endpoint for ValidatorEmail CFWS conformant emails valid ***** |
| 641 | C_ATTR(emailCfwsValid, :Local :AutoArgs) |
| 642 | void emailCfwsValid(Context *c) |
| 643 | { |
| 644 | Validator v({new ValidatorEmail( |
| 645 | u"field"_s, ValidatorEmail::CFWS, ValidatorEmail::NoOption, m_validatorMessages)}); |
| 646 | checkResponse(c, v.validate(c, Validator::NoTrimming | Validator::BodyParamsOnly)); |
| 647 | } |
| 648 | |
| 649 | // ***** Endpoint for ValidatorEmail CFWS conformant emails invalid ***** |
| 650 | C_ATTR(emailCfwsInvalid, :Local :AutoArgs) |