public
Description: Git mirror of the CMS Made Simple 2.0 rewrite
Homepage: http://cmsmadesimple.org
Clone URL: git://github.com/tedkulp/cmsmadesimple-2-0.git
Search Repo:
Adds phpmailer into the core... now just to wrap it.


git-svn-id: http://svn.cmsmadesimple.org/svn/cmsmadesimple/trunk@4423 
3d254a34-79dc-0310-9e5f-be208747d8a0
calguy1000 (author)
Wed Apr 09 18:16:13 -0700 2008
commit  90f3b0d057bb8519d656a05ce8a20a78f4dd2957
tree    f83520208a94ad8249e5d7f9fadf4e204e05f774
parent  ad5ee38f1c12fb5f6f339cc8694df51531510e8b
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
0
@@ -1 +1,253 @@
0
+ChangeLog
0
+
0
+Version 2.0.0 (Sun, Dec 02 2007)
0
+* implemented updated EncodeQP (thanks to coolbru, aka Marcus Bointon)
0
+* finished all testing, all known bugs corrected, enhancements tested
0
+- note: designed for PHP4, but will work with PHP5 (not compatible with
0
+ E_STRICT) ... full PHP5 version of PHPMailer released separately.
0
+ PHP5 version will NOT work with PHP4.
0
+
0
+Version 2.0.0 rc2 (Fri, Nov 16 2007), interim release
0
+* implements new property to control VERP in class.smtp.php
0
+ example (requires instantiating class.smtp.php):
0
+ $mail->do_verp = true;
0
+* POP-before-SMTP functionality included, thanks to Richard Davey
0
+ (see class.pop3.php & pop3_before_smtp_test.php for examples)
0
+* included example showing how to use PHPMailer with GMAIL
0
+* fixed the missing Cc in SendMail() and Mail()
0
+
0
+******************
0
+A note on sending bulk emails:
0
+
0
+If the email you are sending is not personalized, consider using the
0
+"undisclosed-recipient:;" strategy. That is, put all of your recipients
0
+in the Bcc field and set the To field to "undisclosed-recipients:;".
0
+It's a lot faster (only one send) and saves quite a bit on resources.
0
+Contrary to some opinions, this will not get you listed in spam engines -
0
+it's a legitimate way for you to send emails.
0
+
0
+A partial example for use with PHPMailer:
0
+
0
+$mail->AddAddress("undisclosed-recipients:;");
0
+$mail->AddBCC("email1@anydomain.com,email2@anyotherdomain.com,email3@anyalternatedomain.com");
0
+
0
+Many email service providers restrict the number of emails that can be sent
0
+in any given time period. Often that is between 50 - 60 emails maximum
0
+per hour or per send session.
0
+
0
+If that's the case, then break up your Bcc lists into chunks that are one
0
+less than your limit, and put a pause in your script.
0
+*******************
0
+
0
+Version 2.0.0 rc1 (Thu, Nov 08 2007), interim release
0
+* dramatically simplified using inline graphics ... it's fully automated and requires no user input
0
+* added automatic document type detection for attachments and pictures
0
+* added MsgHTML() function to replace Body tag for HTML emails
0
+* fixed the SendMail security issues (input validation vulnerability)
0
+* enhanced the AddAddresses functionality so that the "Name" portion is used in the email address
0
+* removed the need to use the AltBody method (set from the HTML, or default text used)
0
+* set the PHP Mail() function as the default (still support SendMail, SMTP Mail)
0
+* removed the need to set the IsHTML property (set automatically)
0
+* added Estonian language file by Indrek Päri
0
+* added header injection patch
0
+* added "set" method to permit users to create their own pseudo-properties like 'X-Headers', etc.
0
+ example of use:
0
+ $mail->set('X-Priority', '3');
0
+ $mail->set('X-MSMail-Priority', 'Normal');
0
+* fixed warning message in SMTP get_lines method
0
+* added TLS/SSL SMTP support
0
+ example of use:
0
+ $mail = new PHPMailer();
0
+ $mail->Mailer = "smtp";
0
+ $mail->Host = "smtp.example.com";
0
+ $mail->SMTPSecure = "tls"; // option
0
+ //$mail->SMTPSecure = "ssl"; // option
0
+ ...
0
+ $mail->Send();
0
+* PHPMailer has been tested with PHP4 (4.4.7) and PHP5 (5.2.7)
0
+* Works with PHP installed as a module or as CGI-PHP
0
+- NOTE: will NOT work with PHP5 in E_STRICT error mode
0
+
0
+Version 1.73 (Sun, Jun 10 2005)
0
+* Fixed denial of service bug: http://www.cybsec.com/vuln/PHPMailer-DOS.pdf
0
+* Now has a total of 20 translations
0
+* Fixed alt attachments bug: http://tinyurl.com/98u9k
0
+
0
+Version 1.72 (Wed, May 25 2004)
0
+* Added Dutch, Swedish, Czech, Norwegian, and Turkish translations.
0
+* Received: Removed this method because spam filter programs like
0
+SpamAssassin reject this header.
0
+* Fixed error count bug.
0
+* SetLanguage default is now "language/".
0
+* Fixed magic_quotes_runtime bug.
0
+
0
+Version 1.71 (Tue, Jul 28 2003)
0
+* Made several speed enhancements
0
+* Added German and Italian translation files
0
+* Fixed HELO/AUTH bugs on keep-alive connects
0
+* Now provides an error message if language file does not load
0
+* Fixed attachment EOL bug
0
+* Updated some unclear documentation
0
+* Added additional tests and improved others
0
+
0
+Version 1.70 (Mon, Jun 20 2003)
0
+* Added SMTP keep-alive support
0
+* Added IsError method for error detection
0
+* Added error message translation support (SetLanguage)
0
+* Refactored many methods to increase library performance
0
+* Hello now sends the newer EHLO message before HELO as per RFC 2821
0
+* Removed the boundary class and replaced it with GetBoundary
0
+* Removed queue support methods
0
+* New $Hostname variable
0
+* New Message-ID header
0
+* Received header reformat
0
+* Helo variable default changed to $Hostname
0
+* Removed extra spaces in Content-Type definition (#667182)
0
+* Return-Path should be set to Sender when set
0
+* Adds Q or B encoding to headers when necessary
0
+* quoted-encoding should now encode NULs \000
0
+* Fixed encoding of body/AltBody (#553370)
0
+* Adds "To: undisclosed-recipients:;" when all recipients are hidden (BCC)
0
+* Multiple bug fixes
0
+
0
+Version 1.65 (Fri, Aug 09 2002)
0
+* Fixed non-visible attachment bug (#585097) for Outlook
0
+* SMTP connections are now closed after each transaction
0
+* Fixed SMTP::Expand return value
0
+* Converted SMTP class documentation to phpDocumentor format
0
+
0
+Version 1.62 (Wed, Jun 26 2002)
0
+* Fixed multi-attach bug
0
+* Set proper word wrapping
0
+* Reduced memory use with attachments
0
+* Added more debugging
0
+* Changed documentation to phpDocumentor format
0
+
0
+Version 1.60 (Sat, Mar 30 2002)
0
+* Sendmail pipe and address patch (Christian Holtje)
0
+* Added embedded image and read confirmation support (A. Ognio)
0
+* Added unit tests
0
+* Added SMTP timeout support (*nix only)
0
+* Added possibly temporary PluginDir variable for SMTP class
0
+* Added LE message line ending variable
0
+* Refactored boundary and attachment code
0
+* Eliminated SMTP class warnings
0
+* Added SendToQueue method for future queuing support
0
+
0
+Version 1.54 (Wed, Dec 19 2001)
0
+* Add some queuing support code
0
+* Fixed a pesky multi/alt bug
0
+* Messages are no longer forced to have "To" addresses
0
+
0
+Version 1.50 (Thu, Nov 08 2001)
0
+* Fix extra lines when not using SMTP mailer
0
+* Set WordWrap variable to int with a zero default
0
+
0
+Version 1.47 (Tue, Oct 16 2001)
0
+* Fixed Received header code format
0
+* Fixed AltBody order error
0
+* Fixed alternate port warning
0
+
0
+Version 1.45 (Tue, Sep 25 2001)
0
+* Added enhanced SMTP debug support
0
+* Added support for multiple ports on SMTP
0
+* Added Received header for tracing
0
+* Fixed AddStringAttachment encoding
0
+* Fixed possible header name quote bug
0
+* Fixed wordwrap() trim bug
0
+* Couple other small bug fixes
0
+
0
+Version 1.41 (Wed, Aug 22 2001)
0
+* Fixed AltBody bug w/o attachments
0
+* Fixed rfc_date() for certain mail servers
0
+
0
+Version 1.40 (Sun, Aug 12 2001)
0
+* Added multipart/alternative support (AltBody)
0
+* Documentation update
0
+* Fixed bug in Mercury MTA
0
+
0
+Version 1.29 (Fri, Aug 03 2001)
0
+* Added AddStringAttachment() method
0
+* Added SMTP authentication support
0
+
0
+Version 1.28 (Mon, Jul 30 2001)
0
+* Fixed a typo in SMTP class
0
+* Fixed header issue with Imail (win32) SMTP server
0
+* Made fopen() calls for attachments use "rb" to fix win32 error
0
+
0
+Version 1.25 (Mon, Jul 02 2001)
0
+* Added RFC 822 date fix (Patrice)
0
+* Added improved error handling by adding a $ErrorInfo variable
0
+* Removed MailerDebug variable (obsolete with new error handler)
0
+
0
+Version 1.20 (Mon, Jun 25 2001)
0
+* Added quoted-printable encoding (Patrice)
0
+* Set Version as public and removed PrintVersion()
0
+* Changed phpdoc to only display public variables and methods
0
+
0
+Version 1.19 (Thu, Jun 21 2001)
0
+* Fixed MS Mail header bug
0
+* Added fix for Bcc problem with mail(). *Does not work on Win32*
0
+ (See PHP bug report: http://www.php.net/bugs.php?id=11616)
0
+* mail() no longer passes a fifth parameter when not needed
0
+
0
+Version 1.15 (Fri, Jun 15 2001)
0
+[Note: these changes contributed by Patrice Fournier]
0
+* Changed all remaining \n to \r\n
0
+* Bcc: header no longer writen to message except
0
+when sent directly to sendmail
0
+* Added a small message to non-MIME compliant mail reader
0
+* Added Sender variable to change the Sender email
0
+used in -f for sendmail/mail and in 'MAIL FROM' for smtp mode
0
+* Changed boundary setting to a place it will be set only once
0
+* Removed transfer encoding for whole message when using multipart
0
+* Message body now uses Encoding in multipart messages
0
+* Can set encoding and type to attachments 7bit, 8bit
0
+and binary attachment are sent as is, base64 are encoded
0
+* Can set Encoding to base64 to send 8 bits body
0
+through 7 bits servers
0
+
0
+Version 1.10 (Tue, Jun 12 2001)
0
+* Fixed win32 mail header bug (printed out headers in message body)
0
+
0
+Version 1.09 (Fri, Jun 08 2001)
0
+* Changed date header to work with Netscape mail programs
0
+* Altered phpdoc documentation
0
+
0
+Version 1.08 (Tue, Jun 05 2001)
0
+* Added enhanced error-checking
0
+* Added phpdoc documentation to source
0
+
0
+Version 1.06 (Fri, Jun 01 2001)
0
+* Added optional name for file attachments
0
+
0
+Version 1.05 (Tue, May 29 2001)
0
+* Code cleanup
0
+* Eliminated sendmail header warning message
0
+* Fixed possible SMTP error
0
+
0
+Version 1.03 (Thu, May 24 2001)
0
+* Fixed problem where qmail sends out duplicate messages
0
+
0
+Version 1.02 (Wed, May 23 2001)
0
+* Added multiple recipient and attachment Clear* methods
0
+* Added Sendmail public variable
0
+* Fixed problem with loading SMTP library multiple times
0
+
0
+Version 0.98 (Tue, May 22 2001)
0
+* Fixed problem with redundant mail hosts sending out multiple messages
0
+* Added additional error handler code
0
+* Added AddCustomHeader() function
0
+* Added support for Microsoft mail client headers (affects priority)
0
+* Fixed small bug with Mailer variable
0
+* Added PrintVersion() function
0
+
0
+Version 0.92 (Tue, May 15 2001)
0
+* Changed file names to class.phpmailer.php and class.smtp.php to match
0
+ current PHP class trend.
0
+* Fixed problem where body not being printed when a message is attached
0
+* Several small bug fixes
0
+
0
+Version 0.90 (Tue, April 17 2001)
0
+* Intial public release
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
0
@@ -1 +1,505 @@
0
+ GNU LESSER GENERAL PUBLIC LICENSE
0
+ Version 2.1, February 1999
0
+
0
+ Copyright (C) 1991, 1999 Free Software Foundation, Inc.
0
+ 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
0
+ Everyone is permitted to copy and distribute verbatim copies
0
+ of this license document, but changing it is not allowed.
0
+
0
+[This is the first released version of the Lesser GPL. It also counts
0
+ as the successor of the GNU Library Public License, version 2, hence
0
+ the version number 2.1.]
0
+
0
+ Preamble
0
+
0
+ The licenses for most software are designed to take away your
0
+freedom to share and change it. By contrast, the GNU General Public
0
+Licenses are intended to guarantee your freedom to share and change
0
+free software--to make sure the software is free for all its users.
0
+
0
+ This license, the Lesser General Public License, applies to some
0
+specially designated software packages--typically libraries--of the
0
+Free Software Foundation and other authors who decide to use it. You
0
+can use it too, but we suggest you first think carefully about whether
0
+this license or the ordinary General Public License is the better
0
+strategy to use in any particular case, based on the explanations below.
0
+
0
+ When we speak of free software, we are referring to freedom of use,
0
+not price. Our General Public Licenses are designed to make sure that
0
+you have the freedom to distribute copies of free software (and charge
0
+for this service if you wish); that you receive source code or can get
0
+it if you want it; that you can change the software and use pieces of
0
+it in new free programs; and that you are informed that you can do
0
+these things.
0
+
0
+ To protect your rights, we need to make restrictions that forbid
0
+distributors to deny you these rights or to ask you to surrender these
0
+rights. These restrictions translate to certain responsibilities for
0
+you if you distribute copies of the library or if you modify it.
0
+
0
+ For example, if you distribute copies of the library, whether gratis
0
+or for a fee, you must give the recipients all the rights that we gave
0
+you. You must make sure that they, too, receive or can get the source
0
+code. If you link other code with the library, you must provide
0
+complete object files to the recipients, so that they can relink them
0
+with the library after making changes to the library and recompiling
0
+it. And you must show them these terms so they know their rights.
0
+
0
+ We protect your rights with a two-step method: (1) we copyright the
0
+library, and (2) we offer you this license, which gives you legal
0
+permission to copy, distribute and/or modify the library.
0
+
0
+ To protect each distributor, we want to make it very clear that
0
+there is no warranty for the free library. Also, if the library is
0
+modified by someone else and passed on, the recipients should know
0
+that what they have is not the original version, so that the original
0
+author's reputation will not be affected by problems that might be
0
+introduced by others.
0
+
0
+ Finally, software patents pose a constant threat to the existence of
0
+any free program. We wish to make sure that a company cannot
0
+effectively restrict the users of a free program by obtaining a
0
+restrictive license from a patent holder. Therefore, we insist that
0
+any patent license obtained for a version of the library must be
0
+consistent with the full freedom of use specified in this license.
0
+
0
+ Most GNU software, including some libraries, is covered by the
0
+ordinary GNU General Public License. This license, the GNU Lesser
0
+General Public License, applies to certain designated libraries, and
0
+is quite different from the ordinary General Public License. We use
0
+this license for certain libraries in order to permit linking those
0
+libraries into non-free programs.
0
+
0
+ When a program is linked with a library, whether statically or using
0
+a shared library, the combination of the two is legally speaking a
0
+combined work, a derivative of the original library. The ordinary
0
+General Public License therefore permits such linking only if the
0
+entire combination fits its criteria of freedom. The Lesser General
0
+Public License permits more lax criteria for linking other code with
0
+the library.
0
+
0
+ We call this license the "Lesser" General Public License because it
0
+does Less to protect the user's freedom than the ordinary General
0
+Public License. It also provides other free software developers Less
0
+of an advantage over competing non-free programs. These disadvantages
0
+are the reason we use the ordinary General Public License for many
0
+libraries. However, the Lesser license provides advantages in certain
0
+special circumstances.
0
+
0
+ For example, on rare occasions, there may be a special need to
0
+encourage the widest possible use of a certain library, so that it becomes
0
+a de-facto standard. To achieve this, non-free programs must be
0
+allowed to use the library. A more frequent case is that a free
0
+library does the same job as widely used non-free libraries. In this
0
+case, there is little to gain by limiting the free library to free
0
+software only, so we use the Lesser General Public License.
0
+
0
+ In other cases, permission to use a particular library in non-free
0
+programs enables a greater number of people to use a large body of
0
+free software. For example, permission to use the GNU C Library in
0
+non-free programs enables many more people to use the whole GNU
0
+operating system, as well as its variant, the GNU/Linux operating
0
+system.
0
+
0
+ Although the Lesser General Public License is Less protective of the
0
+users' freedom, it does ensure that the user of a program that is
0
+linked with the Library has the freedom and the wherewithal to run
0
+that program using a modified version of the Library.
0
+
0
+ The precise terms and conditions for copying, distribution and
0
+modification follow. Pay close attention to the difference between a
0
+"work based on the library" and a "work that uses the library". The
0
+former contains code derived from the library, whereas the latter must
0
+be combined with the library in order to run.
0
+
0
+ GNU LESSER GENERAL PUBLIC LICENSE
0
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0
+
0
+ 0. This License Agreement applies to any software library or other
0
+program which contains a notice placed by the copyright holder or
0
+other authorized party saying it may be distributed under the terms of
0
+this Lesser General Public License (also called "this License").
0
+Each licensee is addressed as "you".
0
+
0
+ A "library" means a collection of software functions and/or data
0
+prepared so as to be conveniently linked with application programs
0
+(which use some of those functions and data) to form executables.
0
+
0
+ The "Library", below, refers to any such software library or work
0
+which has been distributed under these terms. A "work based on the
0
+Library" means either the Library or any derivative work under
0
+copyright law: that is to say, a work containing the Library or a
0
+portion of it, either verbatim or with modifications and/or translated
0
+straightforwardly into another language. (Hereinafter, translation is
0
+included without limitation in the term "modification".)
0
+
0
+ "Source code" for a work means the preferred form of the work for
0
+making modifications to it. For a library, complete source code means
0
+all the source code for all modules it contains, plus any associated
0
+interface definition files, plus the scripts used to control compilation
0
+and installation of the library.
0
+
0
+ Activities other than copying, distribution and modification are not
0
+covered by this License; they are outside its scope. The act of
0
+running a program using the Library is not restricted, and output from
0
+such a program is covered only if its contents constitute a work based
0
+on the Library (independent of the use of the Library in a tool for
0
+writing it). Whether that is true depends on what the Library does
0
+and what the program that uses the Library does.
0
+
0
+ 1. You may copy and distribute verbatim copies of the Library's
0
+complete source code as you receive it, in any medium, provided that
0
+you conspicuously and appropriately publish on each copy an
0
+appropriate copyright notice and disclaimer of warranty; keep intact
0
+all the notices that refer to this License and to the absence of any
0
+warranty; and distribute a copy of this License along with the
0
+Library.
0
+
0
+ You may charge a fee for the physical act of transferring a copy,
0
+and you may at your option offer warranty protection in exchange for a
0
+fee.
0
+
0
+ 2. You may modify your copy or copies of the Library or any portion
0
+of it, thus forming a work based on the Library, and copy and
0
+distribute such modifications or work under the terms of Section 1
0
+above, provided that you also meet all of these conditions:
0
+
0
+ a) The modified work must itself be a software library.
0
+
0
+ b) You must cause the files modified to carry prominent notices
0
+ stating that you changed the files and the date of any change.
0
+
0
+ c) You must cause the whole of the work to be licensed at no
0
+ charge to all third parties under the terms of this License.
0
+
0
+ d) If a facility in the modified Library refers to a function or a
0
+ table of data to be supplied by an application program that uses
0
+ the facility, other than as an argument passed when the facility
0
+ is invoked, then you must make a good faith effort to ensure that,
0
+ in the event an application does not supply such function or
0
+ table, the facility still operates, and performs whatever part of
0
+ its purpose remains meaningful.
0
+
0
+ (For example, a function in a library to compute square roots has
0
+ a purpose that is entirely well-defined independent of the
0
+ application. Therefore, Subsection 2d requires that any
0
+ application-supplied function or table used by this function must
0
+ be optional: if the application does not supply it, the square
0
+ root function must still compute square roots.)
0
+
0
+These requirements apply to the modified work as a whole. If
0
+identifiable sections of that work are not derived from the Library,
0
+and can be reasonably considered independent and separate works in
0
+themselves, then this License, and its terms, do not apply to those
0
+sections when you distribute them as separate works. But when you
0
+distribute the same sections as part of a whole which is a work based
0
+on the Library, the distribution of the whole must be on the terms of
0
+this License, whose permissions for other licensees extend to the
0
+entire whole, and thus to each and every part regardless of who wrote
0
+it.
0
+
0
+Thus, it is not the intent of this section to claim rights or contest
0
+your rights to work written entirely by you; rather, the intent is to
0
+exercise the right to control the distribution of derivative or
0
+collective works based on the Library.
0
+
0
+In addition, mere aggregation of another work not based on the Library
0
+with the Library (or with a work based on the Library) on a volume of
0
+a storage or distribution medium does not bring the other work under
0
+the scope of this License.
0
+
0
+ 3. You may opt to apply the terms of the ordinary GNU General Public
0
+License instead of this License to a given copy of the Library. To do
0
+this, you must alter all the notices that refer to this License, so
0
+that they refer to the ordinary GNU General Public License, version 2,
0
+instead of to this License. (If a newer version than version 2 of the
0
+ordinary GNU General Public License has appeared, then you can specify
0
+that version instead if you wish.) Do not make any other change in
0
+these notices.
0
+
0
+ Once this change is made in a given copy, it is irreversible for
0
+that copy, so the ordinary GNU General Public License applies to all
0
+subsequent copies and derivative works made from that copy.
0
+
0
+ This option is useful when you wish to copy part of the code of
0
+the Library into a program that is not a library.
0
+
0
+ 4. You may copy and distribute the Library (or a portion or
0
+derivative of it, under Section 2) in object code or executable form
0
+under the terms of Sections 1 and 2 above provided that you accompany
0
+it with the complete corresponding machine-readable source code, which
0
+must be distributed under the terms of Sections 1 and 2 above on a
0
+medium customarily used for software interchange.
0
+
0
+ If distribution of object code is made by offering access to copy
0
+from a designated place, then offering equivalent access to copy the
0
+source code from the same place satisfies the requirement to
0
+distribute the source code, even though third parties are not
0
+compelled to copy the source along with the object code.
0
+
0
+ 5. A program that contains no derivative of any portion of the
0
+Library, but is designed to work with the Library by being compiled or
0
+linked with it, is called a "work that uses the Library". Such a
0
+work, in isolation, is not a derivative work of the Library, and
0
+therefore falls outside the scope of this License.
0
+
0
+ However, linking a "work that uses the Library" with the Library
0
+creates an executable that is a derivative of the Library (because it
0
+contains portions of the Library), rather than a "work that uses the
0
+library". The executable is therefore covered by this License.
0
+Section 6 states terms for distribution of such executables.
0
+
0
+ When a "work that uses the Library" uses material from a header file
0
+that is part of the Library, the object code for the work may be a
0
+derivative work of the Library even though the source code is not.
0
+Whether this is true is especially significant if the work can be
0
+linked without the Library, or if the work is itself a library. The
0
+threshold for this to be true is not precisely defined by law.
0
+
0
+ If such an object file uses only numerical parameters, data
0
+structure layouts and accessors, and small macros and small inline
0
+functions (ten lines or less in length), then the use of the object
0
+file is unrestricted, regardless of whether it is legally a derivative
0
+work. (Executables containing this object code plus portions of the
0
+Library will still fall under Section 6.)
0
+
0
+ Otherwise, if the work is a derivative of the Library, you may
0
+distribute the object code for the work under the terms of Section 6.
0
+Any executables containing that work also fall under Section 6,
0
+whether or not they are linked directly with the Library itself.
0
+
0
+ 6. As an exception to the Sections above, you may also combine or
0
+link a "work that uses the Library" with the Library to produce a
0
+work containing portions of the Library, and distribute that work
0
+under terms of your choice, provided that the terms permit
0
+modification of the work for the customer's own use and reverse
0
+engineering for debugging such modifications.
0
+
0
+ You must give prominent notice with each copy of the work that the
0
+Library is used in it and that the Library and its use are covered by
0
+this License. You must supply a copy of this License. If the work
0
+during execution displays copyright notices, you must include the
0
+copyright notice for the Library among them, as well as a reference
0
+directing the user to the copy of this License. Also, you must do one
0
+of these things:
0
+
0
+ a) Accompany the work with the complete corresponding
0
+ machine-readable source code for the Library including whatever
0
+ changes were used in the work (which must be distributed under
0
+ Sections 1 and 2 above); and, if the work is an executable linked
0
+ with the Library, with the complete machine-readable "work that
0
+ uses the Library", as object code and/or source code, so that the
0
+ user can modify the Library and then relink to produce a modified
0
+ executable containing the modified Library. (It is understood
0
+ that the user who changes the contents of definitions files in the
0
+ Library will not necessarily be able to recompile the application
0
+ to use the modified definitions.)
0
+
0
+ b) Use a suitable shared library mechanism for linking with the
0
+ Library. A suitable mechanism is one that (1) uses at run time a
0
+ copy of the library already present on the user's computer system,
0
+ rather than copying library functions into the executable, and (2)
0
+ will operate properly with a modified version of the library, if
0
+ the user installs one, as long as the modified version is
0
+ interface-compatible with the version that the work was made with.
0
+
0
+ c) Accompany the work with a written offer, valid for at
0
+ least three years, to give the same user the materials
0
+ specified in Subsection 6a, above, for a charge no more
0
+ than the cost of performing this distribution.
0
+
0
+ d) If distribution of the work is made by offering access to copy
0
+ from a designated place, offer equivalent access to copy the above
0
+ specified materials from the same place.
0
+
0
+ e) Verify that the user has already received a copy of these
0
+ materials or that you have already sent this user a copy.
0
+
0
+ For an executable, the required form of the "work that uses the
0
+Library" must include any data and utility programs needed for
0
+reproducing the executable from it. However, as a special exception,
0
+the materials to be distributed need not include anything that is
0
+normally distributed (in either source or binary form) with the major
0
+components (compiler, kernel, and so on) of the operating system on
0
+which the executable runs, unless that component itself accompanies
0
+the executable.
0
+
0
+ It may happen that this requirement contradicts the license
0
+restrictions of other proprietary libraries that do not normally
0
+accompany the operating system. Such a contradiction means you cannot
0
+use both them and the Library together in an executable that you
0
+distribute.
0
+
0
+ 7. You may place library facilities that are a work based on the
0
+Library side-by-side in a single library together with other library