Author Topic: Webmail Date Format  (Read 6723 times)

Offline krupapal

  • Newbie
  • *
  • Posts: 1
Webmail Date Format
« on: February 18, 2015, 11:56:04 PM »
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

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,876
    • SKaero - Custom Roundcube development
Re: Webmail Date Format
« Reply #1 on: February 19, 2015, 01:40:46 AM »
You can change the date format under Settings -> User Interface -> Date format.

Offline yehwhatevr

  • Newbie
  • *
  • Posts: 6
Re: Webmail Date Format
« Reply #2 on: February 07, 2017, 01:35:54 PM »
I'm curious as to why there is not an option for mm/dd/yy or mm/dd/yyyy?

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,876
    • SKaero - Custom Roundcube development
Re: Webmail Date Format
« Reply #3 on: February 07, 2017, 03:11:16 PM »
You can add any you want with the following config options:
Code: [Select]
// 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');