xref: /titanic_41/usr/src/cmd/mailwrapper/THIRDPARTYLICENSE (revision fedaccf392e8355472693a0cc757d899ae2842ed)
1*fedaccf3SAlexander Pyhalovfgetln.c is provided under the following license
2*fedaccf3SAlexander Pyhalov/*-
3*fedaccf3SAlexander Pyhalov * Copyright (c) 1998 The NetBSD Foundation, Inc.
4*fedaccf3SAlexander Pyhalov * All rights reserved.
5*fedaccf3SAlexander Pyhalov *
6*fedaccf3SAlexander Pyhalov * This code is derived from software contributed to The NetBSD Foundation
7*fedaccf3SAlexander Pyhalov * by Christos Zoulas.
8*fedaccf3SAlexander Pyhalov *
9*fedaccf3SAlexander Pyhalov * Redistribution and use in source and binary forms, with or without
10*fedaccf3SAlexander Pyhalov * modification, are permitted provided that the following conditions
11*fedaccf3SAlexander Pyhalov * are met:
12*fedaccf3SAlexander Pyhalov * 1. Redistributions of source code must retain the above copyright
13*fedaccf3SAlexander Pyhalov *    notice, this list of conditions and the following disclaimer.
14*fedaccf3SAlexander Pyhalov * 2. Redistributions in binary form must reproduce the above copyright
15*fedaccf3SAlexander Pyhalov *    notice, this list of conditions and the following disclaimer in the
16*fedaccf3SAlexander Pyhalov *    documentation and/or other materials provided with the distribution.
17*fedaccf3SAlexander Pyhalov * 3. Neither the name of The NetBSD Foundation nor the names of its
18*fedaccf3SAlexander Pyhalov *    contributors may be used to endorse or promote products derived
19*fedaccf3SAlexander Pyhalov *    from this software without specific prior written permission.
20*fedaccf3SAlexander Pyhalov *
21*fedaccf3SAlexander Pyhalov * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
22*fedaccf3SAlexander Pyhalov * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
23*fedaccf3SAlexander Pyhalov * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24*fedaccf3SAlexander Pyhalov * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
25*fedaccf3SAlexander Pyhalov * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26*fedaccf3SAlexander Pyhalov * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27*fedaccf3SAlexander Pyhalov * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28*fedaccf3SAlexander Pyhalov * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29*fedaccf3SAlexander Pyhalov * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30*fedaccf3SAlexander Pyhalov * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31*fedaccf3SAlexander Pyhalov * POSSIBILITY OF SUCH DAMAGE.
32*fedaccf3SAlexander Pyhalov */
33*fedaccf3SAlexander Pyhalovfparseln.c is provided under the following license
34*fedaccf3SAlexander Pyhalov/*
35*fedaccf3SAlexander Pyhalov * Copyright (c) 1997 Christos Zoulas.  All rights reserved.
36*fedaccf3SAlexander Pyhalov *
37*fedaccf3SAlexander Pyhalov * Redistribution and use in source and binary forms, with or without
38*fedaccf3SAlexander Pyhalov * modification, are permitted provided that the following conditions
39*fedaccf3SAlexander Pyhalov * are met:
40*fedaccf3SAlexander Pyhalov * 1. Redistributions of source code must retain the above copyright
41*fedaccf3SAlexander Pyhalov *    notice, this list of conditions and the following disclaimer.
42*fedaccf3SAlexander Pyhalov * 2. Redistributions in binary form must reproduce the above copyright
43*fedaccf3SAlexander Pyhalov *    notice, this list of conditions and the following disclaimer in the
44*fedaccf3SAlexander Pyhalov *    documentation and/or other materials provided with the distribution.
45*fedaccf3SAlexander Pyhalov * 3. All advertising materials mentioning features or use of this software
46*fedaccf3SAlexander Pyhalov *    must display the following acknowledgement:
47*fedaccf3SAlexander Pyhalov *      This product includes software developed by Christos Zoulas.
48*fedaccf3SAlexander Pyhalov * 4. The name of the author may not be used to endorse or promote products
49*fedaccf3SAlexander Pyhalov *    derived from this software without specific prior written permission.
50*fedaccf3SAlexander Pyhalov *
51*fedaccf3SAlexander Pyhalov * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
52*fedaccf3SAlexander Pyhalov * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
53*fedaccf3SAlexander Pyhalov * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
54*fedaccf3SAlexander Pyhalov * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
55*fedaccf3SAlexander Pyhalov * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
56*fedaccf3SAlexander Pyhalov * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
57*fedaccf3SAlexander Pyhalov * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
58*fedaccf3SAlexander Pyhalov * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
59*fedaccf3SAlexander Pyhalov * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
60*fedaccf3SAlexander Pyhalov * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
61*fedaccf3SAlexander Pyhalov */
62*fedaccf3SAlexander Pyhalovmailwrapper.c is provided under the following license
63*fedaccf3SAlexander Pyhalov/*
64*fedaccf3SAlexander Pyhalov * Copyright (c) 1998
65*fedaccf3SAlexander Pyhalov *      Perry E. Metzger.  All rights reserved.
66*fedaccf3SAlexander Pyhalov *
67*fedaccf3SAlexander Pyhalov * Redistribution and use in source and binary forms, with or without
68*fedaccf3SAlexander Pyhalov * modification, are permitted provided that the following conditions
69*fedaccf3SAlexander Pyhalov * are met:
70*fedaccf3SAlexander Pyhalov * 1. Redistributions of source code must retain the above copyright
71*fedaccf3SAlexander Pyhalov *    notice, this list of conditions and the following disclaimer.
72*fedaccf3SAlexander Pyhalov * 2. Redistributions in binary form must reproduce the above copyright
73*fedaccf3SAlexander Pyhalov *    notice, this list of conditions and the following disclaimer in the
74*fedaccf3SAlexander Pyhalov *    documentation and/or other materials provided with the distribution.
75*fedaccf3SAlexander Pyhalov * 3. All advertising materials mentioning features or use of this software
76*fedaccf3SAlexander Pyhalov *    must display the following acknowledgment:
77*fedaccf3SAlexander Pyhalov *      This product includes software developed for the NetBSD Project
78*fedaccf3SAlexander Pyhalov *      by Perry E. Metzger.
79*fedaccf3SAlexander Pyhalov * 4. The name of the author may not be used to endorse or promote products
80*fedaccf3SAlexander Pyhalov *    derived from this software without specific prior written permission.
81*fedaccf3SAlexander Pyhalov *
82*fedaccf3SAlexander Pyhalov * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
83*fedaccf3SAlexander Pyhalov * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
84*fedaccf3SAlexander Pyhalov * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
85*fedaccf3SAlexander Pyhalov * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
86*fedaccf3SAlexander Pyhalov * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
87*fedaccf3SAlexander Pyhalov * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
88*fedaccf3SAlexander Pyhalov * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
89*fedaccf3SAlexander Pyhalov * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
90*fedaccf3SAlexander Pyhalov * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
91*fedaccf3SAlexander Pyhalov * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
92*fedaccf3SAlexander Pyhalov */
93*fedaccf3SAlexander Pyhalov
94