diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-10-25 16:50:25 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-10-25 16:50:25 +0200 |
commit | 98b7b548a229600f7653cd67d9aae43675938143 (patch) | |
tree | 15c141db332b9ae87ef3fbf573ea32d30dc1ea76 /config | |
parent | 4e4c2511bc00cfc0214acab63b097efe142187a7 (diff) | |
parent | 9c41ba3c9ebbb14d01abe961c420f71f9463e61a (diff) |
Merge branch 'dev-canned-responses'
Conflicts (resolved):
skins/classic/includes/settingstabs.html
skins/larry/includes/settingstabs.html
Diffstat (limited to 'config')
-rw-r--r-- | config/defaults.inc.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/defaults.inc.php b/config/defaults.inc.php index 65c9eaaba..ed58b7f0e 100644 --- a/config/defaults.inc.php +++ b/config/defaults.inc.php @@ -615,6 +615,12 @@ $config['upload_progress'] = false; // Setting it to 0, disables the feature. $config['undo_timeout'] = 0; +// A static list of canned responses which are immutable for the user +$config['compose_responses_static'] = array( +// array('name' => 'Canned Response 1', 'text' => 'Static Response One'), +// array('name' => 'Canned Response 2', 'text' => 'Static Response Two'), +); + // ---------------------------------- // ADDRESSBOOK SETTINGS // ---------------------------------- |