Short Contents ************** Wydawca 1 Introduction to Wydawca 2 Operation Overview 3 How to invoke `wydawca'. 4 How to Configure `wydawca'. 5 `Wydawca' configuration file. 6 `Wydawca' invocation summary. 7 How to Report a Bug Appendix A GNU Free Documentation License Concept Index Table of Contents ***************** Wydawca 1 Introduction to Wydawca 2 Operation Overview 2.1 Operation Modes 3 How to invoke `wydawca'. 4 How to Configure `wydawca'. 4.1 Configuration file syntax 4.1.1 Comments 4.1.2 Pragmatic Comments 4.1.3 Statements 4.1.4 Preprocessor 4.2 General Settings 4.3 User Privileges 4.4 Daemon Configuration 4.5 TCP Wrappers 4.6 Locking Configuration 4.7 Syslog Configuration Directives 4.8 SQL Databases 4.9 Dictionaries 4.9.1 SQL Dictionary 4.9.1.1 Project-owner: an SQL Implementation 4.9.1.2 Project-uploader: an SQL Implementation 4.9.2 Built-in Dictionary 4.9.3 External Dictionary 4.10 Archivation 4.11 Distribution Spool 4.12 Distribution Verification 4.13 Statistics 4.14 Mail Notification 4.14.1 Mailer 4.14.2 Message Templates 4.14.3 Statistic Reports 4.14.4 Event Notification 5 `Wydawca' configuration file. 6 `Wydawca' invocation summary. 7 How to Report a Bug Appendix A GNU Free Documentation License A.1 ADDENDUM: How to use this License for your documents Concept Index Wydawca ******* This edition of the `Wydawca Manual', last updated 6 January 2010, documents Wydawca Version 2.1. 1 Introduction to Wydawca ************************* Let's begin with a short synopsis. Suppose you run a developer's site, like, e.g. . You have two "distribution URLs": , which distributes stable versions of the software, and , which distributes alpha and pre-test versions. Now, package maintainers need to have a way of uploading their packages to one of these sites. This is done using the "Automated FTP Upload" method, as described in *note Automated FTP Uploads: (maintain)Automated FTP Uploads. The following is a short summary of it: there is an FTP "upload site", which has two "source directories", each one corresponding to a certain distribution URL. For example, Source Directory Distribution Site -------------------------------------------------------------------------- `/incoming/ftp' `/incoming/alpha' Now, if maintainer of the project `foo' wishes to make a release of the stable version `foo-1.0.tar.gz', he first creates a detached signature `foo-1.0.tar.gz.sig'. Then he creates a special "directive" file, which contains information about where the distributed tarball must be placed, and clear-signs it using his PGP key, thus obtaining the file `foo-1.0.tar.gz.directive.asc'. Finally, he uploads these three files (a "triplet") to the upload site, storing them into the directory `/incoming/ftp'. From now on, it is the responsibility of a "release submission daemon" to scan the source directories, gather the triplets, verify them, and to move any files that had successfully passed verification to their distribution sites. `Wydawca' is such a release submission daemon. It is able to handle any number of `source/destination' pairs (called "spools") in real time, and offers an extensible logging and mail notification mechanism, allowing both package maintainers and site administrators to be immediately notified about any occurring problems. `Wydawca' supports version 1.1 of directory file, as described in *note Standalone directives: (maintain)FTP Upload Directive File - v1.1. The program is written entirely in C, is highly effective and consumes little resources. 2 Operation Overview ******************** Usually, `wydawca' is installed on the machine that receives release uploads. It may be run either periodically as a cron-job, or as a standalone daemon. It supposes that both upload and distribution directories are accessible in the local file system hierarchy. If that is not the case (e.g. if upload and distribution sites are handled by different machines), one of them should be mounted using NFS. Future versions will contain special provisions for that case. A configuration file defines a set of "spools", i.e. pairs of upload and corresponding distribution directories. In `wydawca' terminology, upload directories are also called "source", and distribution directories - "destination" directories. The configuration file also supplies all the information necessary to access user and project databases. When started, `wydawca' scans each source directory and prepares a list of files found there. Then, it compacts this list by looking for "directive files" and re-arranging list members in "triplets". A "directive file" is a special file that must be supplied with each upload and that contains directive regarding the placement of the uploaded files. A "triplet" is a standard entity, consisting of three files: a clear-signed directive file, a file to be distributed, and a detached signature of the latter. In some special cases, a clear-signed directive file alone is valid. This happens when it contains only "standalone directives", as described in *note Standalone directives: (maintain)FTP Upload Directive File - v1.1. Each "incomplete" triplet, i.e. a triplet missing one or more necessary files, is then verified by checking if the modification date of its oldest file is older than a predefined amount of time (*note file-sweep-time: general.). If so, the triplet is considered "expired", and all its files are removed. This gives users the possibility to restart interrupted or otherwise broken uploads later. After completing these preliminary stages, `wydawca' analyzes the directive file and extracts the project name from it. Using this name as a key, it looks up in the "project dictionary" a list of users authorized to make uploads for this project. This list contains user names and their corresponding public PGP keys. `Wydawca' tries to verify the directive file using each PGP key from this list, until a matching key is found, or the list in exhausted. In the latter case, the triplet is rejected. Otherwise, the key and its owner are remembered for the next step. In this step, the uploaded file and its detached signature are verified. If they do not match the public key obtained in the previous step, the triplet is rejected. Finally, directives from the directive file are executed. On this stage of the processing, the uploaded files are actually moved to their destination directories, requested symbolic links are created, etc. 2.1 Operation Modes =================== The program has two operation modes: `cron mode' and `daemon mode'. In "cron mode", `wydawca' runs in foreground and exits when it is done with processing all required spools. By default it processes all configured spools, unless a subset of them is specified in the command line. This is called "cron mode", because this is the usual way for `wydawca' to be used as a cron job. In "daemon mode", `wydawca' detaches itself from the controlling terminal and runs in the background, listening on a preconfigured socket. The socket implements the TCPMUX protocol(1) and operates as follows: After establishing connection, the remote party (the "client") sends the spool tag followed by a CRLF pair. The server scans its configuration for a spool that has the requested ID. If no such spool is found, the server replies with the string `- Unknown service name', followed by a CRLF pair and closes the connection. If a matching spool is found, the server replies with `+' acknowledgment, immediately followed by an optional message of explanation, and terminated with a CRLF. Upon receiving this acknowledgment, the client sends the user name of the user who did the upload. The following sample transaction illustrates this: C: stable S: +OK. URL ftp://ftp.domain.net C: smith When the user name is received, the server schedules a "job" for processing all triplets submitted by the given user to the given spool. ---------- Footnotes ---------- (1) RFC 1078 (http://www.rfc-editor.org/rfc/rfc1078.txt). 3 How to invoke `wydawca'. ************************** `Wydawca' gets all information it needs from its "configuration file" (*note wydawca.rc::). The default configuration file is `SYSCONFDIR/wydawca.rc', but if it is located elsewhere, you can specify its new location with the `--config-file' (`-c') command line option. If you wish to check your configuration file for syntax errors, use `--lint' (`-t') command line option. When given this option, `wydawca' prints all diagnostics on its standard error and exits with code 0 if the file is OK, or 1 otherwise. Normally, `wydawca' attempts to detect automatically whether it is run from an interactive console, and if so it prints its diagnostics on the standard error. Otherwise, the diagnostics is directed to the `syslog', using the facility given in the `syslog-facility' configuration file statement (*note syslog::). Two options are provided if you wish to disable this autodetection: the option `--syslog' instructs the program to print all diagnostics via `syslog', and the option `--stderr' (or `-e') instructs it to print everything on the standard error. The operation mode is configured in the configuration file. If the latter configures daemon mode, you can still instruct `wydawca' to run as a cron job by the `--cron' command line option. This may be needed, for example, to schedule a daily `wydawca' run when the main daemon instance is already running. Usually `wydawca' attempts to process all the configured spools. You may instruct it to process only a subset of these by using the following options: `--spool=TAG' `-S TAG' Process only spool with the given tag. `--source=DIR' `-s DIR' Process only spool with DIR as the source directory. Any number of these options may be supplied, e.g.: $ wydawca --spool=ftp --spool=test --source=/home/ftp/test-upload The `--debug' (`-d') option tells the program to increase its debugging level by 1. The "debugging level" determines amount of information the program reports when it runs. Default level is 0, which means that only errors and other critical conditions are reported. Raising it may be necessary when debugging new configurations. Each `-d' option raises the level by one, so you can say `wydawca -dd' to obtain level 2, for example. The maximum debugging level (currently it is 4) prints an impractically big amount of information, and is useful mainly for `wydawca' developers. Yet another debugging facility is the `--dry-run' (`-n') option. It instructs `wydawca' to avoid doing any modifications to the disk contents, and to print a verbose description of any actions it would have taken. It sets the debugging level to 1 and directs the diagnostics output to the standard error, as if `--debug --stderr' options were given. You can raise debugging level further by supplying additional `--debug' options. The `--dry-run' option is useful when testing new configurations, for example: $ wydawca -c new.cfg --dry-run In addition, the two usual informational options are available as well: `--help' (`-h') prints a short usage summary, and `--version' (`-v') prints program version number. 4 How to Configure `wydawca'. ***************************** Upon startup, `wydawca' reads its settings from the "configuration file" `wydawca.rc'. By default it is located in $SYSCONFIDR (i.e., in most cases `/usr/local/etc', or `/etc'), but an alternative location may be specified using `--config' command line option (*note config-file: starting.). If any errors are encountered in the configuration file, the program reports them on its error output and exits with a non-zero status. To test the configuration file without starting the server use `--lint' (`-t') command line option. It causes `wydawca' to check configuration file for syntax errors and other inconsistencies and to exit with status 0 if no errors were detected, and withs status 1 otherwise. Before parsing, configuration file is preprocessed using `m4' (*note Preprocessor::). To see the preprocessed configuration without actually parsing it, use `-E' command line option. To avoid preprocessing it, use `--no-preprocessor' option. The rest of this section describes the configuration file syntax in detail. You can receive a concise summary of all configuration directives any time by running `wydawca --config-help'. 4.1 Configuration file syntax ============================= Wydawca configuration file consists of statements and comments. There are three classes of lexical tokens: keywords, values, and separators. Blanks, tabs, newlines and comments, collectively called "white space" are ignored except as they serve to separate tokens. Some white space is required to separate otherwise adjacent keywords and values. 4.1.1 Comments -------------- "Comments" may appear anywhere where white space may appear in the configuration file. There are two kinds of comments: single-line and multi-line comments. "Single-line" comments start with `#' or `//' and continue to the end of the line: # This is a comment // This too is a comment "Multi-line" or "C-style" comments start with the two characters `/*' (slash, star) and continue until the first occurrence of `*/' (star, slash). Multi-line comments cannot be nested. However, single-line comments may well appear within multi-line ones. 4.1.2 Pragmatic Comments ------------------------ Pragmatic comments are similar to usual single-line comments, except that they cause some changes in the way the configuration is parsed. Pragmatic comments begin with a `#' sign and end with the next physical newline character. Wydawca version 2.1, understands the following pragmatic comments: `#include ' `#include FILE' Include the contents of the file FILE. If FILE is an absolute file name, both forms are equivalent. Otherwise, the form with angle brackets searches for the file in the "include search path", while the second one looks for it in the current working directory first, and, if not found there, in the include search path. The default include search path is: 1. `PREFIX/share/wydawca/2.1/include' 2. `PREFIX/share/wydawca/include' where PREFIX is the installation prefix. New directories can be appended in front of it using `-I' (`--include-directory') command line option (*note include-directory: Preprocessor.). `#include_once ' `#include_once FILE' Same as `#include', except that, if the FILE has already been included, it will not be included again. `#line NUM' `#line NUM "FILE"' This line causes `wydawca' to believe, for purposes of error diagnostics, that the line number of the next source line is given by NUM and the current input file is named by FILE. If the latter is absent, the remembered file name does not change. `# NUM "FILE"' This is a special form of `#line' statement, understood for compatibility with the C preprocessor. In fact, these statements provide a rudimentary preprocessing features. For more sophisticated ways to modify configuration before parsing, see *note Preprocessor::. 4.1.3 Statements ---------------- A "simple statement" consists of a keyword and value separated by any amount of whitespace. Simple statement is terminated with a semicolon (`;'). Examples of simple statements: daemon yes; pidfile /var/run/wydawca.pid; A "keyword" begins with a letter and may contain letters, decimal digits, underscores (`_') and dashes (`-'). Examples of keywords are: `group', `file-sweep-time'. A "value" can be one of the following: number A number is a sequence of decimal digits. boolean A boolean value is one of the following: `yes', `true', `t' or `1', meaning "true", and `no', `false', `nil', `0' meaning "false". unquoted string An unquoted string may contain letters, digits, and any of the following characters: `_', `-', `.', `/', `@', `*', `:'. quoted string A quoted string is any sequence of characters enclosed in double-quotes (`"'). A backslash appearing within a quoted string introduces an "escape sequence", which is replaced with a single character according to the following rules: Sequence Replaced with \a Audible bell character (ASCII 7) \b Backspace character (ASCII 8) \f Form-feed character (ASCII 12) \n Newline character (ASCII 10) \r Carriage return character (ASCII 13) \t Horizontal tabulation character (ASCII 9) \v Vertical tabulation character (ASCII 11) \\ A single backslash (`\') \" A double-quote. Table 4.1: Backslash escapes In addition, the sequence `\NEWLINE' is removed from the string. This allows to split long strings over several physical lines, e.g.: "a long string may be\ split over several lines" If the character following a backslash is not one of those specified above, the backslash is ignored and a warning is issued. Two or more adjacent quoted strings are concatenated, which gives another way to split long strings over several lines to improve readability. The following fragment produces the same result as the example above: "a long string may be" " split over several lines" Depending on the context, the contents of a quoted string may be subject to "meta-variable interpretation". During this process, any sequence ${VAR} where VAR is the name of a defined meta-variable, is replaced with the value of the variable. This sequence is called "meta- reference". For example, if the meta-variable `user' has the value `smith', then the string "where user = '${user}'" becomes "where user = 'smith'" If the name of the variable consists of a single character, the curly braces around it may be omitted. Thus, `${u}' and `$u' are equivalent. If VAR is not defined, the meta-reference is left unchanged. The special sequence `$-' causes removal of it and any character following it. Most often it is used as a next-to-last character on a line, right before the newline. In this position it causes the removal of the trailing newline, similar to `dnl' in `m4'. *Note Triplet Listings: listings, for a detailed description and examples of `$-' use. To insert a literal `$' character in a string that is subject to meta-variable interpretation, duplicate it: `$$'. The exact set of defined meta-variables and their values depend on the context and are discussed in detail below. Here-document A "here-document" is a special construct that allows to introduce strings of text containing embedded newlines. The `<. As the purpose of bug reporting is to improve software, please be sure to include a detailed information when reporting a bug. The minimum information needed is: * Program version you use (see the output of `wydawca --version'. * A description of the bug. * Conditions under which the bug appears. * It is often helpful to send the contents of `config.log' file along with your bug report. This file is created after running `./configure' in `wydawca' source root directory. Appendix A GNU Free Documentation License ***************************************** Version 1.2, November 2002 Copyright (C) 2000,2001,2002 Free Software Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. 0. PREAMBLE The purpose of this License is to make a manual, textbook, or other functional and useful document "free" in the sense of freedom: to assure everyone the effective freedom to copy and redistribute it, with or without modifying it, either commercially or noncommercially. Secondarily, this License preserves for the author and publisher a way to get credit for their work, while not being considered responsible for modifications made by others. This License is a kind of "copyleft", which means that derivative works of the document must themselves be free in the same sense. It complements the GNU General Public License, which is a copyleft license designed for free software. We have designed this License in order to use it for manuals for free software, because free software needs free documentation: a free program should come with manuals providing the same freedoms that the software does. But this License is not limited to software manuals; it can be used for any textual work, regardless of subject matter or whether it is published as a printed book. We recommend this License principally for works whose purpose is instruction or reference. 1. APPLICABILITY AND DEFINITIONS This License applies to any manual or other work, in any medium, that contains a notice placed by the copyright holder saying it can be distributed under the terms of this License. Such a notice grants a world-wide, royalty-free license, unlimited in duration, to use that work under the conditions stated herein. The "Document", below, refers to any such manual or work. Any member of the public is a licensee, and is addressed as "you". You accept the license if you copy, modify or distribute the work in a way requiring permission under copyright law. A "Modified Version" of the Document means any work containing the Document or a portion of it, either copied verbatim, or with modifications and/or translated into another language. A "Secondary Section" is a named appendix or a front-matter section of the Document that deals exclusively with the relationship of the publishers or authors of the Document to the Document's overall subject (or to related matters) and contains nothing that could fall directly within that overall subject. (Thus, if the Document is in part a textbook of mathematics, a Secondary Section may not explain any mathematics.) The relationship could be a matter of historical connection with the subject or with related matters, or of legal, commercial, philosophical, ethical or political position regarding them. The "Invariant Sections" are certain Secondary Sections whose titles are designated, as being those of Invariant Sections, in the notice that says that the Document is released under this License. If a section does not fit the above definition of Secondary then it is not allowed to be designated as Invariant. The Document may contain zero Invariant Sections. If the Document does not identify any Invariant Sections then there are none. The "Cover Texts" are certain short passages of text that are listed, as Front-Cover Texts or Back-Cover Texts, in the notice that says that the Document is released under this License. A Front-Cover Text may be at most 5 words, and a Back-Cover Text may be at most 25 words. A "Transparent" copy of the Document means a machine-readable copy, represented in a format whose specification is available to the general public, that is suitable for revising the document straightforwardly with generic text editors or (for images composed of pixels) generic paint programs or (for drawings) some widely available drawing editor, and that is suitable for input to text formatters or for automatic translation to a variety of formats suitable for input to text formatters. A copy made in an otherwise Transparent file format whose markup, or absence of markup, has been arranged to thwart or discourage subsequent modification by readers is not Transparent. An image format is not Transparent if used for any substantial amount of text. A copy that is not "Transparent" is called "Opaque". Examples of suitable formats for Transparent copies include plain ASCII without markup, Texinfo input format, LaTeX input format, SGML or XML using a publicly available DTD, and standard-conforming simple HTML, PostScript or PDF designed for human modification. Examples of transparent image formats include PNG, XCF and JPG. Opaque formats include proprietary formats that can be read and edited only by proprietary word processors, SGML or XML for which the DTD and/or processing tools are not generally available, and the machine-generated HTML, PostScript or PDF produced by some word processors for output purposes only. The "Title Page" means, for a printed book, the title page itself, plus such following pages as are needed to hold, legibly, the material this License requires to appear in the title page. For works in formats which do not have any title page as such, "Title Page" means the text near the most prominent appearance of the work's title, preceding the beginning of the body of the text. A section "Entitled XYZ" means a named subunit of the Document whose title either is precisely XYZ or contains XYZ in parentheses following text that translates XYZ in another language. (Here XYZ stands for a specific section name mentioned below, such as "Acknowledgements", "Dedications", "Endorsements", or "History".) To "Preserve the Title" of such a section when you modify the Document means that it remains a section "Entitled XYZ" according to this definition. The Document may include Warranty Disclaimers next to the notice which states that this License applies to the Document. These Warranty Disclaimers are considered to be included by reference in this License, but only as regards disclaiming warranties: any other implication that these Warranty Disclaimers may have is void and has no effect on the meaning of this License. 2. VERBATIM COPYING You may copy and distribute the Document in any medium, either commercially or noncommercially, provided that this License, the copyright notices, and the license notice saying this License applies to the Document are reproduced in all copies, and that you add no other conditions whatsoever to those of this License. You may not use technical measures to obstruct or control the reading or further copying of the copies you make or distribute. However, you may accept compensation in exchange for copies. If you distribute a large enough number of copies you must also follow the conditions in section 3. You may also lend copies, under the same conditions stated above, and you may publicly display copies. 3. COPYING IN QUANTITY If you publish printed copies (or copies in media that commonly have printed covers) of the Document, numbering more than 100, and the Document's license notice requires Cover Texts, you must enclose the copies in covers that carry, clearly and legibly, all these Cover Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on the back cover. Both covers must also clearly and legibly identify you as the publisher of these copies. The front cover must present the full title with all words of the title equally prominent and visible. You may add other material on the covers in addition. Copying with changes limited to the covers, as long as they preserve the title of the Document and satisfy these conditions, can be treated as verbatim copying in other respects. If the required texts for either cover are too voluminous to fit legibly, you should put the first ones listed (as many as fit reasonably) on the actual cover, and continue the rest onto adjacent pages. If you publish or distribute Opaque copies of the Document numbering more than 100, you must either include a machine-readable Transparent copy along with each Opaque copy, or state in or with each Opaque copy a computer-network location from which the general network-using public has access to download using public-standard network protocols a complete Transparent copy of the Document, free of added material. If you use the latter option, you must take reasonably prudent steps, when you begin distribution of Opaque copies in quantity, to ensure that this Transparent copy will remain thus accessible at the stated location until at least one year after the last time you distribute an Opaque copy (directly or through your agents or retailers) of that edition to the public. It is requested, but not required, that you contact the authors of the Document well before redistributing any large number of copies, to give them a chance to provide you with an updated version of the Document. 4. MODIFICATIONS You may copy and distribute a Modified Version of the Document under the conditions of sections 2 and 3 above, provided that you release the Modified Version under precisely this License, with the Modified Version filling the role of the Document, thus licensing distribution and modification of the Modified Version to whoever possesses a copy of it. In addition, you must do these things in the Modified Version: A. Use in the Title Page (and on the covers, if any) a title distinct from that of the Document, and from those of previous versions (which should, if there were any, be listed in the History section of the Document). You may use the same title as a previous version if the original publisher of that version gives permission. B. List on the Title Page, as authors, one or more persons or entities responsible for authorship of the modifications in the Modified Version, together with at least five of the principal authors of the Document (all of its principal authors, if it has fewer than five), unless they release you from this requirement. C. State on the Title page the name of the publisher of the Modified Version, as the publisher. D. Preserve all the copyright notices of the Document. E. Add an appropriate copyright notice for your modifications adjacent to the other copyright notices. F. Include, immediately after the copyright notices, a license notice giving the public permission to use the Modified Version under the terms of this License, in the form shown in the Addendum below. G. Preserve in that license notice the full lists of Invariant Sections and required Cover Texts given in the Document's license notice. H. Include an unaltered copy of this License. I. Preserve the section Entitled "History", Preserve its Title, and add to it an item stating at least the title, year, new authors, and publisher of the Modified Version as given on the Title Page. If there is no section Entitled "History" in the Document, create one stating the title, year, authors, and publisher of the Document as given on its Title Page, then add an item describing the Modified Version as stated in the previous sentence. J. Preserve the network location, if any, given in the Document for public access to a Transparent copy of the Document, and likewise the network locations given in the Document for previous versions it was based on. These may be placed in the "History" section. You may omit a network location for a work that was published at least four years before the Document itself, or if the original publisher of the version it refers to gives permission. K. For any section Entitled "Acknowledgements" or "Dedications", Preserve the Title of the section, and preserve in the section all the substance and tone of each of the contributor acknowledgements and/or dedications given therein. L. Preserve all the Invariant Sections of the Document, unaltered in their text and in their titles. Section numbers or the equivalent are not considered part of the section titles. M. Delete any section Entitled "Endorsements". Such a section may not be included in the Modified Version. N. Do not retitle any existing section to be Entitled "Endorsements" or to conflict in title with any Invariant Section. O. Preserve any Warranty Disclaimers. If the Modified Version includes new front-matter sections or appendices that qualify as Secondary Sections and contain no material copied from the Document, you may at your option designate some or all of these sections as invariant. To do this, add their titles to the list of Invariant Sections in the Modified Version's license notice. These titles must be distinct from any other section titles. You may add a section Entitled "Endorsements", provided it contains nothing but endorsements of your Modified Version by various parties--for example, statements of peer review or that the text has been approved by an organization as the authoritative definition of a standard. You may add a passage of up to five words as a Front-Cover Text, and a passage of up to 25 words as a Back-Cover Text, to the end of the list of Cover Texts in the Modified Version. Only one passage of Front-Cover Text and one of Back-Cover Text may be added by (or through arrangements made by) any one entity. If the Document already includes a cover text for the same cover, previously added by you or by arrangement made by the same entity you are acting on behalf of, you may not add another; but you may replace the old one, on explicit permission from the previous publisher that added the old one. The author(s) and publisher(s) of the Document do not by this License give permission to use their names for publicity for or to assert or imply endorsement of any Modified Version. 5. COMBINING DOCUMENTS You may combine the Document with other documents released under this License, under the terms defined in section 4 above for modified versions, provided that you include in the combination all of the Invariant Sections of all of the original documents, unmodified, and list them all as Invariant Sections of your combined work in its license notice, and that you preserve all their Warranty Disclaimers. The combined work need only contain one copy of this License, and multiple identical Invariant Sections may be replaced with a single copy. If there are multiple Invariant Sections with the same name but different contents, make the title of each such section unique by adding at the end of it, in parentheses, the name of the original author or publisher of that section if known, or else a unique number. Make the same adjustment to the section titles in the list of Invariant Sections in the license notice of the combined work. In the combination, you must combine any sections Entitled "History" in the various original documents, forming one section Entitled "History"; likewise combine any sections Entitled "Acknowledgements", and any sections Entitled "Dedications". You must delete all sections Entitled "Endorsements." 6. COLLECTIONS OF DOCUMENTS You may make a collection consisting of the Document and other documents released under this License, and replace the individual copies of this License in the various documents with a single copy that is included in the collection, provided that you follow the rules of this License for verbatim copying of each of the documents in all other respects. You may extract a single document from such a collection, and distribute it individually under this License, provided you insert a copy of this License into the extracted document, and follow this License in all other respects regarding verbatim copying of that document. 7. AGGREGATION WITH INDEPENDENT WORKS A compilation of the Document or its derivatives with other separate and independent documents or works, in or on a volume of a storage or distribution medium, is called an "aggregate" if the copyright resulting from the compilation is not used to limit the legal rights of the compilation's users beyond what the individual works permit. When the Document is included an aggregate, this License does not apply to the other works in the aggregate which are not themselves derivative works of the Document. If the Cover Text requirement of section 3 is applicable to these copies of the Document, then if the Document is less than one half of the entire aggregate, the Document's Cover Texts may be placed on covers that bracket the Document within the aggregate, or the electronic equivalent of covers if the Document is in electronic form. Otherwise they must appear on printed covers that bracket the whole aggregate. 8. TRANSLATION Translation is considered a kind of modification, so you may distribute translations of the Document under the terms of section 4. Replacing Invariant Sections with translations requires special permission from their copyright holders, but you may include translations of some or all Invariant Sections in addition to the original versions of these Invariant Sections. You may include a translation of this License, and all the license notices in the Document, and any Warranty Disclaimers, provided that you also include the original English version of this License and the original versions of those notices and disclaimers. In case of a disagreement between the translation and the original version of this License or a notice or disclaimer, the original version will prevail. If a section in the Document is Entitled "Acknowledgements", "Dedications", or "History", the requirement (section 4) to Preserve its Title (section 1) will typically require changing the actual title. 9. TERMINATION You may not copy, modify, sublicense, or distribute the Document except as expressly provided for under this License. Any other attempt to copy, modify, sublicense or distribute the Document is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 10. FUTURE REVISIONS OF THIS LICENSE The Free Software Foundation may publish new, revised versions of the GNU Free Documentation License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. See `http://www.gnu.org/copyleft/'. Each version of the License is given a distinguishing version number. If the Document specifies that a particular numbered version of this License "or any later version" applies to it, you have the option of following the terms and conditions either of that specified version or of any later version that has been published (not as a draft) by the Free Software Foundation. If the Document does not specify a version number of this License, you may choose any version ever published (not as a draft) by the Free Software Foundation. A.1 ADDENDUM: How to use this License for your documents ======================================================== To use this License in a document you have written, include a copy of the License in the document and put the following copyright and license notices just after the title page: Copyright (C) YEAR YOUR NAME. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled ``GNU Free Documentation License''. If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts, replace the "with...Texts." line with this: with the Invariant Sections being LIST THEIR TITLES, with the Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. If you have Invariant Sections without Cover Texts, or some other combination of the three, merge those two alternatives to suit the situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, to permit their use in free software. Concept Index ************* This is a general index of all issues discussed in this manual #include: See 4.1.2. (line 341) #include_once: See 4.1.2. (line 361) #line: See 4.1.2. (line 366) /etc/hosts.allow: See 4.5. (line 731) /etc/services: See 4.4. (line 671) access-violations, statistics: See 4.13. (line 1514) admin: See 4.14.4. (line 1891) admin-address: See 4.14. (line 1601) alias: See 4.11. (line 1304) all, statistics: See 4.13. (line 1569) all-spools: See 4.4. (line 684) allow-syslog-priority: See 4.5. (line 740) allow-table: See 4.5. (line 732) archivation methods: See 4.10. (line 1167) archivation, defined: See 4.10. (line 1160) archive <1>: See 4.11. (line 1336) archive: See 4.10. (line 1167) archive-signatures: See 4.10. (line 1272) archives, statistics: See 4.13. (line 1541) authpriv, syslog facility: See 4.7. (line 801) backup: See 4.10. (line 1239) bad-detached-signature: See 4.14.4. (line 1874) bad-directive-signature: See 4.14.4. (line 1870) bad-ownership: See 4.14.4. (line 1866) bad-signatures, statistics: See 4.13. (line 1510) bad-triplets, statistics: See 4.13. (line 1527) block statement: See 4.1.3. (line 558) boolean value: See 4.1.3. (line 403) builtin: See 4.9. (line 960) builtin dictionary: See 4.9.2. (line 1071) c, -c short option, described: See 3. (line 208) check-failure: See 4.14.4. (line 1878) check-script: See 4.12. (line 1391) check:diagn: See 4.14.4. (line 1962) check:result: See 4.14.4. (line 1960) command line options: See 6. (line 2274) comment: See 4.9. (line 1009) Comments in a configuration file: See 4.1.1. (line 317) comments, pragmatic: See 4.1.2. (line 335) complete-triplets, statistics: See 4.13. (line 1518) config-file: See 4.8. (line 844) config-file, --config-file option, described: See 3. (line 208) config-file, --config-file option, summary: See 6. (line 2277) config-group: See 4.8. (line 847) config-help, --config-help option, introduced: See 4. (line 299) configuration file statements: See 4.1.3. (line 384) configuration statements, reference: See 5. (line 2032) cron mode: See 2.1. (line 171) cron, --cron option, described: See 3. (line 229) cron, --cron option, summary: See 6. (line 2283) cron, syslog facility: See 4.7. (line 801) d, -d short option, described: See 3. (line 251) D, -D short option, introduced: See 4.1.4. (line 599) daemon <1>: See 4.5. (line 727) daemon: See 4.4. (line 666) daemon mode: See 2.1. (line 177) daemon, syslog facility: See 4.7. (line 801) database: See 4.8. (line 888) database, MySQL: See 4.8. (line 821) database, SQL: See 4.8. (line 821) date: See 4.14.3. (line 1776) debug, --debug option, described: See 3. (line 251) debug, --debug option, summary: See 6. (line 2288) define, --define option, introduced: See 4.1.4. (line 599) define, --define option, summary: See 6. (line 2294) define-message: See 4.14.2. (line 1710) defining source and distribution directories: See 4.11. (line 1280) deny-syslog-priority: See 4.5. (line 743) deny-table: See 4.5. (line 736) dest-dir: See 4.14.4. (line 1938) destination: See 4.11. (line 1315) destination directory: See 2. (line 122) detached signature <1>: See 2. (line 158) detached signature: See 1. (line 85) dictionaries: See 4.9. (line 923) dictionary <1>: See 4.11. (line 1340) dictionary <2>: See 4.9. (line 931) dictionary: See 2. (line 148) dir: See 4.14.4. (line 1937) directory: See 4.6. (line 769) directory, archivation: See 4.10. (line 1187) directory, destination: See 2. (line 122) directory, distribution: See 2. (line 122) directory, source <1>: See 2. (line 122) directory, source: See 1. (line 75) directory, upload: See 2. (line 122) distribution directory: See 2. (line 122) distribution directory, defining: See 4.11. (line 1280) distribution spool: See 4.11. (line 1280) distribution verification: See 4.12. (line 1384) dry-run, --dry-run option, described: See 3. (line 261) dry-run, --dry-run option, summary: See 6. (line 2307) dump-grammar-trace, --dump-grammar-trace option, summary:See 6. (line 2299) dump-lex-trace, --dump-lex-trace option, summary:See 6. (line 2303) e, -e short option, described: See 3. (line 219) E, -E short option, introduced: See 4. (line 294) email:admin: See 4.14.4. (line 1954) email:owner: See 4.14.4. (line 1955) email:user: See 4.14.4. (line 1958) enable <1>: See 4.6. (line 766) enable: See 4.5. (line 724) errors, statistics: See 4.13. (line 1504) escape sequence: See 4.1.3. (line 411) event: See 4.14.4. (line 1860) event notification: See 4.14.4. (line 1844) existing, backup method: See 4.10. (line 1252) expire-time: See 4.6. (line 775) expired triplet: See 2. (line 141) expired-triplets, statistics: See 4.13. (line 1530) external: See 4.9. (line 967) external dictionary: See 4.9.3. (line 1155) facility: See 4.7. (line 801) FDL, GNU Free Documentation License: See Appendix A. (line 2406) file-sweep-time <1>: See 4.11. (line 1344) file-sweep-time: See 4.2. (line 632) force, --force option, summary: See 6. (line 2334) foreground: See 4.2. (line 618) foreground, --foreground option, summary: See 6. (line 2337) from-address: See 4.14. (line 1591) ftp, syslog facility: See 4.7. (line 801) gpg-homedir: See 4.2. (line 640) gpg-sign <1>: See 4.14.4. (line 1909) gpg-sign: See 4.14.3. (line 1767) group: See 4.3. (line 655) h, -h short option, described: See 3. (line 272) help, --help option, described: See 3. (line 272) help, --help option, summary: See 6. (line 2376) here-document: See 4.1.3. (line 487) host: See 4.8. (line 881) I, -I short option, introduced: See 4.1.4. (line 603) implicit signature archivation: See 4.10. (line 1262) include-directory, --include-directory option, introduced:See 4.1.4. (line 603) include-directory, --include-directory option, summary:See 6. (line 2340) incomplete triplet: See 2. (line 141) incomplete-triplets, statistics: See 4.13. (line 1521) introduction: See 1. (line 69) invocation <1>: See 6. (line 2274) invocation: See 3. (line 208) lint, --lint option, described: See 3. (line 214) lint, --lint option, introduced: See 4. (line 288) lint, --lint option, summary: See 6. (line 2346) list: See 4.1.3. (line 527) listen: See 4.4. (line 669) listing, triplet: See 4.14.4. (line 1982) local0 through local7, syslog facilities: See 4.7. (line 801) locking: See 4.6. (line 758) m4: See 4.1.4. (line 573) mail notification: See 4.14. (line 1580) mail, syslog facility: See 4.7. (line 801) mail-statistics: See 4.14.3. (line 1738) mailer: See 4.14.1. (line 1620) mailer URL: See 4.14.1. (line 1626) message <1>: See 4.14.4. (line 1886) message: See 4.14.3. (line 1748) message template: See 4.14.2. (line 1703) meta-interpretation: See 4.1.3. (line 450) meta-variables: See 4.1.3. (line 450) meta-variables in admin notifications: See 4.14.3. (line 1774) multi-line comments: See 4.1.1. (line 325) MySQL databases: See 4.8. (line 821) n, -n short option, described: See 3. (line 261) name: See 4.10. (line 1191) never, backup method: See 4.10. (line 1257) nil, backup method: See 4.10. (line 1252) no-preprocessor, --no-preprocessor option, defined:See 4.1.4. (line 608) no-preprocessor, --no-preprocessor option, introduced:See 4. (line 294) no-preprocessor, --no-preprocessor option, summary:See 6. (line 2354) none, archivation: See 4.10. (line 1181) none, statistics: See 4.13. (line 1564) notification message template: See 4.14.2. (line 1703) notify-event <1>: See 4.14.4. (line 1852) notify-event: See 4.11. (line 1350) numbered, backup method: See 4.10. (line 1248) operation: See 2. (line 114) operation mode: See 2.1. (line 169) overview: See 2. (line 114) owner: See 4.14.4. (line 1895) p: See 4.9. (line 978) params: See 4.9. (line 1013) password: See 4.8. (line 894) PGP <1>: See 2. (line 148) PGP: See 1. (line 85) PGP key: See 4.9. (line 923) PGP signature: See 4.13. (line 1511) pidfile: See 4.4. (line 697) pp-setup: See 4.1.4. (line 584) pragmatic comments: See 4.1.2. (line 335) preprocessor: See 4.1.4. (line 573) preprocessor, --preprocessor option, defined: See 4.1.4. (line 611) preprocessor, --preprocessor option, summary: See 6. (line 2357) print-priority: See 4.7. (line 812) project <1>: See 4.14.4. (line 1933) project: See 4.9. (line 978) project-owner <1>: See 4.9.1.1. (line 1035) project-owner: See 4.9. (line 945) project-uploader: See 4.9. (line 951) project-uploader-sql: See 4.9.1.2. (line 1053) query: See 4.9. (line 974) quoted string: See 4.1.3. (line 411) read: See 4.14.4. (line 1886) recipient: See 4.14.4. (line 1883) release submission daemon: See 1. (line 94) rmsymlinks, statistics: See 4.13. (line 1547) Savane: See 4.9.1. (line 1028) signature files, archivation: See 4.10. (line 1262) signature, detached <1>: See 2. (line 158) signature, detached: See 1. (line 85) simple statements: See 4.1.3. (line 384) simple, backup method: See 4.10. (line 1257) single-line comments: See 4.1.1. (line 317) single-process: See 4.2. (line 621) single-process, --single-process option, summary:See 6. (line 2361) source: See 4.11. (line 1312) source directory <1>: See 2. (line 122) source directory: See 1. (line 75) source directory, defining: See 4.11. (line 1280) source, --source option, summary: See 6. (line 2365) source-dir: See 4.14.4. (line 1940) spool <1>: See 4.14.4. (line 1936) spool <2>: See 4.11. (line 1288) spool: See 2. (line 122) spool, --spool option, described: See 3. (line 239) spool, --spool option, summary: See 6. (line 2320) sql <1>: See 4.9. (line 963) sql: See 4.8. (line 829) SQL databases: See 4.8. (line 821) sql dictionary: See 4.9.1. (line 1018) ssl-ca: See 4.8. (line 897) stat:access_violations: See 4.14.3. (line 1781) stat:archives: See 4.14.3. (line 1789) stat:bad_signatures: See 4.14.3. (line 1780) stat:bad_triplets: See 4.14.3. (line 1784) stat:check-failures: See 4.14.3. (line 1792) stat:complete_triplets: See 4.14.3. (line 1782) stat:errors: See 4.14.3. (line 1778) stat:expired_triplets: See 4.14.3. (line 1786) stat:incomplete_triplets: See 4.14.3. (line 1783) stat:rmsymlinks: See 4.14.3. (line 1791) stat:symlinks: See 4.14.3. (line 1790) stat:triplet_success: See 4.14.3. (line 1787) stat:uploads: See 4.14.3. (line 1788) stat:warnings: See 4.14.3. (line 1779) statement, block: See 4.1.3. (line 558) statement, simple: See 4.1.3. (line 384) statements, configuration file: See 4.1.3. (line 384) statistics <1>: See 4.14.3. (line 1757) statistics: See 4.13. (line 1481) stderr, --stderr option, described: See 3. (line 219) stderr, --stderr option, summary: See 6. (line 2314) string, quoted: See 4.1.3. (line 411) string, unquoted: See 4.1.3. (line 407) success: See 4.14.4. (line 1863) symlinks, statistics: See 4.13. (line 1544) syslog: See 4.7. (line 794) syslog priority, printing in diagnostics: See 4.7. (line 812) syslog tag, configuring: See 4.7. (line 807) syslog, --syslog option, described: See 3. (line 219) syslog, --syslog option, summary: See 6. (line 2283) syslog, configuration: See 4.7. (line 789) t, -t short option, described: See 3. (line 214) t, backup method: See 4.10. (line 1248) tag: See 4.7. (line 807) tar, archivation: See 4.10. (line 1184) tar-program: See 4.10. (line 1208) tcp-wrapper: See 4.5. (line 711) templates, notification messages: See 4.14.2. (line 1703) Time Interval Specification: See 4.1.3. (line 544) timeout: See 4.6. (line 781) timer:spool:real: See 4.14.4. (line 1977) timer:spool:system: See 4.14.4. (line 1978) timer:spool:user: See 4.14.4. (line 1979) timer:TAG:real: See 4.14.3. (line 1801) timer:TAG:system: See 4.14.3. (line 1802) timer:TAG:user: See 4.14.3. (line 1803) timer:triplet:real: See 4.14.4. (line 1974) timer:triplet:system: See 4.14.4. (line 1975) timer:triplet:user: See 4.14.4. (line 1976) timer:wydawca:real <1>: See 4.14.4. (line 1970) timer:wydawca:real: See 4.14.3. (line 1799) timer:wydawca:system <1>: See 4.14.4. (line 1972) timer:wydawca:system: See 4.14.3. (line 1799) timer:wydawca:user <1>: See 4.14.4. (line 1973) timer:wydawca:user: See 4.14.3. (line 1800) timers <1>: See 4.14.4. (line 1968) timers: See 4.14.3. (line 1796) triplet listing: See 4.14.4. (line 1982) triplet, expired: See 2. (line 141) triplet, incomplete: See 2. (line 141) triplet-success, statistics: See 4.13. (line 1533) triplet:dir: See 4.14.4. (line 1943) triplet:dist: See 4.14.4. (line 1941) triplet:ls:dir: See 4.14.4. (line 1948) triplet:ls:full: See 4.14.4. (line 1944) triplet:ls:sig: See 4.14.4. (line 1947) triplet:ls:upload: See 4.14.4. (line 1945) triplet:sig: See 4.14.4. (line 1942) type: See 4.9. (line 958) u: See 4.9. (line 1003) umask: See 4.2. (line 629) upload directory: See 2. (line 122) upload site: See 1. (line 75) uploads, statistics: See 4.13. (line 1536) url <1>: See 4.14.4. (line 1935) url: See 4.11. (line 1308) URL, mailer: See 4.14.1. (line 1626) user <1>: See 4.14.4. (line 1900) user <2>: See 4.9. (line 1003) user <3>: See 4.8. (line 891) user: See 4.3. (line 652) user:email: See 4.14.4. (line 1953) user:name: See 4.14.4. (line 1951) user:real-name: See 4.14.4. (line 1952) v, -v short option, described: See 3. (line 272) verification: See 4.12. (line 1384) version, --version option, described: See 3. (line 272) version, --version option, summary: See 6. (line 2380) version-control Emacs variable: See 4.10. (line 1239) wakeup-interval: See 4.4. (line 688) warnings, statistics: See 4.13. (line 1507) WYDAWCA_DEST: See 4.12. (line 1405) WYDAWCA_DIST_FILE: See 4.12. (line 1414) WYDAWCA_SOURCE: See 4.12. (line 1401) WYDAWCA_SPOOL: See 4.12. (line 1398) WYDAWCA_TRIPLET_BASE: See 4.12. (line 1411) WYDAWCA_URL: See 4.12. (line 1408)