• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

libs/H14-Mar-2021-631,793532,818

AUTHORSH A D25-Aug-2013548 2114

COPYINGH A D25-Aug-2013183 43

COPYING.GPLH A D25-Aug-201334.3 KiB675553

ChangeLogH A D29-Aug-201352 21

INSTALLH A D14-Mar-202149.7 KiB1,007805

Makefile.amH A D14-Mar-20218 KiB250185

Makefile.inH A D03-May-202243.2 KiB1,2931,133

NEWSH A D28-Nov-20131.4 KiB2722

READMEH A D14-Mar-2021610 1610

README.pamH A D25-Aug-2013991 2116

aclocal.m4H A D14-Mar-2021365.3 KiB10,2639,264

compileH A D01-Jan-20207.2 KiB349259

config.guessH A D27-Jul-202043.1 KiB1,4871,294

config.h.inH A D14-Mar-20211.6 KiB6241

config.rpathH A D05-Nov-202018.1 KiB685588

config.subH A D27-Jul-202030.7 KiB1,7911,636

configureH A D14-Mar-2021451.1 KiB15,48712,934

configure.acH A D14-Mar-20219.3 KiB354284

dbobj.config.inH A D25-Aug-2013118 64

dbobj.h.inH A D25-Aug-20131.2 KiB6049

depcompH A D01-Jan-202023 KiB792502

install-shH A D02-Sep-201915.3 KiB530346

ltmain.shH A D14-Mar-2021316.6 KiB11,1507,980

missingH A D01-Jan-20206.7 KiB216143

rpm.releaseH A D14-Mar-202124 32

sqwebmail.lpspecH A D14-Mar-20215.8 KiB239180

sqwebmail.lpspec.inH A D13-Jan-20145.8 KiB239180

sqwebmail.specH A D14-Mar-20217.1 KiB291207

sqwebmail.spec.inH A D14-Mar-20217.1 KiB291224

sqwebmaild.rc.inH A D25-Aug-20131.2 KiB6249

sysconftoolH A D14-Mar-20216.5 KiB376261

README

1                                   SqWebMail
2
3   SqWebMail is a CGI Webmail client for Maildir mailboxes.
4
5   For installation instructions, see INSTALL. Please subscribe to the
6   sqwebmail mailing list to stay up to date as to any bugs or hot fixes for
7   SqWebMail. To subscribe, go to:
8   https://lists.sourceforge.net/lists/listinfo/courier-sqwebmail.
9
10   For a list of known bugs, see BUGS (in the sqwebmail subdirectory).
11
12   See NEWS and ChangeLog for late-breaking news.
13
14   Before using SqWebMail, make sure that you read SECURITY (in the sqwebmail
15   subdirectory), and understand every word of it.
16

README.pam

1This README clarifies PAM (Pluggable Authentication Modules) support in
2SqWebMail.
3
4The configure script automatically enables PAM support if it detects
5that PAM authentication is available on your system.  Don't be fooled, you
6still need to perform some local setup in order to get PAM authentication
7working.  Specifically, you will need to define how the PAM module will
8authenticate userids and passwords for the "webmail" service.  SqWebMail
9merely requests authentications for this service, and it is up to you to
10tell your PAM library how it should handle it.
11
12The exact procedure for doing so should be found in your system administration
13manual.  For Red Hat Linux, you can simply create a file called
14/etc/pam.d/webmail, and initialize it to contain the following directives:
15
16#%PAM-1.0
17auth       required     /lib/security/pam_pwdb.so shadow nullok
18account    required     /lib/security/pam_pwdb.so
19
20If you install using the source RPM, this will be taken care of automatically.
21