1<?php
2    /*
3     * $Id$
4     *
5     * MAIA MAILGUARD LICENSE v.1.0
6     *
7     * Copyright 2004 by Robert LeBlanc <rjl@renaissoft.com>
8     * All rights reserved.
9     *
10     * PREAMBLE
11     *
12     * This License is designed for users of Maia Mailguard
13     * ("the Software") who wish to support the Maia Mailguard project by
14     * leaving "Maia Mailguard" branding information in the HTML output
15     * of the pages generated by the Software, and providing links back
16     * to the Maia Mailguard home page.  Users who wish to remove this
17     * branding information should contact the copyright owner to obtain
18     * a Rebranding License.
19     *
20     * DEFINITION OF TERMS
21     *
22     * The "Software" refers to Maia Mailguard, including all of the
23     * associated PHP, Perl, and SQL scripts, documentation files, graphic
24     * icons and logo images.
25     *
26     * GRANT OF LICENSE
27     *
28     * Redistribution and use in source and binary forms, with or without
29     * modification, are permitted provided that the following conditions
30     * are met:
31     *
32     * 1. Redistributions of source code must retain the above copyright
33     *    notice, this list of conditions and the following disclaimer.
34     *
35     * 2. Redistributions in binary form must reproduce the above copyright
36     *    notice, this list of conditions and the following disclaimer in the
37     *    documentation and/or other materials provided with the distribution.
38     *
39     * 3. The end-user documentation included with the redistribution, if
40     *    any, must include the following acknowledgment:
41     *
42     *    "This product includes software developed by Robert LeBlanc
43     *    <rjl@renaissoft.com>."
44     *
45     *    Alternately, this acknowledgment may appear in the software itself,
46     *    if and wherever such third-party acknowledgments normally appear.
47     *
48     * 4. At least one of the following branding conventions must be used:
49     *
50     *    a. The Maia Mailguard logo appears in the page-top banner of
51     *       all HTML output pages in an unmodified form, and links
52     *       directly to the Maia Mailguard home page; or
53     *
54     *    b. The "Powered by Maia Mailguard" graphic appears in the HTML
55     *       output of all gateway pages that lead to this software,
56     *       linking directly to the Maia Mailguard home page; or
57     *
58     *    c. A separate Rebranding License is obtained from the copyright
59     *       owner, exempting the Licensee from 4(a) and 4(b), subject to
60     *       the additional conditions laid out in that license document.
61     *
62     * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS
63     * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
64     * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
65     * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
66     * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
67     * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
68     * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
69     * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
70     * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
71     * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
72     * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
73     *
74     */
75
76    // Error messages
77    $lang['error_connect'] =  "Failed to connect to SMTP server";
78    $lang['error_helo'] =  "HELO failed";
79    $lang['error_mail'] =  "MAIL FROM failed";
80    $lang['error_rcpt'] =  "RCPT TO failed";
81    $lang['error_data'] =  "DATA failed";
82    $lang['error_body'] =  "Error while sending message body";
83    $lang['error_quit'] =  "QUIT failed";
84?>