Roundcube Community Forum

 

Webmail Date Format

Started by krupapal, February 18, 2015, 11:56:04 PM

Previous topic - Next topic

krupapal

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

SKaero

You can change the date format under Settings -> User Interface -> Date format.

yehwhatevr

I'm curious as to why there is not an option for mm/dd/yy or mm/dd/yyyy?

SKaero

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');