Replace all instances of 255 as a max length with 191; ref #2421

This commit is contained in:
Dane Everitt 2020-09-26 16:29:26 -07:00
parent 4f21fa85f8
commit cc6f98c0fd
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
24 changed files with 41 additions and 38 deletions

View file

@ -18,10 +18,10 @@ class MailSettingsFormRequest extends AdminFormRequest
'mail:host' => 'required|string',
'mail:port' => 'required|integer|between:1,65535',
'mail:encryption' => ['present', Rule::in([null, 'tls', 'ssl'])],
'mail:username' => 'nullable|string|max:255',
'mail:password' => 'nullable|string|max:255',
'mail:username' => 'nullable|string|max:191',
'mail:password' => 'nullable|string|max:191',
'mail:from:address' => 'required|string|email',
'mail:from:name' => 'nullable|string|max:255',
'mail:from:name' => 'nullable|string|max:191',
];
}