]> git.donarmstrong.com Git - roundcube.git/blob - program/steps/mail/spell.inc
a567c7bf6be159b342e393883f08c269e77095a4
[roundcube.git] / program / steps / mail / spell.inc
1 <?php
2
3 /*
4  +-----------------------------------------------------------------------+
5  | program/steps/mail/spell.inc                                          |
6  |                                                                       |
7  | This file is part of the RoundCube Webmail client                     |
8  | Licensed under the GNU GPL                                            |
9  |                                                                       |
10  | PURPOSE:                                                              |
11  |   Invoke the configured or default spell checking engine.             |
12  |                                                                       |
13  +-----------------------------------------------------------------------+
14  | Author: Kris Steinhoff <steinhof@umich.edu>                           |
15  +-----------------------------------------------------------------------+
16
17  $Id$
18
19 */
20
21 if ($spell_engine = $RCMAIL->config->get('spellcheck_engine', 'googie')) {
22     include('spell_'.$spell_engine.'.inc');
23 }
24
25 header('HTTP/1.1 404 Not Found');
26 exit;
27
28 ?>