Please let me know how to Change the Date format in MM/DD/YYYY in RoundCube Web Mail.
It does not show in Drop Drop menu under settings.
Please let me know how to solve this issue.
Thank you,
Krupa Pal
You can change the date format under Settings -> User Interface -> Date format.
I'm curious as to why there is not an option for mm/dd/yy or mm/dd/yyyy?
You can add any you want with the following config options:
// use this format for date display (date or strftime format)
$config['date_format'] = 'Y-m-d';
// give this choice of date formats to the user to select from
// Note: do not use ambiguous formats like m/d/Y
$config['date_formats'] = array('Y-m-d', 'Y/m/d', 'Y.m.d', 'd-m-Y', 'd/m/Y', 'd.m.Y', 'j.n.Y');