imapext-2007

changeset 15:d012b9a282d9 tip

READMEs changed
author HIROSE Yuuji <yuuji@gentei.org>
date Sun, 07 May 2023 13:13:36 +0900
parents c84e9e99e6ca
children
files README README.UW README.md
diffstat 3 files changed, 75 insertions(+), 75 deletions(-) [+]
line diff
     1.1 --- a/README	Sun May 07 13:10:10 2023 +0900
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,74 +0,0 @@
     1.4 -/* ========================================================================
     1.5 - * Copyright 1988-2007 University of Washington
     1.6 - *
     1.7 - * Licensed under the Apache License, Version 2.0 (the "License");
     1.8 - * you may not use this file except in compliance with the License.
     1.9 - * You may obtain a copy of the License at
    1.10 - *
    1.11 - *     http://www.apache.org/licenses/LICENSE-2.0
    1.12 - *
    1.13 - * 
    1.14 - * ========================================================================
    1.15 - */
    1.16 -
    1.17 -			   IMAP Toolkit Environment
    1.18 -			         4 April 2007
    1.19 -				 Mark Crispin
    1.20 -
    1.21 -
    1.22 -			    UNIX QUICK BUILD NOTES
    1.23 -
    1.24 -These quick build notes assume that you have installed OpenSSL before
    1.25 -attempting to build this software, and that you do not have any non-default
    1.26 -configuration parameters.
    1.27 -
    1.28 -If you need additional information in building this software with OpenSSL,
    1.29 -please refer to the docs/SSLBUILD file for more information.
    1.30 -
    1.31 -If you intend to build this software with a non-default configuration
    1.32 -(including building a non-compliant server without SSL support), please
    1.33 -refer to the docs/BUILD file for more information.
    1.34 -
    1.35 -1) Look in the top-level Makefile and find your system type code.  For example,
    1.36 -   modern versions of Linux will use either "slx", "lnp", or one of the
    1.37 -   lnp-variants (such as "lrh").
    1.38 -
    1.39 -2) Type "make" followed by the system type, e.g. "make slx".
    1.40 -
    1.41 -3) Install the POP2 daemon (ipopd/ipop2d), the POP3 daemon (ipopd/ipop3d), and
    1.42 -   the IMAP daemon (imapd/imapd) on a system directory of your choosing.
    1.43 -
    1.44 -4) Update /etc/services to register the pop2 service on TCP port 109, the
    1.45 -   pop3 service on TCP port 110, and the imap service on TCP port 143.  Also
    1.46 -   update Yellow Pages/NIS/NetInfo/etc. if appropriate on your system.
    1.47 -
    1.48 -5) Update /etc/inetd.conf (or install files on /etc/xinetd.d) to invoke the
    1.49 -   POP2, POP3, and IMAP daemons on their associated services.
    1.50 -
    1.51 -6) If your system uses PAM authentication, be sure to set up /etc/pam.d/imap
    1.52 -   (*not* /etc/pam.d/imapd) and /etc/pam.d/pop (*not* /etc/pam.d/ipop3d or
    1.53 -   /etc/pam.d/pop3d or /etc/pam.d/popd or /etc/pam.d/pop3).
    1.54 -
    1.55 -7) Unless you built your system without SSL support, you will need to set
    1.56 -   up SSL server certificates as described in docs/SSLBUILD.
    1.57 -
    1.58 -6) That's all!
    1.59 -
    1.60 -Read the file docs/BUILD and docs/SSLBUILD if you need more detailed
    1.61 -information and/or you don't understand these quick build instructions.
    1.62 -
    1.63 -			     MISCELLANEOUS NOTES
    1.64 -
    1.65 -     mtest has been run under UNIX, DOS, Windows, NT, Macintosh, TOPS-20, and
    1.66 -VMS.  It is a very primitive interface, however, and is suited mainly as a
    1.67 -model of how to write a main program for c-client.  You should take a look at
    1.68 -the source to figure out how to use it.  Briefly, it first asks for a mailbox
    1.69 -name (either a local file path or an IMAP mailbox in the form
    1.70 -"{hostname}mailbox") and then puts you in a command mode where "?" will give
    1.71 -you a list of commands.
    1.72 -
    1.73 -     Pine is available separately on the FTP.CAC.Washington.EDU archives.
    1.74 -
    1.75 -     The focus of development and support is for UNIX and Win32 (including
    1.76 -Windows 95/98/Millenium, Windows NT, and Windows 2000).  The other ports are
    1.77 -not frequently used or tested, and may be incomplete.
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/README.UW	Sun May 07 13:13:36 2023 +0900
     2.3 @@ -0,0 +1,74 @@
     2.4 +/* ========================================================================
     2.5 + * Copyright 1988-2007 University of Washington
     2.6 + *
     2.7 + * Licensed under the Apache License, Version 2.0 (the "License");
     2.8 + * you may not use this file except in compliance with the License.
     2.9 + * You may obtain a copy of the License at
    2.10 + *
    2.11 + *     http://www.apache.org/licenses/LICENSE-2.0
    2.12 + *
    2.13 + * 
    2.14 + * ========================================================================
    2.15 + */
    2.16 +
    2.17 +			   IMAP Toolkit Environment
    2.18 +			         4 April 2007
    2.19 +				 Mark Crispin
    2.20 +
    2.21 +
    2.22 +			    UNIX QUICK BUILD NOTES
    2.23 +
    2.24 +These quick build notes assume that you have installed OpenSSL before
    2.25 +attempting to build this software, and that you do not have any non-default
    2.26 +configuration parameters.
    2.27 +
    2.28 +If you need additional information in building this software with OpenSSL,
    2.29 +please refer to the docs/SSLBUILD file for more information.
    2.30 +
    2.31 +If you intend to build this software with a non-default configuration
    2.32 +(including building a non-compliant server without SSL support), please
    2.33 +refer to the docs/BUILD file for more information.
    2.34 +
    2.35 +1) Look in the top-level Makefile and find your system type code.  For example,
    2.36 +   modern versions of Linux will use either "slx", "lnp", or one of the
    2.37 +   lnp-variants (such as "lrh").
    2.38 +
    2.39 +2) Type "make" followed by the system type, e.g. "make slx".
    2.40 +
    2.41 +3) Install the POP2 daemon (ipopd/ipop2d), the POP3 daemon (ipopd/ipop3d), and
    2.42 +   the IMAP daemon (imapd/imapd) on a system directory of your choosing.
    2.43 +
    2.44 +4) Update /etc/services to register the pop2 service on TCP port 109, the
    2.45 +   pop3 service on TCP port 110, and the imap service on TCP port 143.  Also
    2.46 +   update Yellow Pages/NIS/NetInfo/etc. if appropriate on your system.
    2.47 +
    2.48 +5) Update /etc/inetd.conf (or install files on /etc/xinetd.d) to invoke the
    2.49 +   POP2, POP3, and IMAP daemons on their associated services.
    2.50 +
    2.51 +6) If your system uses PAM authentication, be sure to set up /etc/pam.d/imap
    2.52 +   (*not* /etc/pam.d/imapd) and /etc/pam.d/pop (*not* /etc/pam.d/ipop3d or
    2.53 +   /etc/pam.d/pop3d or /etc/pam.d/popd or /etc/pam.d/pop3).
    2.54 +
    2.55 +7) Unless you built your system without SSL support, you will need to set
    2.56 +   up SSL server certificates as described in docs/SSLBUILD.
    2.57 +
    2.58 +6) That's all!
    2.59 +
    2.60 +Read the file docs/BUILD and docs/SSLBUILD if you need more detailed
    2.61 +information and/or you don't understand these quick build instructions.
    2.62 +
    2.63 +			     MISCELLANEOUS NOTES
    2.64 +
    2.65 +     mtest has been run under UNIX, DOS, Windows, NT, Macintosh, TOPS-20, and
    2.66 +VMS.  It is a very primitive interface, however, and is suited mainly as a
    2.67 +model of how to write a main program for c-client.  You should take a look at
    2.68 +the source to figure out how to use it.  Briefly, it first asks for a mailbox
    2.69 +name (either a local file path or an IMAP mailbox in the form
    2.70 +"{hostname}mailbox") and then puts you in a command mode where "?" will give
    2.71 +you a list of commands.
    2.72 +
    2.73 +     Pine is available separately on the FTP.CAC.Washington.EDU archives.
    2.74 +
    2.75 +     The focus of development and support is for UNIX and Win32 (including
    2.76 +Windows 95/98/Millenium, Windows NT, and Windows 2000).  The other ports are
    2.77 +not frequently used or tested, and may be incomplete.
     3.1 --- a/README.md	Sun May 07 13:10:10 2023 +0900
     3.2 +++ b/README.md	Sun May 07 13:13:36 2023 +0900
     3.3 @@ -1,4 +1,4 @@
     3.4 -imap-uw Extension Package
     3.5 +UW-IMAPD Extension Package
     3.6  ============================
     3.7  This package enables these features to imap-uw:
     3.8  * Maildir support

UW-IMAP'd extensions by yuuji