diff options
author | Thomas B. <thomas@roundcube.net> | 2013-09-16 10:47:24 -0700 |
---|---|---|
committer | Thomas B. <thomas@roundcube.net> | 2013-09-16 10:47:24 -0700 |
commit | 0201298cd8f767389789f7c35897985d4475836a (patch) | |
tree | 49ba49fade3e2dd998a569e1694c5e31ad301af3 /config/defaults.inc.php | |
parent | b5c364273d7b026c0deda2326018aabff8bec73c (diff) | |
parent | 153e455f6566cb7a4349b7f2197e842d6ec9bf90 (diff) |
Merge pull request #118 from Dennis1993/patch-12
Added support for default font size and fix legacy code for default font
Diffstat (limited to 'config/defaults.inc.php')
-rw-r--r-- | config/defaults.inc.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/defaults.inc.php b/config/defaults.inc.php index 95e024ccc..97c8f3b25 100644 --- a/config/defaults.inc.php +++ b/config/defaults.inc.php @@ -984,5 +984,9 @@ $config['autocomplete_single'] = false; // Georgia, Helvetica, Impact, Tahoma, Terminal, Times New Roman, Trebuchet MS, Verdana $config['default_font'] = 'Verdana'; +// Default font size for composed HTML message. +// Supported sizes: 8pt, 10pt, 12pt, 14pt, 18pt, 24pt, 36pt +$config['default_font_size'] = '10pt'; + // Enables display of email address with name instead of a name (and address in title) $config['message_show_email'] = false; |