Compare commits

..

1 Commits

Author SHA1 Message Date
Roland Gruber 7a7bffdb31 This commit was manufactured by cvs2svn to create tag 'lam_1_0_3'. 2006-07-03 20:05:47 +00:00
5346 changed files with 57822 additions and 866860 deletions

3
.github/FUNDING.yml vendored
View File

@ -1,3 +0,0 @@
github: [LDAPAccountManager]

View File

@ -1,11 +0,0 @@
name: "LAM CodeQL config"
queries:
- uses: security-and-quality
paths-ignore:
- '**/3rdParty/**/*.*'
- '**/lib/extra/**/*.*'
- '**/lib/*jquery*.js'
paths:
- lam

View File

@ -1,56 +0,0 @@
name: "CodeQL"
on:
push:
branches: [develop]
pull_request:
# The branches below must be a subset of the branches above
branches: [develop]
schedule:
- cron: '0 10 * * 0'
jobs:
analyse:
name: Analyse
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2
# If this run was triggered by a pull request event, then checkout
# the head of the pull request instead of the merge commit.
- run: git checkout HEAD^2
if: ${{ github.event_name == 'pull_request' }}
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
# Override language selection by uncommenting this and choosing your languages
# with:
# languages: go, javascript, csharp, python, cpp, java
with:
config-file: ./.github/codeql/codeql-config.yml
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1
# Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language
#- run: |
# make bootstrap
# make release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1

9
.gitignore vendored
View File

@ -1,9 +0,0 @@
/.settings/
/.buildpath
/.project
/.Readme.md.html
/vendor/
/composer.lock
/code-coverage/
/.phpunit.result.cache
/lam/lib/3rdParty/composer/bin/

View File

@ -1,18 +0,0 @@
language: php
addons:
sonarcloud:
organization: "ldap-account-manager"
php:
- '7.3'
cache:
directories:
- '$HOME/.sonar/cache'
script:
- phpunit
- ls -l code-coverage/*
- sonar-scanner
- pip install --user codespell
- cd lam
- ./codespell.sh

View File

@ -1,28 +0,0 @@
LDAP Account Manager
====================
LDAP Account Manager (LAM) is a webfrontend for managing entries (e.g. users, groups, DHCP settings) stored in an LDAP directory. LAM was designed to make LDAP management as easy as possible for the user. It abstracts from the technical details of LDAP and allows persons without technical background to manage LDAP entries. If needed, power users may still directly edit LDAP entries via the integrated LDAP browser.
![LAM](https://www.ldap-account-manager.org/lamcms/sites/default/files/styles/slideshow/public/userList.png)
![LAM](https://www.ldap-account-manager.org/lamcms/sites/default/files/styles/slideshow/public/user_0.png)
# Download
You can get the newest version at https://www.ldap-account-manager.org/.
# Documentation
Please see the [documentation area](https://www.ldap-account-manager.org/lamcms/documentation).
# Source code
There are two modules. Usually, you only need the files inside "lam".
* [lam](lam): LAM main source code
* [lam-packaging](lam-packaging): build scripts
# License
LAM is published under the GNU General Public License.
The complete list of licenses can be found in the copyright file.
Copyright (C) 2003 - 2020 Roland Gruber <post@rolandgruber.de>

View File

@ -1,9 +0,0 @@
# Security Policy
## Supported Versions
Security updates are always created based on the latest release.
## Reporting a Vulnerability
Please report all security issues to post@rolandgruber.de. Reports will be answered within 48h.

View File

@ -1,10 +0,0 @@
{
"require-dev" : {
"phpunit/phpunit" : "8.5.2",
"squizlabs/php_codesniffer" : "3.4.0"
},
"require": {
"ext-ldap": "*",
"ext-json": "*"
}
}

View File

@ -1 +0,0 @@
Please see lam/copyright.

View File

@ -1,44 +0,0 @@
Alias /lam /usr/share/ldap-account-manager
<Directory /usr/share/ldap-account-manager>
Options +FollowSymLinks
AllowOverride All
Require all granted
DirectoryIndex index.html
</Directory>
<Directory /var/lib/ldap-account-manager/tmp>
Options -Indexes
</Directory>
<Directory /var/lib/ldap-account-manager/tmp/internal>
Options -Indexes
Require all denied
</Directory>
<Directory /var/lib/ldap-account-manager/sess>
Options -Indexes
Require all denied
</Directory>
<Directory /var/lib/ldap-account-manager/config>
Options -Indexes
Require all denied
</Directory>
<Directory /usr/share/ldap-account-manager/lib>
Options -Indexes
Require all denied
</Directory>
<Directory /usr/share/ldap-account-manager/help>
Options -Indexes
Require all denied
</Directory>
<Directory /usr/share/ldap-account-manager/locale>
Options -Indexes
Require all denied
</Directory>

View File

@ -1,19 +0,0 @@
location /lam {
index index.html;
alias /usr/share/ldap-account-manager;
autoindex off;
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php7-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $request_filename;
}
location ~ /lam/(tmp/internal|sess|config|lib|help|locale) {
deny all;
return 403;
}
}

View File

@ -1,83 +1,34 @@
%define httpd_confdir @@HTTP_CONF_DIR@@
%define lam_dir ldap-account-manager
%define lam_uid @@USER@@
%define lam_gid @@GROUP@@
%define lam_distribution @@DISTRIBUTION@@
%define is_suse %(test suse = %lam_distribution && echo 1 || echo 0)
%define is_fedora %(test fedora = %lam_distribution && echo 1 || echo 0)
%define _binary_payload w9.bzdio
%define _source_payload w9.bzdio
%define httpd_rootdir /var/www/html
%define lam_dir lam
%define lam_uid apache
%define lam_gid apache
Name: ldap-account-manager
License: GPL
Group: Productivity/Networking/Web/Frontends
Name: ldap-account-manager
License: GPL
Group: Productivity/Networking/Web/Frontends
Version: @@VERSION@@
Release: 0.%lam_distribution.1
Source0: ldap-account-manager-%{version}.tar.bz2
URL: https://www.ldap-account-manager.org/
Release: 1
Source0: ldap-account-manager-%{version}.tar.gz
URL: http://lam.sourceforge.net
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}
Summary: Administration of LDAP users, groups and hosts via Web GUI
Summary(de): Administration von Benutzern, Gruppen und Hosts für LDAP-Server
Vendor: Roland Gruber
Packager: Roland Gruber <post@rolandgruber.de>
BuildArch: noarch
AutoReqProv: no
Source1: lam.nginx.conf
Source2: lam.apache.conf
Summary: Administration of LDAP users, groups and hosts via Web GUI
BuildArchitectures: noarch
# Requires: mod_php perl
# Autoreqprov: on
%description
LDAP Account Manager (LAM) runs on an existing webserver.
It manages user, group and host accounts. Currently LAM supports
these account types: Samba 3/4, Unix, Kolab 2/3, address book
entries, NIS mail aliases and MAC addresses. There is an integrated LDAP browser
to allow access to the raw LDAP attributes. You
can use templates for account creation and use multiple configuration
profiles. Account information can be exported as PDF file. There is also
a script included which manages quota and homedirectories.
%description -l de
LDAP Account Manager (LAM) läuft auf einem exisierenden Webserver.
LAM verwaltet Benutzer, Gruppen und Hosts. Zur Zeit werden folgende Account-Typen
unterstützt: Samba 3/4, Unix, Kolab 2/3, Addressbuch Einträge, NIS
mail Aliase und MAC-Addressen. Es gibt einen integrierten LDAP-Browser mit dem
man die LDAP-Einträge direkt bearbeiten kann. Zum Anlegen von Accounts können
Vorlagen definiert werden. Es können mehrere Konfigurations-Profile
definiert werden. Account-Informationen können als PDF exportiert
werden. Außerdem exisitiert ein Script mit dem man Quotas und
Home-Verzeichnisse verwalten kann.
%package lamdaemon
Summary: Quota and home directory management for LDAP Account Manager
Summary(de): Verwaltung von Quotas und Heimatverzeichnissen für LDAP Account Manager
Group: Productivity/Networking/Web/Frontends
AutoReqProv: no
%if %is_suse
Requires: perl
Requires: sudo
%endif
%if %is_fedora
Requires: perl
Requires: perl-Sys-Syslog
Requires: sudo
%endif
%description lamdaemon
Lamdaemon is part of LDAP Account Manager. This package
needs to be installed on the server where the home directories
reside and/or quotas should be managed.
%description lamdaemon -l de
Lamdaemon ist Teil von LDAP Account Manager. Dieses Paket
wird auf dem Server installiert, auf dem Quotas und
Heimatverzeichnisse verwaltet werden sollen.
%files lamdaemon
%dir /usr/share/%{lam_dir}
%dir /usr/share/%{lam_dir}/lib
/usr/share/%{lam_dir}/lib/lamdaemon.pl
%doc COPYING HISTORY README VERSION
LDAP Account Manager (LAM) runs on an existing webserver. LAM
supports LDAP connections via SSL and TLS. It manages user, group
and host accounts. Currently LAM supports these account types:
Samba 2 and 3, Unix, Kolab 2, address book entries, NIS mail
aliases and MAC addresses. There is a tree viewer included to
allow access to the raw LDAP attributes. You can use templates
for account creation and use multiple configuration profiles.
Account information can be exported as PDF file. There is also
a script included which manages quota and homedirectories, you
have to setup sudo if you want to use it. LAM is translated to
Catalan, Chinese (Traditional), English, French, German,
Hungarian, Italian, Spanish and Japanese.
%prep
%setup -n ldap-account-manager-%{version}
@ -86,106 +37,28 @@ Heimatverzeichnisse verwaltet werden sollen.
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT/usr/share/%{lam_dir}
cp -dR * $RPM_BUILD_ROOT/usr/share/%{lam_dir}
mkdir -p $RPM_BUILD_ROOT/var/lib/%{lam_dir}
mv $RPM_BUILD_ROOT/usr/share/%{lam_dir}/config $RPM_BUILD_ROOT/var/lib/%{lam_dir}
ln -s /var/lib/%{lam_dir}/config $RPM_BUILD_ROOT/usr/share/%{lam_dir}/config
mkdir -p $RPM_BUILD_ROOT/var/lib/%{lam_dir}/config/pdf
mkdir -p $RPM_BUILD_ROOT/var/lib/%{lam_dir}/config/profiles
mv $RPM_BUILD_ROOT/usr/share/%{lam_dir}/tmp $RPM_BUILD_ROOT/var/lib/%{lam_dir}
ln -s /var/lib/%{lam_dir}/tmp $RPM_BUILD_ROOT/usr/share/%{lam_dir}/tmp
mv $RPM_BUILD_ROOT/usr/share/%{lam_dir}/sess $RPM_BUILD_ROOT/var/lib/%{lam_dir}
ln -s /var/lib/%{lam_dir}/sess $RPM_BUILD_ROOT/usr/share/%{lam_dir}/sess
mkdir -p $RPM_BUILD_ROOT%{httpd_confdir}
cp $RPM_SOURCE_DIR/lam.apache.conf $RPM_BUILD_ROOT%{httpd_confdir}/
mkdir -p $RPM_BUILD_ROOT/etc/%{lam_dir}
cp $RPM_SOURCE_DIR/lam.nginx.conf $RPM_BUILD_ROOT/etc/%{lam_dir}/
mkdir -p $RPM_BUILD_ROOT%{httpd_rootdir}/%{lam_dir}
cp -dR * $RPM_BUILD_ROOT%{httpd_rootdir}/%{lam_dir}
%clean
[ "$RPM_BUILD_ROOT" != "/" ] && [ -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT
%post
if [ ! -f /var/lib/%{lam_dir}/config/config.cfg ]; then
cp /var/lib/%{lam_dir}/config/config.cfg.sample /var/lib/%{lam_dir}/config/config.cfg
chmod 600 /var/lib/%{lam_dir}/config/config.cfg
chown %{lam_uid}:%{lam_gid} /var/lib/%{lam_dir}/config/config.cfg
if [ ! -f /var/lib/%{lam_dir}/config/lam.conf ]; then
cp /var/lib/%{lam_dir}/config/unix.conf.sample /var/lib/%{lam_dir}/config/lam.conf
chmod 600 /var/lib/%{lam_dir}/config/lam.conf
chown %{lam_uid}:%{lam_gid} /var/lib/%{lam_dir}/config/lam.conf
fi
fi
for server in apache2 httpd nginx; do
if [ `which systemctl 2< /dev/null` ]; then
if [ "`systemctl is-active ${server}.service`" = "active" ]; then
systemctl reload ${server}.service
fi
elif [ -e /etc/init.d/${server} ]; then
/etc/init.d/$server reload > /dev/null 2>&1 || :
fi
done
%postun
for server in apache2 httpd nginx; do
if [ `which systemctl 2< /dev/null` ]; then
if [ "`systemctl is-active ${server}.service`" = "active" ]; then
systemctl reload ${server}.service
fi
elif [ -e /etc/init.d/${server} ]; then
/etc/init.d/$server reload > /dev/null 2>&1 || :
fi
done
chown %{lam_uid}.%{lam_gid} -R $RPM_BUILD_ROOT%{httpd_rootdir}/%{lam_dir}/config
chown %{lam_uid}.%{lam_gid} -R $RPM_BUILD_ROOT%{httpd_rootdir}/%{lam_dir}/tmp
chown %{lam_uid}.%{lam_gid} -R $RPM_BUILD_ROOT%{httpd_rootdir}/%{lam_dir}/sess
%files
%defattr(-, root, root)
%dir %attr(700, %{lam_uid}, %{lam_gid}) /var/lib/%{lam_dir}
%doc COPYING HISTORY README VERSION docs/*
%attr(700, %{lam_uid}, %{lam_gid}) /var/lib/%{lam_dir}/sess
%attr(700, %{lam_uid}, %{lam_gid}) /var/lib/%{lam_dir}/tmp
%dir %attr(700, %{lam_uid}, %{lam_gid}) /var/lib/%{lam_dir}/config
%dir %attr(700, %{lam_uid}, %{lam_gid}) /var/lib/%{lam_dir}/config/templates/pdf
%dir %attr(700, %{lam_uid}, %{lam_gid}) /var/lib/%{lam_dir}/config/templates/profiles
%dir %attr(700, %{lam_uid}, %{lam_gid}) /var/lib/%{lam_dir}/config/selfService
/var/lib/%{lam_dir}/config/*.sample
/var/lib/%{lam_dir}/config/.htaccess
/var/lib/%{lam_dir}/config/language
%dir %attr(700, %{lam_uid}, %{lam_gid}) /var/lib/%{lam_dir}/config/pdf
%dir %attr(700, %{lam_uid}, %{lam_gid}) /var/lib/%{lam_dir}/config/profiles
%attr(-, %{lam_uid}, %{lam_gid}) /var/lib/%{lam_dir}/config/templates/pdf/logos
%config(noreplace) %attr(-, %{lam_uid}, %{lam_gid}) /var/lib/%{lam_dir}/config/templates/pdf/default.*
%config(noreplace) %attr(-, %{lam_uid}, %{lam_gid}) /var/lib/%{lam_dir}/config/templates/profiles/default.*
%config(noreplace) %attr(-, %{lam_uid}, %{lam_gid}) /var/lib/%{lam_dir}/config/selfService/.placeholder
/usr/share/%{lam_dir}
%{httpd_confdir}
/etc/%{lam_dir}/lam.nginx.conf
%changelog
* Sun Oct 28 2012 - Roland Gruber post@rolandgruber.de
- Config file changes
* Sun Oct 07 2012 - Roland Gruber post@rolandgruber.de
- Apache reload instead of restart
* Wed Jun 08 2011 - Roland Gruber post@rolandgruber.de
- Install into /usr/share/ldap-account-manager
* Sat Apr 09 2011 - Roland Gruber post@rolandgruber.de
- Do not overwrite config files
* Sat Nov 07 2009 - Roland Gruber post@rolandgruber.de
- Added LAM manuals
* Sat Jul 26 2008 - Roland Gruber post@rolandgruber.de
- Added subpackage for lamdaemon
%doc docs/*txt COPYING HISTORY INSTALL README TODO VERSION
%{httpd_rootdir}/%{lam_dir}
%changelog -n lam
* Wed Jan 11 2006 - Iain Lea iain@bricbrac.de
- Updated for 1.0 series on Fedora Core
- Updated for 1.0 series on Fedora Core
* Mon Dec 12 2005 - Iain Lea iain@bricbrac.de
- Updated for 0.5.x series on Fedora Core
- Updated for 0.5.x series on Fedora Core
* Sun Mar 21 2004 - TiloLutz@gmx.de
- Initial release 0.1.0 - 0.4.5

View File

@ -19,13 +19,10 @@ TAR = @TAR@
prefix=@prefix@
exec_prefix=@exec_prefix@
sbindir=@sbindir@
datarootdir=@datarootdir@
sysconfdir=@sysconfdir@
localstatedir=@localstatedir@
mandir=@mandir@
docdir=@prefix@/docs
web_root=@WEB_ROOT@
htmldir=@prefix@/html
srcdir=@srcdir@
top_srcdir=@top_srcdir@
@ -35,12 +32,20 @@ top_builddir = .
HTTPD_USER = @HTTPD_USER@
HTTPD_GROUP = @HTTPD_GROUP@
DOCS = COPYING HISTORY README copyright docs/schema/dhcp.schema
#INSTALL_PROGRAM = $(INSTALL)
#INSTALL_DATA = $(INSTALL) -m 644
#INSTALL_SCRIPT = $(INSTALL) -m 755
HTML_DOCS = devel manual
DOCS = COPYING HISTORY INSTALL README TODO copyright \
docs/README.Kolab.txt docs/README.fpdf.htm \
docs/README.hosts.txt docs/README.lamdaemon.txt \
docs/README.openldap.txt docs/README.schema.txt \
docs/README.security.txt docs/README.upgrade.txt
LIST1 = graphics help index.html lib locale style templates VERSION pwa_worker.js
LIST2 = sess tmp tmp/internal
HTML_DOCS = docs/devel
LIST1 = graphics help index.html lib locale style templates VERSION
LIST2 = sess tmp
LIST3 = config
RAR = run-as-root.sh
@ -53,75 +58,67 @@ install-lam:
@HERE=`pwd` ; \
[ -d $(DESTDIR)$(prefix) ] || \
$(MKDIR) -p $(DESTDIR)$(prefix) || exit 1 ; \
[ -d $(DESTDIR)$(web_root) ] || \
$(MKDIR) -p $(DESTDIR)$(web_root) || exit 1 ; \
[ -d $(DESTDIR)$(localstatedir) ] || \
$(MKDIR) -p $(DESTDIR)$(localstatedir) || exit 1 ; \
[ -d $(DESTDIR)$(sysconfdir) ] || \
$(MKDIR) -p $(DESTDIR)$(sysconfdir) || exit 1 ; \
cd $(DESTDIR)$(web_root) || exit 1 ; \
cd $(DESTDIR)$(prefix) || exit 1 ; \
for i in $(LIST2) ; do \
[ -d $(DESTDIR)$(localstatedir)/$${i} ] || \
$(MKDIR) -p $(DESTDIR)$(localstatedir)/$${i} || exit 1 ; \
$(CHMOD) 750 $(DESTDIR)$(localstatedir)/$${i} ; \
[ -d $${i} ] || \
$(LN_S) $(localstatedir)/$${i} $${i} ; \
(cd $(srcdir) ; $(COPY) $${i}/.htaccess \
$(DESTDIR)$(localstatedir)/$${i}) ; \
done ; \
LIST4="`(cd $(srcdir)/$(LIST3) ; ls -d *)`" ; \
LIST4="`(cd $(srcdir)/$(LIST3) ; ls -d * | $(GREP) -v sample)`" ; \
(cd $(srcdir)/$(LIST3) ; $(TAR) cf - .) | \
(cd $(DESTDIR)$(sysconfdir) ; $(TAR) xf -) ; \
[ -e ${LIST3} ] || $(LN_S) $(sysconfdir) ${LIST3} ; \
$(LN_S) $(sysconfdir) ${LIST3} ; \
(cd $(srcdir) ; $(TAR) cf - $(LIST1)) | $(TAR) xf - ; \
[ -d $(DESTDIR)$(prefix)/docs ] || \
$(MKDIR) -p $(DESTDIR)$(prefix)/docs || exit 1 ; \
(cd $(srcdir) ; $(COPY) $(DOCS) $(DESTDIR)$(prefix)/docs) ; \
$(PERL) -pi -e "s~/usr/bin/perl~$(PERL)~" \
$(DESTDIR)$(web_root)/lib/lamdaemon.pl ; \
$(DESTDIR)$(prefix)/lib/lamdaemon.pl \
$(DESTDIR)$(prefix)/docs/README.lamdaemon.txt ; \
cd $${HERE} ; \
echo "LAM files installed" ; \
if [ `$(ID) -u` = 0 ] ; then \
$(MAKE) DESTDIR=$(DESTDIR) do-chown ; \
else \
$(MAKE) DESTDIR=$(DESTDIR) echo-chown ; \
fi ; \
echo "" ; \
echo "LAM installed in $(DESTDIR)$(prefix)"
fi
do-chown:
@for i in $(LIST2) ; do \
$(CHOWN) $(HTTPD_USER):$(HTTPD_GROUP) $(DESTDIR)$(localstatedir)/$${i} ; \
$(CHOWN) $(HTTPD_USER) $(DESTDIR)$(localstatedir)/$${i} ; \
done ; \
LIST4="`(cd $(srcdir)/$(LIST3) ; ls -d *)`" ; \
LIST4="`(cd $(srcdir)/$(LIST3) ; ls -d * | $(GREP) -v sample)`" ; \
for i in $${LIST4} ; do \
$(CHOWN) -R $(HTTPD_USER):$(HTTPD_GROUP) $(DESTDIR)$(sysconfdir)/$${i} ; \
$(CHOWN) -R $(HTTPD_USER) $(DESTDIR)$(sysconfdir)/$${i} ; \
done
$(CHOWN) $(HTTPD_USER):$(HTTPD_GROUP) $(DESTDIR)$(sysconfdir)
echo-chown:
@$(RM) -f $(RAR) ; \
for i in $(LIST2) ; do \
echo "$(CHOWN) $(HTTPD_USER):$(HTTPD_GROUP) $(DESTDIR)$(localstatedir)/$${i}" \
echo "$(CHOWN) $(HTTPD_USER) $(DESTDIR)$(localstatedir)/$${i}" \
>> $(RAR) ; \
done ; \
LIST4="`(cd $(srcdir)/$(LIST3) ; ls -d *)`" ; \
LIST4="`(cd $(srcdir)/$(LIST3) ; ls -d * | $(GREP) -v sample)`" ; \
for i in $${LIST4} ; do \
echo "$(CHOWN) -R $(HTTPD_USER):$(HTTPD_GROUP) $(DESTDIR)$(sysconfdir)/$${i}" \
echo "$(CHOWN) -R $(HTTPD_USER) $(DESTDIR)$(sysconfdir)/$${i}" \
>> $(RAR) ; \
done ; \
echo $(CHOWN) $(HTTPD_USER):$(HTTPD_GROUP) $(DESTDIR)$(sysconfdir)
echo "Switch user to root and run $(RAR)"
install-htdocs:
@[ -d $(DESTDIR)$(docdir) ] || \
$(MKDIR) -p $(DESTDIR)$(docdir) || exit 1 ; \
(cd $(srcdir)/docs ; $(TAR) cf - $(HTML_DOCS)) | \
(cd $(DESTDIR)$(docdir) ; $(TAR) xf -) ; \
echo "Documentation installed in $(docdir)" ; \
echo ""
@[ -d $(DESTDIR)$(htmldir) ] || \
$(MKDIR) -p $(DESTDIR)$(htmldir) || exit 1 ; \
(cd $(srcdir)/$(HTML_DOCS) ; $(TAR) cf - .) | \
(cd $(DESTDIR)$(htmldir) ; $(TAR) xf -) ; \
echo "HTML docs installed in $(htmldir)"
clean:

View File

@ -5,32 +5,28 @@
#
# $Id$
#
# Copyright (c) 2005, 2006, 2010 Tim Rice
# Copyright (c) 2005, 2006 Tim Rice
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
#
#The complete license can be found in the file COPYING.
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
AC_PREREQ(2.53)
AC_INIT(ldap-account-manager, @@VERSION@@, lam-public@lists.sourceforge.net)
AC_CONFIG_SRCDIR(README)
AC_CONFIG_SRCDIR(INSTALL)
AC_PREFIX_DEFAULT(/usr/local/lam)
# work around those that want to build in srcdir
if test x$srcdir = "x." ; then
srcdir=`pwd`
exec $0 --srcdir=`pwd` $*
fi
# Does make set variable $(MAKE)
@ -89,24 +85,6 @@ AC_ARG_WITH(httpd-group,
)
AC_SUBST(HTTPD_GROUP)
if test ${prefix} = NONE; then
WEB_ROOT=${ac_default_prefix}
else
WEB_ROOT=${prefix}
fi
AC_ARG_WITH(web-root,
[ --with-web-root=PATH Specify where the LAM files that the web server
uses should be installed.
default is ${prefix} ],
[
if test -n "$withval" && test "x$withval" != "xno" && \
test "x${withval}" != "xyes"; then
WEB_ROOT=$withval
fi
]
)
AC_SUBST(WEB_ROOT)
AC_ARG_WITH(perl,
[ --with-perl=PATH Specify path to perl program ],
[

View File

@ -1,236 +1,64 @@
#!/bin/bash
#
# Builds LDAP Account Manager packages.
# Builds LDAP Account Manager packages from CVS.
if [ $# -lt 1 ]
then
echo -e "Usage: buildPackage <tag>, buildPackage develop, buildPackage -b branch"
echo -e "Usage: buildPackage <CVS tag>"
exit
fi
set -e
cd /daten/projekte/lam/pakete
if [ "$1" = "develop" ]
then
export REPO_BRANCH="develop"
elif [ "$1" = "-b" ]
then
export REPO_BRANCH="$2"
else
export REPO_BRANCH="$1"
fi
export CVS_TAG=$1
# minifies the JavaScript files
function minify {
local dir="$1"
echo "Minify JS files in $dir"
local outFile=$dir/100_lam.${VERSION}.min.js
local files=`ls $dir/*.js`
local jsFiles=""
for file in $files; do
jsFiles="$jsFiles $file"
done
uglifyjs -o $outFile $jsFiles
rm $files
# add final new line to supress Debian warnings
echo "" >> $outFile
}
# minifies the CSS files
function minifyCSS {
local dir="$1"
echo "Minify CSS files in $dir"
local outFile=$dir/100_lam.${VERSION}.min.css
local files=`ls $dir/*.css`
cat $files | cleancss --skip-rebase -o $outFile
rm $files
# add final new line to supress Debian warnings
echo "" >> $outFile
}
echo "Getting files..."
git clone --depth 1 -b $REPO_BRANCH --single-branch git@github.com:LDAPAccountManager/lam.git github
cd github
mv lam ../
mv lam-packaging ../
cd ..
rm -rf github
git clone --depth 1 -b $REPO_BRANCH --single-branch git@gitlab.com:LDAPAccountManager/lamPro.git lamPro
cd lamPro
rm -rf .git
rm -rf docker
cd ..
cvs -z3 -d:ext:gruberroland@lam.cvs.sourceforge.net:/cvsroot/lam export -r $CVS_TAG lam
cvs -z3 -d:ext:gruberroland@lam.cvs.sourceforge.net:/cvsroot/lam export -r $CVS_TAG lam-packaging
cp lam-packaging/getVersion ./
export VERSION=`./getVersion`
# remove files which are not in the final release
rm lam/session-vars.txt
rm -r lam/po
rm -r lam/tests
rm -f lam/lib/3rdParty/tcpdf/fonts/*.ttf
rm -r lam/templates/lib/extra/ckeditor/plugins/*/dev
find . -name .svnignore -exec rm {} \;
find . -name .gitignore -exec rm {} \;
rm lam/.cvsignore
rm lam/config/.cvsignore
mv lam ldap-account-manager-$VERSION
# create LAM manual
cd ldap-account-manager-$VERSION/docs/manual-sources
./make.sh
cd ../../..
rm -r ldap-account-manager-$VERSION/docs/manual-sources
# create LAM Pro build directory
mkdir LAMPro
cp -a ldap-account-manager-$VERSION LAMPro/ldap-account-manager-$VERSION
cp -a lamPro/* LAMPro/ldap-account-manager-$VERSION
rm -r lamPro
# create Debian build dirs
mkdir Debian
mkdir LAMPro/Debian
rm ldap-account-manager-$VERSION/phpdoc.sh
rm LAMPro/ldap-account-manager-$VERSION/phpdoc.sh
# tar.bz2
# tar.gz
cp lam-packaging/autoconf/configure.ac ldap-account-manager-$VERSION/
cp lam-packaging/autoconf/Makefile.in ldap-account-manager-$VERSION/
cd ldap-account-manager-$VERSION
touch install.sh
perl -pi -e "s/\\@\\@VERSION\\@\\@/$VERSION/g" configure.ac
autoconf
rm configure.ac
rm -r autom4te.cache
cd ..
# Debian gets orig.tar.bz2 with original JS files
tar cfj ldap-account-manager-$VERSION.tar.bz2 --owner=root --group=root --mtime=now ldap-account-manager-$VERSION
mv ldap-account-manager-$VERSION.tar.bz2 Debian/ldap-account-manager_$VERSION.orig.tar.bz2
cp -ar ldap-account-manager-$VERSION Debian/
# build other packages with minified JS files
minify ldap-account-manager-$VERSION/templates/lib
minifyCSS ldap-account-manager-$VERSION/style
tar cfj ldap-account-manager-$VERSION.tar.bz2 --owner=root --group=root --mtime=now ldap-account-manager-$VERSION
rm -r ldap-account-manager-$VERSION
# tar.bz2 of LAM Pro
cd LAMPro
cp ../lam-packaging/autoconf/configure.ac ldap-account-manager-$VERSION/
cp ../lam-packaging/autoconf/Makefile.in ldap-account-manager-$VERSION/
cd ldap-account-manager-$VERSION
touch install.sh
perl -pi -e "s/\\@\\@VERSION\\@\\@/$VERSION/g" configure.ac
autoconf
rm -r autom4te.cache
cd ..
# Debian gets orig.tar.bz2 with original JS files
tar cfj ldap-account-manager-$VERSION.tar.bz2 --owner=root --group=root --mtime=now ldap-account-manager-$VERSION
mv ldap-account-manager-$VERSION.tar.bz2 Debian/ldap-account-manager_$VERSION.orig.tar.bz2
cp -ar ldap-account-manager-$VERSION Debian/
# build other packages with minified JS files
minify ldap-account-manager-$VERSION/templates/lib
minifyCSS ldap-account-manager-$VERSION/style
tar cfj ldap-account-manager-$VERSION.tar.bz2 --owner=root --group=root --mtime=now ldap-account-manager-$VERSION
rm -r ldap-account-manager-$VERSION
cd ..
tar cfvz ldap-account-manager-$VERSION.tar.gz ldap-account-manager-$VERSION
# Debian
mkdir Debian
cp ldap-account-manager-$VERSION.tar.gz Debian/ldap-account-manager_$VERSION.orig.tar.gz
mv ldap-account-manager-$VERSION Debian/
cp -r lam-packaging/debian Debian/ldap-account-manager-$VERSION/
cp -ar Debian Debian-Upload
cd Debian/ldap-account-manager-$VERSION
debuild -k478730308FBD512ADF09D38E7F3D136B2BCD7990
debuild
cd ..
rm -r ldap-account-manager-$VERSION
cd ..
cd Debian-Upload/ldap-account-manager-$VERSION
debuild -S -k478730308FBD512ADF09D38E7F3D136B2BCD7990
cd ..
rm -r ldap-account-manager-$VERSION
cd ..
# Debian for LAM Pro
cd LAMPro
cp -r ../lam-packaging/debian Debian/ldap-account-manager-$VERSION/
cd Debian/ldap-account-manager-$VERSION
debuild -k478730308FBD512ADF09D38E7F3D136B2BCD7990
cd ..
rm -r ldap-account-manager-$VERSION
cd ..
cd ..
# RPM
perl -pi -e "s/\\@\\@VERSION\\@\\@/$VERSION/g" lam-packaging/RPM/ldap-account-manager.spec
cp lam-packaging/RPM/ldap-account-manager.spec lam-packaging/RPM/ldap-account-manager-fedora.spec
perl -pi -e "s/\\@\\@DISTRIBUTION\\@\\@/fedora/g" lam-packaging/RPM/ldap-account-manager-fedora.spec
perl -pi -e "s/\\@\\@USER\\@\\@/apache/g" lam-packaging/RPM/ldap-account-manager-fedora.spec
perl -pi -e "s/\\@\\@GROUP\\@\\@/apache/g" lam-packaging/RPM/ldap-account-manager-fedora.spec
perl -pi -e "s/\\@\\@HTTP_CONF_DIR\\@\\@/\\/etc\\/httpd\\/conf.d/g" lam-packaging/RPM/ldap-account-manager-fedora.spec
cp lam-packaging/RPM/ldap-account-manager.spec lam-packaging/RPM/ldap-account-manager-suse.spec
perl -pi -e "s/\\@\\@DISTRIBUTION\\@\\@/suse/g" lam-packaging/RPM/ldap-account-manager-suse.spec
perl -pi -e "s/\\@\\@USER\\@\\@/wwwrun/g" lam-packaging/RPM/ldap-account-manager-suse.spec
perl -pi -e "s/\\@\\@GROUP\\@\\@/www/g" lam-packaging/RPM/ldap-account-manager-suse.spec
perl -pi -e "s/\\@\\@HTTP_CONF_DIR\\@\\@/\\/etc\\/apache2\\/conf.d/g" lam-packaging/RPM/ldap-account-manager-suse.spec
mkdir RPM
mkdir LAMPro/RPM
# Fedora RPM
cp ldap-account-manager-$VERSION.tar.bz2 ~/rpmbuild/SOURCES
cp lam-packaging/RPM/lam.apache.conf ~/rpmbuild/SOURCES
cp lam-packaging/RPM/lam.nginx.conf ~/rpmbuild/SOURCES
rpmbuild --clean --rmsource -bb lam-packaging/RPM/ldap-account-manager-fedora.spec
mv ~/rpmbuild/RPMS/noarch/ldap-account-manager*-$VERSION-*1.noarch.rpm RPM/
# Fedora RPM for LAM Pro
cd LAMPro
cp ldap-account-manager-$VERSION.tar.bz2 ~/rpmbuild/SOURCES/ldap-account-manager-$VERSION.tar.bz2
cp ../lam-packaging/RPM/lam.apache.conf ~/rpmbuild/SOURCES
cp ../lam-packaging/RPM/lam.nginx.conf ~/rpmbuild/SOURCES
rpmbuild --clean --rmsource -bb ../lam-packaging/RPM/ldap-account-manager-fedora.spec
mv ~/rpmbuild/RPMS/noarch/ldap-account-manager*-$VERSION-*1.noarch.rpm RPM/
cd ..
# Suse RPM
cp ldap-account-manager-$VERSION.tar.bz2 ~/rpmbuild/SOURCES
cp lam-packaging/RPM/lam.apache.conf ~/rpmbuild/SOURCES
cp lam-packaging/RPM/lam.nginx.conf ~/rpmbuild/SOURCES
rpmbuild --clean --rmsource -bb lam-packaging/RPM/ldap-account-manager-suse.spec
mv ~/rpmbuild/RPMS/noarch/ldap-account-manager*-$VERSION-*1.noarch.rpm RPM/
# Suse RPM for LAM Pro
cd LAMPro
cp ldap-account-manager-$VERSION.tar.bz2 ~/rpmbuild/SOURCES/ldap-account-manager-$VERSION.tar.bz2
cp ../lam-packaging/RPM/lam.apache.conf ~/rpmbuild/SOURCES
cp ../lam-packaging/RPM/lam.nginx.conf ~/rpmbuild/SOURCES
rpmbuild --clean --rmsource -bb ../lam-packaging/RPM/ldap-account-manager-suse.spec
mv ~/rpmbuild/RPMS/noarch/ldap-account-manager*-$VERSION-*1.noarch.rpm RPM/
cd ..
rpmsign --addsign RPM/*.rpm LAMPro/RPM/*.rpm
# generate checksum files
sha256sum *.tar.bz2 >> checksums.txt
cd RPM
sha256sum *.rpm >> ../checksums.txt
cd ../Debian
sha256sum *.deb >> ../checksums.txt
cd ..
# generate checksum files for LAM Pro
cd LAMPro
sha256sum *.tar.bz2 >> checksums.txt
cd RPM
sha256sum *.rpm >> ../checksums.txt
cd ../Debian
sha256sum *.deb >> ../checksums.txt
cd ../..
cp ldap-account-manager-$VERSION.tar.gz /usr/src/rpm/SOURCES
rpmbuild --clean --rmsource -ba lam-packaging/RPM/ldap-account-manager.spec
mv /usr/src/rpm/SRPMS/ldap-account-manager-$VERSION-1.src.rpm RPM/
mv /usr/src/rpm/RPMS/noarch/ldap-account-manager-$VERSION-1.noarch.rpm RPM/
# clean up
rm -r lam-packaging
rm getVersion
rm -f *.log
rm buildPackages

View File

@ -1,15 +0,0 @@
This package installs the lamdaemon scripts on the server where
home directories and/or quotas are managed.
The scripts are called by the main LDAP Account Manager installation
via SSH.
You will have to setup sudo for these scripts. Please see the
documentation in package ldap-account-manager for this topic.
Example sudo entry:
someuser ALL= NOPASSWD: /usr/share/ldap-account-manager/lib/lamdaemon.pl *

View File

@ -1,7 +1,7 @@
Access to the webfrontend:
- If you configured Apache at installation you can
access LDAP Account Manager via
- If you configured Apache(-SSL) at installation
you can access LDAP Account Manager via
http://localhost/lam or https://host.domain/lam.
- Otherwise you will have to setup your webserver
@ -11,13 +11,10 @@ Access to the webfrontend:
Configuration:
All settings can be edited via the webfrontend. Please
point your browser to the LAM start page and then select
"LAM configuration".
The default password for the configuration is "lam".
All settings can be edited via the webfrontend. The default
password for the configuration is "lam". However you can
also edit the configuration files directly.
The configuration files are /etc/ldap-account-manager/config.cfg
and /var/lib/ldap-account-manager/config/lam.conf.
Lamdaemon:
If you want to use the lamdaemon you need to install the
package ldap-account-manager-lamdaemon on the target machine.

View File

@ -1,532 +1,4 @@
ldap-account-manager (7.3.RC1-1) unstable; urgency=medium
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Mon, 10 Aug 2020 19:25:33 +0200
ldap-account-manager (7.2-1) unstable; urgency=medium
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Fri, 01 May 2020 08:04:56 +0200
ldap-account-manager (7.1-1) unstable; urgency=medium
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Mon, 16 Mar 2020 21:24:23 +0100
ldap-account-manager (7.0-1) unstable; urgency=medium
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Sat, 21 Dec 2019 19:53:45 +0100
ldap-account-manager (6.9-1) unstable; urgency=medium
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Sun, 29 Sep 2019 09:12:37 +0200
ldap-account-manager (6.8-1) unstable; urgency=medium
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Tue, 02 Jul 2019 12:26:45 +0200
ldap-account-manager (6.7-1) unstable; urgency=medium
* new upstream release
* Fix "Depends on tcpdf which is considered unfit for buster" removed
dependency and embedded required parts (Closes: #923736)
-- Roland Gruber <post@rolandgruber.de> Mon, 25 Mar 2019 17:21:36 +0100
ldap-account-manager (6.6-1) unstable; urgency=medium
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Fri, 28 Dec 2018 11:08:14 +0100
ldap-account-manager (6.5-1) unstable; urgency=medium
* new upstream release
* Fix "Embedded code copies" by adding dependency to phpseclib
(phpLDAPadmin code is customized and cannot be reused)
(Closes: #781419)
-- Roland Gruber <post@rolandgruber.de> Tue, 25 Sep 2018 17:37:41 +0200
ldap-account-manager (6.4-1) unstable; urgency=medium
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Wed, 20 Jun 2018 09:21:48 +0200
ldap-account-manager (6.3-1) unstable; urgency=medium
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Mon, 19 Mar 2018 16:25:31 +0200
ldap-account-manager (6.2.1-1) unstable; urgency=medium
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Sun, 04 Feb 2018 17:43:51 +0100
ldap-account-manager (6.2-1) unstable; urgency=medium
* new upstream release
* LP: #1673595 PHP 7 support
-- Roland Gruber <post@rolandgruber.de> Wed, 13 Dec 2017 08:02:05 +0200
ldap-account-manager (6.1-1) unstable; urgency=medium
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Tue, 19 Sep 2017 18:24:35 +0200
ldap-account-manager (6.0.1-1) unstable; urgency=medium
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Wed, 19 Jul 2017 20:50:22 +0200
ldap-account-manager (6.0-1) unstable; urgency=medium
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Mon, 26 Jun 2017 18:27:21 +0200
ldap-account-manager (5.7-1) unstable; urgency=medium
* new upstream release
* LP: #1632193 fixed PHP 7 issue
* LP: #1628937 reload only done when apache is active
* Fix "php-xml and php-zip should be dependencies to run ldap-account-
manager" by updating dependencies (Closes: #858232)
-- Roland Gruber <post@rolandgruber.de> Tue, 14 Mar 2017 17:47:23 +0100
ldap-account-manager (5.6-1) unstable; urgency=medium
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Sun, 18 Dec 2016 18:23:35 +0200
ldap-account-manager (5.5-1) unstable; urgency=medium
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Sat, 10 Sep 2016 14:23:35 +0200
ldap-account-manager (5.4-1) unstable; urgency=medium
* Fix "Fragile postinst script" added more checks
(Closes: #819474)
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Tue, 21 Jun 2016 17:38:42 +0200
ldap-account-manager (5.3-2) unstable; urgency=medium
* use patched fpdf from upstream (PHP 7 compatible)
-- Roland Gruber <post@rolandgruber.de> Tue, 10 May 2016 19:23:42 +0200
ldap-account-manager (5.3-1) unstable; urgency=medium
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Mon, 21 Mar 2016 18:43:25 +0100
ldap-account-manager (5.2-2) unstable; urgency=medium
* Fix "ldap-account-manager depends on php5-imagick which is no longer
built" by changing dependencies (Closes: #816041)
-- Roland Gruber <post@rolandgruber.de> Sun, 06 Mar 2016 09:31:23 +0100
ldap-account-manager (5.2-1) unstable; urgency=low
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Tue, 15 Dec 2015 17:44:15 +0100
ldap-account-manager (5.1-1) unstable; urgency=low
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Mon, 31 Aug 2015 16:43:38 +0200
ldap-account-manager (5.0-1) unstable; urgency=low
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Mon, 29 Jun 2015 18:00:31 +0200
ldap-account-manager (4.9-1) unstable; urgency=low
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Tue, 31 Mar 2015 18:56:30 +0100
ldap-account-manager (4.8-1) unstable; urgency=low
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Mon, 15 Dec 2014 19:38:05 +0100
ldap-account-manager (4.7.1-1) unstable; urgency=low
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Sun, 05 Oct 2014 19:34:32 +0200
ldap-account-manager (4.7-1) unstable; urgency=low
* new upstream release
* Fix "symlinks to apache.conf cause dpkg to leave package
uninstalled": changed directory test code (Closes: #758070)
-- Roland Gruber <post@rolandgruber.de> Sun, 28 Sep 2014 09:24:00 +0200
ldap-account-manager (4.6-1) unstable; urgency=low
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Thu, 12 Jun 2014 17:51:20 +0200
ldap-account-manager (4.5-1) unstable; urgency=low
* new upstream release
* Fix "[src:ldap-account-manager] Sourceless file" by minifying JS
files during build (Closes: #736737)
-- Roland Gruber <post@rolandgruber.de> Mon, 17 Mar 2014 19:50:45 +0100
ldap-account-manager (4.4-1) unstable; urgency=low
* Fix "Pre-Authentication Cross-Site-Scripting in current_language
parameter" by updating templates/login.php (Closes: #726976)
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Wed, 18 Dec 2013 17:47:35 +0200
ldap-account-manager (4.3-1) unstable; urgency=low
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Mon, 16 Sep 2013 19:00:04 +0200
ldap-account-manager (4.2.1-2) unstable; urgency=low
* Apache 2.4 support
* Fix "transition towards Apache 2.4"
support conf-enabled (Closes: #669824)
* Fix "[ldap-account-manager] Can't install ldap-account-manager"
support conf-enabled (Closes: #711778)
-- Roland Gruber <post@rolandgruber.de> Sun, 21 Jul 2013 11:15:58 +0200
ldap-account-manager (4.2.1-1) unstable; urgency=low
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Mon, 17 Jun 2013 20:51:20 +0200
ldap-account-manager (4.2-1) unstable; urgency=low
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Tue, 04 Jun 2013 18:02:12 +0200
ldap-account-manager (4.1-1) unstable; urgency=low
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Mon, 18 Mar 2013 19:34:52 +0100
ldap-account-manager (4.0.1-1) unstable; urgency=low
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Sat, 05 Jan 2013 16:20:28 +0100
ldap-account-manager (4.0-1) unstable; urgency=low
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Mon, 17 Dec 2012 19:41:29 +0100
ldap-account-manager (3.9-1) unstable; urgency=low
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Mon, 24 Sep 2012 19:15:30 +0200
ldap-account-manager (3.8-1) unstable; urgency=low
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Sun, 15 Jul 2012 18:32:28 +0200
ldap-account-manager (3.7-2) unstable; urgency=low
* Fix "[INTL:pl] Polish debconf translation" (Closes: #667086)
-- Roland Gruber <post@rolandgruber.de> Sun, 10 Jun 2012 14:17:33 +0200
ldap-account-manager (3.7.1-1) unstable; urgency=low
* new upstream release
* Fix "[INTL:pl] Polish debconf translation" (Closes: #667086)
-- Roland Gruber <post@rolandgruber.de> Wed, 18 Apr 2012 19:41:19 +0200
ldap-account-manager (3.7-1) unstable; urgency=low
* new upstream release
* Fix "[INTL:nl] Dutch translation of debconf templates" (Closes: #658463)
* Fix "[INTL:da] Danish translation of the debconf templates ldap-
account-manager" (Closes: #661950)
-- Roland Gruber <post@rolandgruber.de> Sun, 25 Mar 2012 11:00:20 +0200
ldap-account-manager (3.6-2) unstable; urgency=high
* Fix "Multiple vulnerabilities"
Replace special characters in HTML output. (Closes: #661904)
-- Roland Gruber <post@rolandgruber.de> Sat, 03 Mar 2012 21:41:05 +0100
ldap-account-manager (3.6.1-1) unstable; urgency=low
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Fri, 25 Nov 2011 16:24:37 +0100
ldap-account-manager (3.6-1) unstable; urgency=low
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Sat, 19 Nov 2011 10:05:48 +0100
ldap-account-manager (3.5.0-1) unstable; urgency=low
* new upstream release
* updated to Debian policy 3.9.2
* reincluded JQuery libs into package because LAM is very version specific
-- Roland Gruber <post@rolandgruber.de> Mon, 08 Aug 2011 17:49:29 +0200
ldap-account-manager (3.4.0-1) unstable; urgency=low
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Mon, 25 Apr 2011 15:57:08 +0200
ldap-account-manager (3.3.0-1) unstable; urgency=low
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Sat, 12 Feb 2011 13:37:32 +0100
ldap-account-manager (3.2.0-1) unstable; urgency=low
* new upstream release
* updated to Debian policy 3.9.1
* Fix "Package unremovable"
Removed "set -e" for debconf calls (Closes: #601706)
-- Roland Gruber <post@rolandgruber.de> Thu, 28 Oct 2010 20:15:13 +0200
ldap-account-manager (3.1.1-1) unstable; urgency=low
* fixed LAM Pro self service
* updated to Debian policy 3.9.0
-- Roland Gruber <post@rolandgruber.de> Sat, 03 Jul 2010 15:26:15 +0200
ldap-account-manager (3.1.0-2) testing-proposed-updates; urgency=high
* updated to Debian policy 3.9.1
* Backported fix to be compatible with php-fpdf again from 3.2.0-1
* Backported some fixes in postinst/rules from 3.2.0-1
* Fix "Package unremovable"
Removed "set -e" for debconf calls (Closes: #601706)
-- Roland Gruber <post@rolandgruber.de> Sun, 21 Nov 2010 12:44:12 +0100
ldap-account-manager (3.1.0-1) unstable; urgency=low
* new upstream release
* Switch to dpkg-source 3.0 (quilt) format
-- Roland Gruber <post@rolandgruber.de> Fri, 25 Jun 2010 16:52:41 +0200
ldap-account-manager (3.0.0-2) unstable; urgency=low
* Fix "prompting due to modified conffiles which where not modified by
the user" Removed question about configuration password.
(Closes: #582020)
-- Roland Gruber <post@rolandgruber.de> Thu, 03 Jun 2010 10:47:22 +0200
ldap-account-manager (3.0.0-1) unstable; urgency=low
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Sun, 21 Mar 2010 18:32:14 +0100
ldap-account-manager (2.9.0-1) unstable; urgency=low
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Wed, 16 Dec 2009 19:26:14 +0100
ldap-account-manager (2.8.0-1) unstable; urgency=low
* new upstream release
* Fix "[INTL:fr] French debconf templates translation update"
updated translation (Closes: #540505)
* Fix "[INTL:ru] Russian debconf templates translation"
added translation (Closes: #543182)
* Fix "[INTL:ja] Update po-debconf template translation (ja.po)"
added translation (Closes: #545404)
* Fix "[INTL:vi] Vietnamese debconf templates translation update"
added translation (Closes: #548018)
-- Roland Gruber <post@rolandgruber.de> Fri, 27 Oct 2009 19:29:37 +0100
ldap-account-manager (2.7.0-1) unstable; urgency=low
* new upstream release
* Fix "[INTL:sv] Swedish strings for ldap-account-manager debconf"
updated translation (Closes: #539208)
* Fix "[l10n] Updated Czech translation of ldap-account-manager
debconf messages"
updated translation (Closes: #539437)
* Fix "[INTL:it] Italian debconf templates translation"
updated translation (Closes: #539501)
* Fix "[INTL:es] Spanish debconf template translation for ldap-
account-manager"
updated translation (Closes: #539645)
-- Roland Gruber <post@rolandgruber.de> Sun, 02 Aug 2009 19:06:04 +0200
ldap-account-manager (2.6.0-1) unstable; urgency=low
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Sat, 4 Apr 2009 19:38:50 +0100
ldap-account-manager (2.5.0-1) unstable; urgency=low
* new upstream release
* [INTL:ja] Update po-debconf template translation (ja.po) (Closes:
#510706)
* [INTL:es] Spanish debconf template translation for ldap-account-
manager (Closes: #511917)
-- Roland Gruber <post@rolandgruber.de> Thu, 15 Jan 2009 20:06:43 +0100
ldap-account-manager (2.4.0-1) unstable; urgency=low
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Sun, 13 Oct 2008 19:47:20 +0200
ldap-account-manager (2.3.0-1) unstable; urgency=low
* Installation fails if php4 is not installed (Closes: #471953)
* password quality checking (Closes: #462336)
-- Roland Gruber <post@rolandgruber.de> Tue, 28 Apr 2008 16:44:55 +0200
ldap-account-manager (2.2.0-2) unstable; urgency=low
* overwrites config files on upgrade (Closes: #462192)
-- Roland Gruber <post@rolandgruber.de> Sat, 16 Feb 2008 12:31:38 +0100
ldap-account-manager (2.2.0-1) unstable; urgency=low
* new upstream release
-- Roland Gruber <post@rolandgruber.de> Sun, 20 Jan 2008 18:44:10 +0100
ldap-account-manager (2.1.0-1) unstable; urgency=low
* new upstream release
* debian/watch fails to report upstream version (Closes:
#450281)
-- Roland Gruber <post@rolandgruber.de> Wed, 07 Nov 2007 18:48:59 +0100
ldap-account-manager (2.0.0-1) unstable; urgency=low
* New upstream release
* LAM no longer supports PHP4
* ldap-account-manager has wrong dependencies on php5 (Closes:
#427551)
-- Roland Gruber <post@rolandgruber.de> Mon, 6 Aug 2007 15:21:24 +0200
ldap-account-manager (1.3.0-2) unstable; urgency=low
* depends on non-essential package debconf in postrm (Closes: #416886)
* [INTL:nl] Dutch po-debconf translation (Closes: #421409)
* [INTL:it] Italian debconf templates translation (Closes: #422914)
-- Roland Gruber <post@rolandgruber.de> Sun, 24 Jun 2007 11:58:00 +0200
ldap-account-manager (1.3.0-1) unstable; urgency=low
* New upstream release
* quoting of user description field broken (Closes: #415379)
* [INTL:pt] Portuguese translation for debconf messages (Closes:
#414374)
-- Roland Gruber <post@rolandgruber.de> Sun, 26 Mar 2007 20:30:52 +0100
ldap-account-manager (1.2.0-1) unstable; urgency=low
* New upstream release (1.2.0)
-- Roland Gruber <post@rolandgruber.de> Sun, 14 Jan 2007 19:05:33 +0100
ldap-account-manager (1.1.1-2) testing; urgency=high
* security fix
* quoting of user description field broken (Closes: #415379)
-- Roland Gruber <post@rolandgruber.de> Wed, 21 Mar 2007 14:11:42 +0100
ldap-account-manager (1.1.1-1) unstable; urgency=medium
* new upstream release
* [l10n] Updated Czech translation of ldap-account-manager debconf
mesages (Closes: #389624)
* urgency set to medium to get 1.1.1 into Etch
-- Roland Gruber <post@rolandgruber.de> Sun, 22 Oct 2006 20:30:19 +0200
ldap-account-manager (1.1.0-1) unstable; urgency=low
* New upstream release (1.1.0)
-- Roland Gruber <post@rolandgruber.de> Sat, 9 Sep 2006 13:50:43 +0200
ldap-account-manager (1.0.4-1) unstable; urgency=low
* Updated to new upstream release.
-- Roland Gruber <post@rolandgruber.de> Sun, 30 Jul 2006 14:36:16 +0200
ldap-account-manager (1.0.3-1) unstable; urgency=high
ldap-account-manager (1.0.3-1) unstable; urgency=low
* Updated to new upstream release.
* Account expiration date wierdness (Closes: #368806)
@ -665,17 +137,10 @@ ldap-account-manager (0.4.9+0.5.alpha1-1) experimental; urgency=low
* Updated to new upstream release 0.5.alpha1
* Added configuration options for Apache2
* Added template for webserver restart
* Translatable templates
* Translatable templates
-- Roland Gruber <post@rolandgruber.de> Tue, 10 May 2005 11:38:00 +0200
ldap-account-manager (0.4.9-3) stable; urgency=high
* security fix
* quoting of user description field broken (Closes: #415379)
-- Roland Gruber <post@rolandgruber.de> Wed, 21 Mar 2007 16:07:55 +0100
ldap-account-manager (0.4.9-2) unstable; urgency=low
* Closes: #300007: fixed typo

View File

@ -1 +1 @@
9
4

View File

@ -1,7 +1,5 @@
#!/bin/bash
set -e
. /usr/share/debconf/confmodule
db_version 2.0 || [ 0 -lt 30 ]
@ -9,8 +7,25 @@ db_input medium "ldap-account-manager/config-webserver" || true
db_go
db_input low "ldap-account-manager/alias" || true
db_go
db_input low "ldap-account-manager/passwd" || true
db_go
db_input medium "ldap-account-manager/restart-webserver" || true
db_go
if dpkg --compare-versions "$2" le 0.5.0; \
then
if dpkg --compare-versions "$2" ge 0.1.0; \
then
db_input high "ldap-account-manager/note-0_4_9-upgrade" || true
db_go
fi
elif dpkg --compare-versions "$2" le 1.0.0; \
then
if dpkg --compare-versions "$2" ge 0.5.0; \
then
db_input high "ldap-account-manager/note-1_0_0-upgrade" || true
db_go
fi
fi
#DEBHELPER#

View File

@ -1,38 +1,28 @@
Source: ldap-account-manager
Maintainer: Roland Gruber <post@rolandgruber.de>
Section: web
Priority: optional
Standards-Version: 4.5.0
Build-Depends: debhelper (>= 9), po-debconf, cleancss, node-uglify
Homepage: https://www.ldap-account-manager.org/
Priority: extra
Standards-Version: 3.7.2
Build-Depends-Indep: po-debconf
Build-Depends: debhelper (>= 4.1.16)
Package: ldap-account-manager
Architecture: all
Depends: php (>= 7), php-ldap,
php-gd | php-imagick,
php-json, php-curl,
php-zip, php-xml, php-gmp,
libapache2-mod-php | libapache2-mod-fcgid | php-fpm,
php-phpseclib (>= 2.0), php-monolog,
apache2 (>= 2.4.0) | httpd, fonts-dejavu, debconf (>= 0.2.26) | debconf-2.0, ${misc:Depends}
Recommends: php-opcache
Suggests: ldap-server, php-mcrypt, ldap-account-manager-lamdaemon, perl
Conflicts: libapache2-mod-php5, php5, php5-fpm
Depends: php4 | php4-cgi | libapache2-mod-php4 | php5 | php5-cgi | libapache2-mod-php5, php4-ldap | php5-ldap, apache | apache-ssl | apache-perl | apache2 | httpd, php-fpdf, debconf (>= 0.2.26) | debconf-2.0
Recommends: php4-mhash | php5-mhash
Suggests: ldap-server, sudo, perl, php4-mcrypt | php5-mcrypt
Description: webfrontend for managing accounts in an LDAP directory
LDAP Account Manager (LAM) runs on an existing webserver.
It manages user, group and host accounts. Currently LAM
supports these account types: Samba 3/4, Unix, Kolab,
address book entries, NIS mail aliases and MAC addresses.
There is an integrated LDAP browser to allow access to the
raw LDAP attributes. You can use templates
LDAP Account Manager (LAM) runs on an existing webserver. LAM
supports LDAP connections via SSL and TLS. It manages user, group
and host accounts. Currently LAM supports these account types:
Samba 2 and 3, Unix, Kolab 2, address book entries, NIS mail
aliases and MAC addresses. There is a tree viewer included to
allow access to the raw LDAP attributes. You can use templates
for account creation and use multiple configuration profiles.
Account information can be exported as PDF file. There is also
a script included which manages quotas and homedirectories.
Package: ldap-account-manager-lamdaemon
Architecture: all
Depends: perl, sudo, ${misc:Depends}, libquota-perl, libsys-syslog-perl
Description: Quota and home directory management for LDAP Account Manager
Lamdaemon is part of LDAP Account Manager. This package
needs to be installed on the server where the home directories
reside and/or quotas should be managed.
a script included which manages quota and homedirectories, you
have to setup sudo if you want to use it. LAM is translated to
Catalan, Chinese (Traditional), Dutch, English, French, German,
Hungarian, Italian, Spanish and Japanese.
.
Homepage: http://lam.sourceforge.net/

File diff suppressed because it is too large Load Diff

View File

@ -4,7 +4,8 @@ Alias /lam /usr/share/ldap-account-manager
<Directory /usr/share/ldap-account-manager>
Options +FollowSymLinks
AllowOverride All
Require all granted
Order allow,deny
Allow from all
DirectoryIndex index.html
</Directory>
@ -12,33 +13,32 @@ Alias /lam /usr/share/ldap-account-manager
Options -Indexes
</Directory>
<Directory /var/lib/ldap-account-manager/tmp/internal>
Options -Indexes
Require all denied
</Directory>
<Directory /var/lib/ldap-account-manager/sess>
Options -Indexes
Require all denied
Order allow,deny
Deny from all
</Directory>
<Directory /var/lib/ldap-account-manager/config>
Options -Indexes
Require all denied
Order allow,deny
Deny from all
</Directory>
<Directory /usr/share/ldap-account-manager/lib>
Options -Indexes
Require all denied
<Files ~ .*>
Order allow,deny
Deny from all
</Files>
<Files ~ fpdf.php>
Order allow,deny
Allow from all
</Files>
</Directory>
<Directory /usr/share/ldap-account-manager/help>
<Directory /usr/share/ldap-account-manager/lib/font>
Options -Indexes
Require all denied
Order allow,deny
Deny from all
</Directory>
<Directory /usr/share/ldap-account-manager/locale>
Options -Indexes
Require all denied
</Directory>

View File

@ -1,17 +0,0 @@
location /lam {
index index.html;
alias /usr/share/ldap-account-manager;
autoindex off;
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
fastcgi_param SCRIPT_FILENAME $request_filename;
}
location ~ /lam/(tmp/internal|sess|config|lib|help|locale) {
deny all;
return 403;
}
}

View File

@ -4,7 +4,6 @@ usr/share/ldap-account-manager/help
usr/share/ldap-account-manager/lib
usr/share/ldap-account-manager/lib/font
usr/share/ldap-account-manager/lib/modules
usr/share/ldap-account-manager/lib/tools
usr/share/ldap-account-manager/locale
usr/share/ldap-account-manager/locale/ca_ES
usr/share/ldap-account-manager/locale/ca_ES/LC_MESSAGES
@ -34,9 +33,8 @@ usr/share/ldap-account-manager/templates/tree/templates/creation
etc/ldap-account-manager
var/lib/ldap-account-manager
var/lib/ldap-account-manager/config
var/lib/ldap-account-manager/config/templates/pdf
var/lib/ldap-account-manager/config/templates/pdf/logos
var/lib/ldap-account-manager/config/templates/profiles
var/lib/ldap-account-manager/config/pdf
var/lib/ldap-account-manager/config/pdf/logos
var/lib/ldap-account-manager/config/profiles
var/lib/ldap-account-manager/sess
var/lib/ldap-account-manager/tmp
var/lib/ldap-account-manager/tmp/internal

View File

@ -1,2 +1,3 @@
TODO
README
docs/

View File

@ -1,24 +0,0 @@
#!/bin/bash
set -e
outFile=templates/lib/100_lam.${SOURCE_DATE_EPOCH}.min.js
if [ ! -e $outFile ]; then
files=`ls templates/lib/*.js`
jsFiles=""
for file in $files; do
jsFiles="$jsFiles $file"
done
uglifyjs -o $outFile $jsFiles
rm $files
# add final new line to supress Debian warnings
echo "" >> $outFile
fi
files=`ls style/*.css`
outFile=style/100_lam.${SOURCE_DATE_EPOCH}.min.css
if [ ! -e $outFile ]; then
cat $files | cleancss --skip-rebase -o ${outFile}
rm $files
# add final new line to supress Debian warnings
echo "" >> $outFile
fi

View File

@ -1,61 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: ldap-account-manager@packages.debian.org\n"
"POT-Creation-Date: 2010-06-03 12:36+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: multiselect
#. Description
#: ../templates:1001
msgid "Web server configuration:"
msgstr "Configuració del servidor Web"
#. Type: multiselect
#. Description
#: ../templates:1001
msgid ""
"LDAP Account Manager supports any webserver that supports PHP5, but this "
"automatic configuration process only supports Apache2. If you choose to "
"configure Apache2 then LAM can be accessed at http(s)://localhost/lam"
msgstr "LDAP Account Manager suporta qualsevol servidor web que disposi de PHP5 "
"però aquest procés de configuració automàtic només funciona amb Apache2. Si esculls "
"configurar Apache2, llavors LAM serà accessible des de http(s)://localhost/lam"
#. Type: string
#. Description
#: ../templates:2001
msgid "Alias name:"
msgstr "Nom d'àlies:"
#. Type: string
#. Description
#: ../templates:2001
msgid ""
"LAM will add an alias to your httpd.conf which allows you to access LAM at "
"http(s)://localhost/lam. You may select an alias other than \"lam\"."
msgstr "LAM afegirà un alias al teu httpd.conf que et permetrà accedir a LAM "
"mitjançant l'adreça http(s)://localhost/lam. També pots escollir un àlies diferent de \"lam\"."
#. Type: boolean
#. Description
#: ../templates:3001
msgid "Would you like to restart your webserver(s) now?"
msgstr "Vols reiniciar el servidor web ara mateix?"
#. Type: boolean
#. Description
#: ../templates:3001
msgid "Your webserver(s) need to be restarted in order to apply the changes."
msgstr "El servidor web necessita ser reiniciat per poder aplicar els canvis."

View File

@ -1,14 +1,14 @@
# Czech translation of ldap-account-manager debconf messages.
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the ldap-acount-manager package.
# Miroslav Kure <kurem@debian.cz>, 2006-2009.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: ldap-account-manager\n"
"Report-Msgid-Bugs-To: ldap-account-manager@packages.debian.org\n"
"POT-Creation-Date: 2010-06-03 12:36+0200\n"
"PO-Revision-Date: 2009-07-31 22:23+0200\n"
"Report-Msgid-Bugs-To: post@rolandgruber.de\n"
"POT-Creation-Date: 2006-05-22 14:39+0200\n"
"PO-Revision-Date: 2006-04-05 18:36+0200\n"
"Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
"Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
"MIME-Version: 1.0\n"
@ -17,85 +17,109 @@ msgstr ""
#. Type: multiselect
#. Description
#: ../templates:1001
#: ../templates:5
msgid "Web server configuration:"
msgstr "Nastavení webového serveru:"
msgstr ""
#. Type: multiselect
#. Description
#: ../templates:1001
#: ../templates:5
msgid ""
"LDAP Account Manager supports any webserver that supports PHP5, but this "
"automatic configuration process only supports Apache2. If you choose to "
"configure Apache2 then LAM can be accessed at http(s)://localhost/lam"
"LDAP Account Manager supports any webserver that supports PHP4, but this "
"automatic configuration process only supports Apache and Apache2. If you "
"choose to configure Apache(2) LAM can be accessed at http(s)://localhost/lam"
msgstr ""
"LDAP Account Manager podporuje libovolný webový server, pod kterým běží "
"PHP5, avšak automatické nastavení umí pouze ve spojení se Apache2. Zvolíte-"
"li nastavení Apache2, LAM bude přístupný na adrese http(s)://localhost/lam."
"PHP4, avšak automatické nastavení umí pouze ve spojení se servery Apache a "
"Apache2. Zvolíte-li nastavení Apache(2), LAM bude přístupný na adrese http"
"(s)://localhost/lam."
#. Type: string
#. Description
#: ../templates:2001
#: ../templates:13
msgid "Alias name:"
msgstr "Alias:"
msgstr ""
#. Type: string
#. Description
#: ../templates:2001
#: ../templates:13
#, fuzzy
msgid ""
"LAM will add an alias to your httpd.conf which allows you to access LAM at "
"http(s)://localhost/lam. You may select an alias other than \"lam\"."
msgstr ""
"LAM přidá do vašeho httpd.conf alias, který vám umožní přistupovat k LAM "
"přes adresu http(s)://localhost/lam. Můžete zadat i jiný alias než „lam“."
"LAM do vašeho httpd.conf přidá alias, díky kterému můžete k LAM přistupovat "
"přes url http(s)://localhost/lam. Chcete-li použít jiný alias než \"lam\", "
"můžete jej zadat právě teď."
#. Type: string
#. Description
#: ../templates:21
#, fuzzy
msgid "Master configuration password (clear text):"
msgstr "Zadejte hlavní konfigurační heslo (nešifrovaný text):"
#. Type: string
#. Description
#: ../templates:21
#, fuzzy
msgid ""
"The configuration profiles are secured by a master password. You will need "
"it to create and delete profiles. As default it is set to \"lam\" and can be "
"changed directly in LAM."
msgstr ""
"Konfigurační profily jsou chráněny hlavním heslem. Toto heslo budete "
"potřebovat při vytváření a mazání profilů. Výchozí hodnota je \"lam\" a "
"můžete ji změnit kdykoliv později přímo v LAM. Pokud si budete přát, můžete "
"tuto hodnotu změnit právě teď."
#. Type: boolean
#. Description
#: ../templates:3001
#: ../templates:29
msgid "Would you like to restart your webserver(s) now?"
msgstr "Chcete nyní restartovat svůj webový server (servery)?"
#. Type: boolean
#. Description
#: ../templates:3001
#: ../templates:29
msgid "Your webserver(s) need to be restarted in order to apply the changes."
msgstr ""
"Aby se vaše nové nastavení aktivovalo, musí se webové servery restartovat."
#~ msgid "Master configuration password (clear text):"
#~ msgstr "Hlavní konfigurační heslo (nešifrovaný text):"
#. Type: note
#. Description
#: ../templates:34
msgid "Upgrade from pre-0.5.0 versions"
msgstr "Přechod z verzí před 0.5.0"
#~ msgid ""
#~ "The configuration profiles are secured by a master password. You will "
#~ "need it to create and delete profiles. As default it is set to \"lam\" "
#~ "and can be changed directly in LAM."
#~ msgstr ""
#~ "Konfigurační profily jsou chráněny hlavním heslem. Toto heslo budete "
#~ "potřebovat při vytváření a mazání profilů. Výchozí hodnota je „lam“ a "
#~ "můžete ji změnit kdykoliv později přímo v LAM."
#. Type: note
#. Description
#: ../templates:34
msgid ""
"Please note that this version uses new file formats for configuration and "
"account profiles. You will have to update your configuration and create new "
"account profiles."
msgstr ""
"Poznamenejme, že tato verze používá nový formát konfiguračních souborů a "
"souborů s profily. To znamená, že budete muset vytvořit nové profily účtů a "
"aktualizovat své konfigurační soubory."
#~ msgid "Upgrade from pre-0.5.0 versions"
#~ msgstr "Přechod z verzí před 0.5.0"
#. Type: note
#. Description
#: ../templates:41
msgid "Upgrade from pre-1.0.0 versions"
msgstr "Přechod z verzí před 1.0.0"
#~ msgid ""
#~ "Please note that this version uses new file formats for configuration and "
#~ "account profiles. You will have to update your configuration and create "
#~ "new account profiles."
#~ msgstr ""
#~ "Poznamenejme, že tato verze používá nový formát konfiguračních souborů a "
#~ "souborů s profily. To znamená, že budete muset vytvořit nové profily účtů "
#~ "a aktualizovat své konfigurační soubory."
#~ msgid "Upgrade from pre-1.0.0 versions"
#~ msgstr "Přechod z verzí před 1.0.0"
#~ msgid ""
#~ "Please note that this version uses new file formats for the configuration "
#~ "profiles. Please edit your configuration files and save the new settings."
#~ msgstr ""
#~ "Vemte prosím na vědomí, že tato verze používá nový formát konfiguračních "
#~ "profilů. Upravte prosím své konfigurační soubory a toto nové nastavení "
#~ "uložte ."
#. Type: note
#. Description
#: ../templates:41
msgid ""
"Please note that this version uses new file formats for the configuration "
"profiles. Please edit your configuration files and save the new settings."
msgstr ""
"Vemte prosím na vědomí, že tato verze používá nový formát konfiguračních "
"profilů. Upravte prosím své konfigurační soubory a toto nové nastavení "
"uložte ."
#~ msgid "Enter alias:"
#~ msgstr "Zadejte alias:"

View File

@ -1,65 +0,0 @@
# Danish translation ldap-account-manager.
# Copyright (C) 2012 ldap-account-manager & nedenstående oversættere.
# This file is distributed under the same license as the ldap-account-manager package.
# Joe Hansen (joedalton2@yahoo.dk), 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: ldap-account-manager\n"
"Report-Msgid-Bugs-To: ldap-account-manager@packages.debian.org\n"
"POT-Creation-Date: 2010-06-03 12:36+0200\n"
"PO-Revision-Date: 2012-03-02 12:42+0000\n"
"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
"Language-Team: Danish <debian-l10n-danish@lists.debian.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: multiselect
#. Description
#: ../templates:1001
msgid "Web server configuration:"
msgstr "Konfiguration af internetserver:"
#. Type: multiselect
#. Description
#: ../templates:1001
msgid ""
"LDAP Account Manager supports any webserver that supports PHP5, but this "
"automatic configuration process only supports Apache2. If you choose to "
"configure Apache2 then LAM can be accessed at http(s)://localhost/lam"
msgstr ""
"LDAP Account Manager understøtter alle internetservere som understøtter "
"PHP5, men denne automatiske konfigurationsproces understøtter kun Apache2. "
"Hvis du vælger at konfigurere Apache2, så kan LAM tilgås på "
"http(s)://localhost/lam"
#. Type: string
#. Description
#: ../templates:2001
msgid "Alias name:"
msgstr "Aliasnavn:"
#. Type: string
#. Description
#: ../templates:2001
msgid ""
"LAM will add an alias to your httpd.conf which allows you to access LAM at "
"http(s)://localhost/lam. You may select an alias other than \"lam\"."
msgstr ""
"LAM vil tilføje et alias til din httpd.conf, hvilket gør det muligt for dig "
"at tilgå LAM på http(s)://localhost/lam. Du kan vælge et andet alias end »lam«."
#. Type: boolean
#. Description
#: ../templates:3001
msgid "Would you like to restart your webserver(s) now?"
msgstr "Ønsker du at genstarte dine internetservere nu?"
#. Type: boolean
#. Description
#: ../templates:3001
msgid "Your webserver(s) need to be restarted in order to apply the changes."
msgstr "Dine internetservere skal genstartes før at ændringerne træder i kraft."

View File

@ -11,48 +11,49 @@
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
#
# Developers do not need to manually edit POT or PO files.
# Roland Gruber <post@rolandgruber.de>, 2005.
#
# Roland Gruber <post@rolandgruber.de>, 2005, 2009.
msgid ""
msgstr ""
"Project-Id-Version: de\n"
"Report-Msgid-Bugs-To: ldap-account-manager@packages.debian.org\n"
"POT-Creation-Date: 2010-06-03 12:36+0200\n"
"PO-Revision-Date: 2009-07-29 20:43+0200\n"
"Report-Msgid-Bugs-To: post@rolandgruber.de\n"
"POT-Creation-Date: 2006-05-22 14:39+0200\n"
"PO-Revision-Date: 2005-11-10 17:12+0100\n"
"Last-Translator: Roland Gruber <post@rolandgruber.de>\n"
"Language-Team: Deutsch <lam-i18n@lists.sourceforge.net>\n"
"Language-Team: Deutsch <lam-i18n@lists.sourceforge.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
"X-Generator: KBabel 1.9.1\n"
#. Type: multiselect
#. Description
#: ../templates:1001
#: ../templates:5
msgid "Web server configuration:"
msgstr "Konfiguration des Webservers:"
#. Type: multiselect
#. Description
#: ../templates:1001
#: ../templates:5
msgid ""
"LDAP Account Manager supports any webserver that supports PHP5, but this "
"automatic configuration process only supports Apache2. If you choose to "
"configure Apache2 then LAM can be accessed at http(s)://localhost/lam"
"LDAP Account Manager supports any webserver that supports PHP4, but this "
"automatic configuration process only supports Apache and Apache2. If you "
"choose to configure Apache(2) LAM can be accessed at http(s)://localhost/lam"
msgstr ""
"LDAP Account Manager unterstützt alle Webserver mit PHP5-Unterstützung, aber "
"diese automatische Konfiguration funktioniert nur mit Apache2. Nach der "
"Auswahl von Apache2 kann LAM unter http(s)://localhost/lam erreicht werden."
"LDAP Account Manager unterstützt alle Webserver mit PHP4-Unterstützung, aber "
"diese automatische Konfiguration funktioniert nur mit Apache und Apache2. "
"Nach der Auswahl von Apache(2) kann LAM unter http(s)://localhost/lam "
"erreicht werden."
#. Type: string
#. Description
#: ../templates:2001
#: ../templates:13
msgid "Alias name:"
msgstr "Aliasname:"
#. Type: string
#. Description
#: ../templates:2001
#: ../templates:13
msgid ""
"LAM will add an alias to your httpd.conf which allows you to access LAM at "
"http(s)://localhost/lam. You may select an alias other than \"lam\"."
@ -61,27 +62,68 @@ msgstr ""
"(s)://localhost/lam zu erreichen. Wenn Sie einen anderen Alias als \"lam\" "
"wünschen, können Sie ihn hier angeben."
#. Type: string
#. Description
#: ../templates:21
msgid "Master configuration password (clear text):"
msgstr "Hauptpasswort für die Konfiguration (im Klartext):"
#. Type: string
#. Description
#: ../templates:21
msgid ""
"The configuration profiles are secured by a master password. You will need "
"it to create and delete profiles. As default it is set to \"lam\" and can be "
"changed directly in LAM."
msgstr ""
"Die Konfigurationsprofile werden über ein Hauptpasswort gesichert. Es wird "
"benötigt um Profile anzulegen und zu löschen. Der Standardwert dafür ist "
"\"lam\" und kann innerhalb von LAM geändert werden."
#. Type: boolean
#. Description
#: ../templates:3001
#: ../templates:29
msgid "Would you like to restart your webserver(s) now?"
msgstr "Soll(en) der/die Webserver jetzt neugestartet werden?"
#. Type: boolean
#. Description
#: ../templates:3001
#: ../templates:29
msgid "Your webserver(s) need to be restarted in order to apply the changes."
msgstr ""
"Sie müssen ihre(n) Webserver neustarten um die Änderungen zu übernehmen."
#~ msgid "Master configuration password (clear text):"
#~ msgstr "Hauptpasswort für die Konfiguration (im Klartext):"
#. Type: note
#. Description
#: ../templates:34
msgid "Upgrade from pre-0.5.0 versions"
msgstr "Aktualisierung von Versionen vor 0.5.0"
#~ msgid ""
#~ "The configuration profiles are secured by a master password. You will "
#~ "need it to create and delete profiles. As default it is set to \"lam\" "
#~ "and can be changed directly in LAM."
#~ msgstr ""
#~ "Die Konfigurationsprofile werden über ein Hauptpasswort gesichert. Es "
#~ "wird benötigt um Profile anzulegen und zu löschen. Der Standardwert dafür "
#~ "ist \"lam\" und kann innerhalb von LAM geändert werden."
#. Type: note
#. Description
#: ../templates:34
msgid ""
"Please note that this version uses new file formats for configuration and "
"account profiles. You will have to update your configuration and create new "
"account profiles."
msgstr ""
"Bitte beachten Sie, dass diese Version neue Dateiformate für die "
"Konfiguration und Account-Profile verwendet. Sie müssen die Konfiguration "
"anpassen und neue Account-Profile erstellen."
#. Type: note
#. Description
#: ../templates:41
msgid "Upgrade from pre-1.0.0 versions"
msgstr "Aktualisierung von Versionen vor 1.0.0"
#. Type: note
#. Description
#: ../templates:41
msgid ""
"Please note that this version uses new file formats for the configuration "
"profiles. Please edit your configuration files and save the new settings."
msgstr ""
"Bitte beachten Sie, dass diese Version neue Dateiformate für die "
"Konfiguration verwendet. Sie müssen die Konfiguration anpassen und die neuen "
"Einstellungen speichern."

View File

@ -1,125 +0,0 @@
# ldap-account-manager translation to Spanish
# Copyright (C) 2005, 2007, 2009 Free Software Foundation, Inc.
# This file is distributed under the same license as the ldap-account-manager package.
#
# Changes:
# - Initial translation
# César Gómez Martí­n , 2005
#
# - Updates
# Manuel Porras Peralta <venturi.debian@gmail.com>, 2007
# Francisco Javier Cuadrado <fcocuadrado@gmail.com>, 2009
#
# Traductores, si no conocen el formato PO, merece la pena leer la
# documentación de gettext, especialmente las secciones dedicadas a este
# formato, por ejemplo ejecutando:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
# Equipo de traducción al español, por favor lean antes de traducir
# los siguientes documentos:
#
# - El proyecto de traducción de Debian al español
# http://www.debian.org/intl/spanish/
# especialmente las notas y normas de traducción en
# http://www.debian.org/intl/spanish/notas
#
# - La guí­a de traducción de po's de debconf:
# /usr/share/doc/po-debconf/README-trans
# o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
msgid ""
msgstr ""
"Project-Id-Version: ldap-account-manager 2.7.0.RC1-1\n"
"Report-Msgid-Bugs-To: ldap-account-manager@packages.debian.org\n"
"POT-Creation-Date: 2010-06-03 12:36+0200\n"
"PO-Revision-Date: 2009-07-30 08:37+0100\n"
"Last-Translator: Francisco Javier Cuadrado <fcocuadrado@gmail.com>\n"
"Language-Team: Debian l10n Spanish <debian-l10n-spanish@lists.debian.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: multiselect
#. Description
#: ../templates:1001
msgid "Web server configuration:"
msgstr "Configuración del servidor web:"
#. Type: multiselect
#. Description
#: ../templates:1001
msgid ""
"LDAP Account Manager supports any webserver that supports PHP5, but this "
"automatic configuration process only supports Apache2. If you choose to "
"configure Apache2 then LAM can be accessed at http(s)://localhost/lam"
msgstr ""
"El gestor de cuentas LDAP es compatible con cualquier servidor web que "
"permita usar PHP5, pero este proceso automático de configuración sólo es "
"compatible con Apache2. Si escoge configurar Apache2, podrá acceder a LAM "
"desde «http(s)://localhost/lam»."
#. Type: string
#. Description
#: ../templates:2001
msgid "Alias name:"
msgstr "Alias:"
#. Type: string
#. Description
#: ../templates:2001
msgid ""
"LAM will add an alias to your httpd.conf which allows you to access LAM at "
"http(s)://localhost/lam. You may select an alias other than \"lam\"."
msgstr ""
"LAM añadirá un alias a su archivo «httpd.conf», que le permitirá acceder a "
"LAM desde «http(s)://localhost/lam». Puede elegir un alias distinto a «lam»."
#. Type: boolean
#. Description
#: ../templates:3001
msgid "Would you like to restart your webserver(s) now?"
msgstr "¿Desea reiniciar ahora su(s) servidor(es) web?"
#. Type: boolean
#. Description
#: ../templates:3001
msgid "Your webserver(s) need to be restarted in order to apply the changes."
msgstr ""
"Su(s) servidor(es) web necesitan reiniciarse para que se apliquen los "
"cambios."
#~ msgid "Master configuration password (clear text):"
#~ msgstr "Contraseña maestra de la configuración (texto en claro):"
#~ msgid ""
#~ "The configuration profiles are secured by a master password. You will "
#~ "need it to create and delete profiles. As default it is set to \"lam\" "
#~ "and can be changed directly in LAM."
#~ msgstr ""
#~ "Los perfiles de configuración se protegen con una contraseña maestra. La "
#~ "necesitará para crear y borrar perfiles. Por omisión se establece a «lam» "
#~ "y puede cambiarse directamente en LAM."
#~ msgid "Upgrade from pre-0.5.0 versions"
#~ msgstr "Actualizar desde versiones anteriores a la 0.5.0"
#~ msgid ""
#~ "Please note that this version uses new file formats for configuration and "
#~ "account profiles. You will have to update your configuration and create "
#~ "new account profiles."
#~ msgstr ""
#~ "Por favor, tenga en cuenta que esta versión usa formatos nuevos de "
#~ "archivo para la configuración y los perfiles de usuario. Tendrá que "
#~ "actualizar su configuración y crear nuevos perfiles de usuario."
#~ msgid "Upgrade from pre-1.0.0 versions"
#~ msgstr "Actualizar desde versiones anteriores a la 1.0.0"
#~ msgid ""
#~ "Please note that this version uses new file formats for the configuration "
#~ "profiles. Please edit your configuration files and save the new settings."
#~ msgstr ""
#~ "Por favor, tenga en cuenta que esta versión usa formatos nuevos de "
#~ "archivo para los perfiles de configuración. Edite sus archivos de "
#~ "configuración y guarde los cambios."

View File

@ -1,108 +1,133 @@
# Translation of ldap-account-manager debconf templates to French
# Copyright (C) 2006-2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
# This file is distributed under the same license as the ldap-account-manager package.
#
# Translators:
# Steve Petruzzello <dlist@bluewin.ch> 2006-2009
# Translators, if you are not familiar with the PO format, gettext
# documentation is worth reading, especially sections dedicated to
# this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
# Some information specific to po-debconf are available at
# /usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
#
# Developers do not need to manually edit POT or PO files.
#
msgid ""
msgstr ""
"Project-Id-Version: ldap-account-manager_1.0.2-1\n"
"Report-Msgid-Bugs-To: ldap-account-manager@packages.debian.org\n"
"POT-Creation-Date: 2010-06-03 12:36+0200\n"
"Report-Msgid-Bugs-To: post@rolandgruber.de\n"
"POT-Creation-Date: 2006-05-22 14:39+0200\n"
"PO-Revision-Date: 2006-05-26 11:45+0100\n"
"Last-Translator: Steve Petruzzello <dlist@bluewin.ch>\n"
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Type: text/plain; charset=iso-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: multiselect
#. Description
#: ../templates:1001
#: ../templates:5
msgid "Web server configuration:"
msgstr "Configuration du serveur web :"
msgstr "Configuration du serveur web :"
#. Type: multiselect
#. Description
#: ../templates:1001
#: ../templates:5
msgid ""
"LDAP Account Manager supports any webserver that supports PHP5, but this "
"automatic configuration process only supports Apache2. If you choose to "
"configure Apache2 then LAM can be accessed at http(s)://localhost/lam"
"LDAP Account Manager supports any webserver that supports PHP4, but this "
"automatic configuration process only supports Apache and Apache2. If you "
"choose to configure Apache(2) LAM can be accessed at http(s)://localhost/lam"
msgstr ""
"LDAP Account Manager s'occupe de tous les serveurs web qui gérent PHP5, mais "
"ce processus de configuration ne fonctionne qu'avec Apache2. Si vous "
"choisissez de configurer Apache2, vous pourrez accéder à LAM via l'adresse "
"http(s)://localhost/lam."
"LDAP Account Manager s'occupe de tous les serveurs web qui gérent PHP4, mais "
"ce processus de configuration ne fonctionne qu'avec Apache et Apache2. Si "
"vous choisissez de configurer Apache(2), vous pourrez accéder à LAM via "
"l'adresse http(s)://localhost/lam"
#. Type: string
#. Description
#: ../templates:2001
#: ../templates:13
msgid "Alias name:"
msgstr "Alias :"
msgstr "Alias :"
#. Type: string
#. Description
#: ../templates:2001
#: ../templates:13
msgid ""
"LAM will add an alias to your httpd.conf which allows you to access LAM at "
"http(s)://localhost/lam. You may select an alias other than \"lam\"."
msgstr ""
"LAM ajoute un alias au fichier httpd.conf, ce qui permet d'accéder à LAM à "
"l'adresse http(s)://localhost/lam. Si vous désirez un alias différent de "
 lam », veuillez l'indiquer ici."
"LAM ajoute un alias au fichier httpd.conf, ce qui permet d'accéder à LAM à "
"l'adresse http(s)://localhost/lam. Si vous désirez un alias différent de "
 lam », veuillez l'indiquer ici."
#. Type: string
#. Description
#: ../templates:21
msgid "Master configuration password (clear text):"
msgstr "Mot de passe principal (en clair) :"
#. Type: string
#. Description
#: ../templates:21
msgid ""
"The configuration profiles are secured by a master password. You will need "
"it to create and delete profiles. As default it is set to \"lam\" and can be "
"changed directly in LAM."
msgstr ""
"Les profils de configuration sont protégés par un mot de passe principal. "
"Vous en aurez besoin pour créer et effacer des profils. Sa valeur par défaut "
"est « lam » et vous pourrez le modifier directement dans LAM."
#. Type: boolean
#. Description
#: ../templates:3001
#: ../templates:29
msgid "Would you like to restart your webserver(s) now?"
msgstr "Faut-il redémarrer le(s) serveur(s) web maintenant ?"
msgstr "Faut-il redémarrer le(s) serveur(s) web maintenant ?"
#. Type: boolean
#. Description
#: ../templates:3001
#: ../templates:29
msgid "Your webserver(s) need to be restarted in order to apply the changes."
msgstr ""
"Le(s) serveur(s) web doivent être redémarrés afin que les changements soient "
"appliqués."
"Le(s) serveur(s) web doivent être redémarrés afin que les changements soient "
"appliqués."
#~ msgid "Master configuration password (clear text):"
#~ msgstr "Mot de passe principal (en clair) :"
#. Type: note
#. Description
#: ../templates:34
msgid "Upgrade from pre-0.5.0 versions"
msgstr "Mise à niveau depuis les versions pre-0.5.0"
#~ msgid ""
#~ "The configuration profiles are secured by a master password. You will "
#~ "need it to create and delete profiles. As default it is set to \"lam\" "
#~ "and can be changed directly in LAM."
#~ msgstr ""
#~ "Les profils de configuration sont protégés par un mot de passe principal. "
#~ "Vous en aurez besoin pour créer et effacer des profils. Sa valeur par "
#~ "défaut est « lam » et vous pourrez le modifier directement dans LAM."
#. Type: note
#. Description
#: ../templates:34
msgid ""
"Please note that this version uses new file formats for configuration and "
"account profiles. You will have to update your configuration and create new "
"account profiles."
msgstr ""
"Veuillez noter que la nouvelle version utilise de nouveaux formats de "
"fichiers pour la configuration et les profils. Vous devez mettre à jour "
"votre configuration et créer de nouveaux profils de compte."
#~ msgid "Upgrade from pre-0.5.0 versions"
#~ msgstr "Mise à niveau depuis les versions pre-0.5.0"
#. Type: note
#. Description
#: ../templates:41
msgid "Upgrade from pre-1.0.0 versions"
msgstr "Mise à niveau depuis les versions pre-1.0.0"
#~ msgid ""
#~ "Please note that this version uses new file formats for configuration and "
#~ "account profiles. You will have to update your configuration and create "
#~ "new account profiles."
#~ msgstr ""
#~ "Veuillez noter que la nouvelle version utilise de nouveaux formats de "
#~ "fichiers pour la configuration et les profils. Vous devez mettre à jour "
#~ "votre configuration et créer de nouveaux profils de compte."
#~ msgid "Upgrade from pre-1.0.0 versions"
#~ msgstr "Mise à niveau depuis les versions pre-1.0.0"
#~ msgid ""
#~ "Please note that this version uses new file formats for the configuration "
#~ "profiles. Please edit your configuration files and save the new settings."
#~ msgstr ""
#~ "Veuillez noter que cette nouvelle version utilise de nouveaux formats de "
#~ "fichiers pour la configuration des profils. Vous devez mettre à jour "
#~ "votre configuration et sauver les nouveaux réglages."
#. Type: note
#. Description
#: ../templates:41
msgid ""
"Please note that this version uses new file formats for the configuration "
"profiles. Please edit your configuration files and save the new settings."
msgstr ""
"Veuillez noter que cette nouvelle version utilise de nouveaux formats de "
"fichiers pour la configuration des profils. Vous devez mettre à jour votre "
"configuration et sauver les nouveaux réglages."
#~ msgid "Enter alias:"
#~ msgstr "Alias :"
#~ msgstr "Alias :"
#~ msgid "Which webserver would you like to configure automatically?"
#~ msgstr "Serveur web à configurer automatiquement :"
#~ msgstr "Serveur web à configurer automatiquement :"

View File

@ -10,110 +10,126 @@
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
#
# Developers do not need to manually edit POT or PO files.
# Dr. Nagy Elemér Károly <eknagy@omikk.bme.hu>, 2013.
#
msgid ""
msgstr ""
"Project-Id-Version: LAM 0.4.2\n"
"Report-Msgid-Bugs-To: ldap-account-manager@packages.debian.org\n"
"POT-Creation-Date: 2010-06-03 12:36+0200\n"
"PO-Revision-Date: 2013-05-14 18:57+0200\n"
"Last-Translator: Dr. Nagy Elemér Károly <eknagy@omikk.bme.hu>\n"
"Language-Team: Hungarian <debian-l10n-hungarian@lists.d.o>\n"
"Language: hu\n"
"Report-Msgid-Bugs-To: post@rolandgruber.de\n"
"POT-Creation-Date: 2006-05-22 14:39+0200\n"
"PO-Revision-Date: 2005-08-25 23:12+0100\n"
"Last-Translator: Kakasy Gergely <kakasy@citromail.hu>\n"
"Language-Team: Hungarian <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: UTF-8\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Language: Hungarian\n"
"X-Poedit-Country: HUNGARY\n"
"X-Poedit-SourceCharset: utf-8\n"
"Plural-Forms: ???\n"
#. Type: multiselect
#. Description
#: ../templates:1001
#: ../templates:5
msgid "Web server configuration:"
msgstr "Web szolgáltató beállítás:"
msgstr ""
#. Type: multiselect
#. Description
#: ../templates:1001
#| msgid ""
#| "LDAP Account Manager supports any webserver that supports PHP4, but this "
#| "automatic configuration process only supports Apache and Apache2. If you "
#| "choose to configure Apache(2) LAM can be accessed at http(s)://localhost/"
#| "lam"
#: ../templates:5
msgid ""
"LDAP Account Manager supports any webserver that supports PHP5, but this "
"automatic configuration process only supports Apache2. If you choose to "
"configure Apache2 then LAM can be accessed at http(s)://localhost/lam"
"LDAP Account Manager supports any webserver that supports PHP4, but this "
"automatic configuration process only supports Apache and Apache2. If you "
"choose to configure Apache(2) LAM can be accessed at http(s)://localhost/lam"
msgstr ""
"Az LDAP Account Manager bármely PHP5-képes webszervert támogat, de az "
"automatikus beállítási művelet csak az Apache2-ben támogatott. Ha az Apache2 "
"beállítását választja, akkor a LAM-ot a http(s)://localhost/lam címen érheti "
"el."
"Az LDAP Account Manager bármely olyan webszervert támogat, ameiyik a PHP4-et "
"támogatja, de ez az automatikus beállítási művelet csak az Apache-ot és az "
"Apache2-t támogatja. Ha az Apache2 beállítását választja, akkor a LAM-ot a "
"http(s)://localhost/lam címen érheti el."
#. Type: string
#. Description
#: ../templates:2001
#: ../templates:13
msgid "Alias name:"
msgstr "Alias:"
msgstr ""
#. Type: string
#. Description
#: ../templates:2001
#: ../templates:13
#, fuzzy
msgid ""
"LAM will add an alias to your httpd.conf which allows you to access LAM at "
"http(s)://localhost/lam. You may select an alias other than \"lam\"."
msgstr ""
"A LAM egy aliast rak a httpd.conf fájlodba, és így elérheted a LAM-ot a http"
"(s)://localhost/lam címen. Választhatsz másik aliast a \"lam\" helyett."
"A LAM egy alias-t ad az Ön httpd.conf file-jához, ezzel lehetővé téve, hogy "
"elérhesse a LAM-ot a http(s)://localhost/lam címen. Ha a \"lam\"-on kívül "
"más alias-t is szeretne, kérem, itt adja meg."
#. Type: string
#. Description
#: ../templates:21
#, fuzzy
msgid "Master configuration password (clear text):"
msgstr "Adja meg a mester beállításokat védő jelszót (clear text):"
#. Type: string
#. Description
#: ../templates:21
#, fuzzy
msgid ""
"The configuration profiles are secured by a master password. You will need "
"it to create and delete profiles. As default it is set to \"lam\" and can be "
"changed directly in LAM."
msgstr ""
"A beállítási profilokat mesterjelszó védi. Ezt a profilok létrehozásához és "
"törléséhez létre kell hoznia. Alapértelmezés szerint a jelszó \"lam\", és a "
"LAM-on belül közvetlenül megváltoztatható. De itt is megváltoztathatja."
#. Type: boolean
#. Description
#: ../templates:3001
#: ../templates:29
msgid "Would you like to restart your webserver(s) now?"
msgstr "Szeretnéd most újraindítani a webszervert?"
msgstr "Szeretné a webszerver(eket) most újraindítani?"
#. Type: boolean
#. Description
#: ../templates:3001
#: ../templates:29
msgid "Your webserver(s) need to be restarted in order to apply the changes."
msgstr ""
"A webszerveredet újra kell indítanod a változások érvénybe léptetéséhez."
#. Type: note
#. Description
#: ../templates:34
msgid "Upgrade from pre-0.5.0 versions"
msgstr ""
#. Type: note
#. Description
#: ../templates:34
msgid ""
"Please note that this version uses new file formats for configuration and "
"account profiles. You will have to update your configuration and create new "
"account profiles."
msgstr ""
"Kérem, jegyezze meg, hogy ez a verzió új file formátumokat használ a "
"beállításokhoz és a témaszám-profilokhoz. Frissítenie kell a beállításait és "
"új témaszámokat kell létrehoznia."
#. Type: note
#. Description
#: ../templates:41
msgid "Upgrade from pre-1.0.0 versions"
msgstr ""
#. Type: note
#. Description
#: ../templates:41
#, fuzzy
#~ msgid "Master configuration password (clear text):"
#~ msgstr "Adja meg a mester beállításokat védő jelszót (clear text):"
#, fuzzy
#~ msgid ""
#~ "The configuration profiles are secured by a master password. You will "
#~ "need it to create and delete profiles. As default it is set to \"lam\" "
#~ "and can be changed directly in LAM."
#~ msgstr ""
#~ "A beállítási profilokat mesterjelszó védi. Ezt a profilok létrehozásához "
#~ "és törléséhez létre kell hoznia. Alapértelmezés szerint a jelszó \"lam\", "
#~ "és a LAM-on belül közvetlenül megváltoztatható. De itt is "
#~ "megváltoztathatja."
#~ msgid ""
#~ "Please note that this version uses new file formats for configuration and "
#~ "account profiles. You will have to update your configuration and create "
#~ "new account profiles."
#~ msgstr ""
#~ "Kérem, jegyezze meg, hogy ez a verzió új file formátumokat használ a "
#~ "beállításokhoz és a témaszám-profilokhoz. Frissítenie kell a beállításait "
#~ "és új témaszámokat kell létrehoznia."
#, fuzzy
#~ msgid ""
#~ "Please note that this version uses new file formats for the configuration "
#~ "profiles. Please edit your configuration files and save the new settings."
#~ msgstr ""
#~ "Kérem, jegyezze meg, hogy ez a verzió új file formátumokat használ a "
#~ "beállításokhoz és a témaszám-profilokhoz. Frissítenie kell a beállításait "
#~ "és új témaszámokat kell létrehoznia."
msgid ""
"Please note that this version uses new file formats for the configuration "
"profiles. Please edit your configuration files and save the new settings."
msgstr ""
"Kérem, jegyezze meg, hogy ez a verzió új file formátumokat használ a "
"beállításokhoz és a témaszám-profilokhoz. Frissítenie kell a beállításait és "
"új témaszámokat kell létrehoznia."
#~ msgid "Enter alias:"
#~ msgstr "Adja meg az alias-t:"

View File

@ -1,75 +0,0 @@
# Italian (it) translation of debconf templates for ldap-account-manager
# Copyright (C) 2007 Free Software Foundation, Inc.
# This file is distributed under the same license as the ldap-account-manager package.
# Luca Monducci <luca.mo@tiscali.it>, 2007 - 2009.
#
msgid ""
msgstr ""
"Project-Id-Version: lam 2.7.0.RC1-1 italian debconf templates\n"
"Report-Msgid-Bugs-To: ldap-account-manager@packages.debian.org\n"
"POT-Creation-Date: 2010-06-03 12:36+0200\n"
"PO-Revision-Date: 2009-08-01 15:48+0200\n"
"Last-Translator: Luca Monducci <luca.mo@tiscali.it>\n"
"Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: multiselect
#. Description
#: ../templates:1001
msgid "Web server configuration:"
msgstr "Configurazione del server web:"
#. Type: multiselect
#. Description
#: ../templates:1001
msgid ""
"LDAP Account Manager supports any webserver that supports PHP5, but this "
"automatic configuration process only supports Apache2. If you choose to "
"configure Apache2 then LAM can be accessed at http(s)://localhost/lam"
msgstr ""
"LDAP Account Manager può essere usato su qualsiasi server web con PHP5 ma "
"questo processo di configurazione automatica supporta solo Apache2. Se si "
"sceglie di configurare Apache2, si potrà accedere a LAM da http(s)://"
"localhost/lam"
#. Type: string
#. Description
#: ../templates:2001
msgid "Alias name:"
msgstr "Nome alias:"
#. Type: string
#. Description
#: ../templates:2001
msgid ""
"LAM will add an alias to your httpd.conf which allows you to access LAM at "
"http(s)://localhost/lam. You may select an alias other than \"lam\"."
msgstr ""
"LAM aggiunge un alias in httpd.conf che permette di accedere a LAM da http"
"(s)://localhost/lam. È possibile scegliere un alias diverso da \"lam\"."
#. Type: boolean
#. Description
#: ../templates:3001
msgid "Would you like to restart your webserver(s) now?"
msgstr "Si vuole riavviare il/i server web adesso?"
#. Type: boolean
#. Description
#: ../templates:3001
msgid "Your webserver(s) need to be restarted in order to apply the changes."
msgstr "Per applicare le modifiche è necessario riavviare il/i server web."
#~ msgid "Master configuration password (clear text):"
#~ msgstr "Password di configurazione (in chiaro):"
#~ msgid ""
#~ "The configuration profiles are secured by a master password. You will "
#~ "need it to create and delete profiles. As default it is set to \"lam\" "
#~ "and can be changed directly in LAM."
#~ msgstr ""
#~ "I profili di configurazione sono sicuri grazie a una password, questa "
#~ "password è necessaria per creare e rimuovere i profili. La password "
#~ "predefinita è \"lam\" e può essere cambiata direttamente da LAM."

View File

@ -1,82 +1,142 @@
#
#
# Translators, if you are not familiar with the PO format, gettext
# documentation is worth reading, especially sections dedicated to
# this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
#
# Some information specific to po-debconf are available at
# /usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
#
#
# Developers do not need to manually edit POT or PO files.
#
#
msgid ""
msgstr ""
"Project-Id-Version: ldap-account-manager 2.7.0-1\n"
"Report-Msgid-Bugs-To: ldap-account-manager@packages.debian.org\n"
"POT-Creation-Date: 2010-06-03 12:36+0200\n"
"PO-Revision-Date: 2009-09-07 07:05+0900\n"
"Last-Translator: Hideki Yamane (Debian-JP) <henrich@debian.or.jp>\n"
"Language-Team: Japanese <debian-japanese@lists.debian.org>\n"
"Project-Id-Version: ja\n"
"Report-Msgid-Bugs-To: post@rolandgruber.de\n"
"POT-Creation-Date: 2006-05-22 14:39+0200\n"
"PO-Revision-Date: 2005-08-17 17:22+0900\n"
"Last-Translator: Yasuhiro Magara <gama@lifemedia.co.jp>\n"
"Language-Team: Japanese <gama@users.sourceforge.jp>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: multiselect
#. Description
#: ../templates:1001
#: ../templates:5
msgid "Web server configuration:"
msgstr "ウェブサーバの設定:"
msgstr ""
#. Type: multiselect
#. Description
#: ../templates:1001
#: ../templates:5
msgid ""
"LDAP Account Manager supports any webserver that supports PHP5, but this "
"automatic configuration process only supports Apache2. If you choose to "
"configure Apache2 then LAM can be accessed at http(s)://localhost/lam"
"LDAP Account Manager supports any webserver that supports PHP4, but this "
"automatic configuration process only supports Apache and Apache2. If you "
"choose to configure Apache(2) LAM can be accessed at http(s)://localhost/lam"
msgstr ""
"LDAP Account Manager は PHP5 をサポートする全てのウェブサーバーに対応してます"
"が、この自動構成は Apache2 にのみ対応しています。もしも Apache(2) の構成を選"
"択した場合は、LAMは http(s)://localhost/lam でアクセスできます。"
"LDAP Account ManagerはPHP4をサポートする全てのwebサーバーに対応してますが、こ"
"の自動構成はApacheおよびApache2にのみ対応しています。もしもApache(2)の構成を"
"選択したならば、LAMは http(s)://localhost/lam でアクセスできます。"
#. Type: string
#. Description
#: ../templates:2001
#: ../templates:13
msgid "Alias name:"
msgstr "エイリアス名:"
msgstr ""
#. Type: string
#. Description
#: ../templates:2001
#: ../templates:13
#, fuzzy
msgid ""
"LAM will add an alias to your httpd.conf which allows you to access LAM at "
"http(s)://localhost/lam. You may select an alias other than \"lam\"."
msgstr ""
"LAM は http(s)://localhost/lam として LAM にアクセスできるように、httpd.conf "
"にエイリアス名を追加します。\"lam\" 以外のエイリアス名も選べます。"
"LAMは http(s)://localhost/lam としてLAMにアクセスできるように、httpd.confに別"
"名を追加します。もしも\"lam\"以外の別名にしたい場合は、ここに入力してくださ"
"い。"
#. Type: string
#. Description
#: ../templates:21
#, fuzzy
msgid "Master configuration password (clear text):"
msgstr "マスター構成パスワードを入力してください(クリアテキスト):"
#. Type: string
#. Description
#: ../templates:21
#, fuzzy
msgid ""
"The configuration profiles are secured by a master password. You will need "
"it to create and delete profiles. As default it is set to \"lam\" and can be "
"changed directly in LAM."
msgstr ""
"構成プロファイルはマスターパスワードで保護されます。マスターパスワードは、プ"
"ロファイルの新規作成および削除の際に必要となります。デフォルトでは\"lam\"が設"
"定されます。これはLAMの中で変更可能ですが、ここで変更することも可能です。"
#. Type: boolean
#. Description
#: ../templates:3001
#: ../templates:29
msgid "Would you like to restart your webserver(s) now?"
msgstr "今すぐウェブサーバを再起動しますか?"
msgstr "今すぐwebサーバーを再起動しますか?"
#. Type: boolean
#. Description
#: ../templates:3001
#: ../templates:29
msgid "Your webserver(s) need to be restarted in order to apply the changes."
msgstr "変更を適用するためにウェブサーバを再起動する必要があります。"
msgstr ""
#~ msgid "Master configuration password (clear text):"
#~ msgstr "マスター構成パスワード (クリアテキスト):"
#. Type: note
#. Description
#: ../templates:34
msgid "Upgrade from pre-0.5.0 versions"
msgstr ""
#. Type: note
#. Description
#: ../templates:34
msgid ""
"Please note that this version uses new file formats for configuration and "
"account profiles. You will have to update your configuration and create new "
"account profiles."
msgstr ""
"注意:このバージョンでは新しいファイルフォーマットの構成とアカウントプロファ"
"イルを使用します。構成のアップグレードとアカウントプロファイルの新規作成が必"
"要です。"
#. Type: note
#. Description
#: ../templates:41
msgid "Upgrade from pre-1.0.0 versions"
msgstr ""
#. Type: note
#. Description
#: ../templates:41
#, fuzzy
msgid ""
"Please note that this version uses new file formats for the configuration "
"profiles. Please edit your configuration files and save the new settings."
msgstr ""
"注意:このバージョンでは新しいファイルフォーマットの構成とアカウントプロファ"
"イルを使用します。構成のアップグレードとアカウントプロファイルの新規作成が必"
"要です。"
#~ msgid "Enter alias:"
#~ msgstr "別名の入力:"
#~ msgid "Which webserver would you like to configure automatically?"
#~ msgstr "どのwebサーバーを自動構成しますか?"
#~ msgid ""
#~ "The configuration profiles are secured by a master password. You will "
#~ "need it to create and delete profiles. As default it is set to \"lam\" "
#~ "and can be changed directly in LAM."
#~ msgstr ""
#~ "構成プロファイルはマスターパスワードで保護されています。マスターパスワード"
#~ "は、プロファイルの作成/削除の際に必要となります。マスターパスワードはデ"
#~ "フォルトでは \"lam\" が設定され、LAM にて直接変更が可能です。"
#~ "Remember that in order to apply the changes your webserver(s) need to be "
#~ "restarted."
#~ msgstr "変更を反映するためには、webサーバーを再起動する必要があります。"
#~ msgid "It seems that you are upgrading LAM from a version before 0.5.0."
#~ msgstr "0.5.0以前のバージョンからLAMをアップグレードしようとしてます。"

View File

@ -1,66 +0,0 @@
# Dutch translation of ldap-account-manager debconf templates.
# Copyright (C) 2007-2012 THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the ldap-account-manager package.
# Bart Cornelis <cobaco@skolelinux.no>, 2007.
# Jeroen Schot <schot@a-eskwadraat.nl>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: ldap-account-manager 3.6-1\n"
"Report-Msgid-Bugs-To: ldap-account-manager@packages.debian.org\n"
"POT-Creation-Date: 2010-06-03 12:36+0200\n"
"PO-Revision-Date: 2012-02-03 10:49+0100\n"
"Last-Translator: Jeroen Schot <schot@a-eskwadraat.nl>\n"
"Language-Team: Debian l10n Dutch <debian-l10n-dutch@lists.debian.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: multiselect
#. Description
#: ../templates:1001
msgid "Web server configuration:"
msgstr "Webserverconfiguratie:"
#. Type: multiselect
#. Description
#: ../templates:1001
msgid ""
"LDAP Account Manager supports any webserver that supports PHP5, but this "
"automatic configuration process only supports Apache2. If you choose to "
"configure Apache2 then LAM can be accessed at http(s)://localhost/lam"
msgstr ""
"LDAP Account Manager ondersteund alle webservers die PHP5 ondersteunen, dit "
"automatische configuratieproces ondersteund alleen Apache2. Als u ervoor "
"kiest om de automatische configuratie uit te voeren wordt LAM beschikbaar op "
"http(s)://localhost/lam."
#. Type: string
#. Description
#: ../templates:2001
msgid "Alias name:"
msgstr "Aliasnaam:"
#. Type: string
#. Description
#: ../templates:2001
msgid ""
"LAM will add an alias to your httpd.conf which allows you to access LAM at "
"http(s)://localhost/lam. You may select an alias other than \"lam\"."
msgstr ""
"LAM voegt een alias toe aan uw httpd.conf, waardoor LAM toegankelijk wordt "
"via http(s)://localhost/lam. U kunt ook een ander alias dan 'lam' kiezen."
#. Type: boolean
#. Description
#: ../templates:3001
msgid "Would you like to restart your webserver(s) now?"
msgstr "Wilt u uw webserver(s) nu herstarten?"
#. Type: boolean
#. Description
#: ../templates:3001
msgid "Your webserver(s) need to be restarted in order to apply the changes."
msgstr ""
"Uw webserver(s) dienen herstart te worden om de veranderingen toe te passen."

View File

@ -1,68 +0,0 @@
# Translation of ldap-account-manager debconf templates to Polish.
# Copyright (C) 2010
# This file is distributed under the same license as the ldap-account-manager package.
#
# Michał Kułach <michal.kulach@gmail.com>, 2012.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: ldap-account-manager@packages.debian.org\n"
"POT-Creation-Date: 2010-06-03 12:36+0200\n"
"PO-Revision-Date: 2012-04-04 00:01+0200\n"
"Last-Translator: Michał Kułach <michal.kulach@gmail.com>\n"
"Language-Team: Polish <debian-l10n-polish@lists.debian.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pl\n"
"X-Generator: Lokalize 1.2\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
#. Type: multiselect
#. Description
#: ../templates:1001
msgid "Web server configuration:"
msgstr "Konfiguracja serwera WWW:"
#. Type: multiselect
#. Description
#: ../templates:1001
msgid ""
"LDAP Account Manager supports any webserver that supports PHP5, but this "
"automatic configuration process only supports Apache2. If you choose to "
"configure Apache2 then LAM can be accessed at http(s)://localhost/lam"
msgstr ""
"LDAP Account Manager obsługuje wszystkie serwery WWW obsługujące PHP5, ale "
"automatyczny proces konfiguracji jest dostępny jedynie dla Apache2. Jeśli ta "
"opcja zostanie wybrana, LAM będzie dostępny pod adresem "
"http(s)://localhost/lam."
#. Type: string
#. Description
#: ../templates:2001
msgid "Alias name:"
msgstr "Nazwa aliasu:"
#. Type: string
#. Description
#: ../templates:2001
msgid ""
"LAM will add an alias to your httpd.conf which allows you to access LAM at "
"http(s)://localhost/lam. You may select an alias other than \"lam\"."
msgstr ""
"LAM doda alias do pliku httpd.conf, który umożliwi dostęp do LAM-a pod "
"adresem http(s)://localhost/lam. Można również wybrać inny alias niż \"lam\"."
#. Type: boolean
#. Description
#: ../templates:3001
msgid "Would you like to restart your webserver(s) now?"
msgstr "Czy zrestartować serwer(y) WWW w tej chwili?"
#. Type: boolean
#. Description
#: ../templates:3001
msgid "Your webserver(s) need to be restarted in order to apply the changes."
msgstr "Serwer(y) WWW powinny zostać zrestartowane w celu zastosowania zmian."

View File

@ -1,78 +0,0 @@
# Portuguese translation for ldap-account-manager's debconf messages
# Copyright (C) 2009 Luís Picciochi
# This file is distributed under the same license as the ldap-account-manager package.
# Luís Picciochi, 2009.
#
msgid ""
msgstr ""
"Project-Id-Version: ldap-account-manager\n"
"Report-Msgid-Bugs-To: ldap-account-manager@packages.debian.org\n"
"POT-Creation-Date: 2010-06-03 12:36+0200\n"
"PO-Revision-Date: 2009-07-30 15:32+0000\n"
"Last-Translator: Luís Picciochi <Pitxyoki@Gmail.com>\n"
"Language-Team: Portuguese <traduz@debianpt.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: multiselect
#. Description
#: ../templates:1001
msgid "Web server configuration:"
msgstr "Configuração do servidor web:"
#. Type: multiselect
#. Description
#: ../templates:1001
msgid ""
"LDAP Account Manager supports any webserver that supports PHP5, but this "
"automatic configuration process only supports Apache2. If you choose to "
"configure Apache2 then LAM can be accessed at http(s)://localhost/lam"
msgstr ""
"O Gestor de Contas LDAP (LAM) suporta qualquer servidor web que suporte "
"PHP5, mas este processo de configuração automático suporta apenas Apache2. "
"Se escolher configurar o Apache2, o LAM pode ser acedido em http(s)://"
"localhost/lam"
#. Type: string
#. Description
#: ../templates:2001
msgid "Alias name:"
msgstr "Nome alternativo (alias):"
#. Type: string
#. Description
#: ../templates:2001
msgid ""
"LAM will add an alias to your httpd.conf which allows you to access LAM at "
"http(s)://localhost/lam. You may select an alias other than \"lam\"."
msgstr ""
"O LAM irá adicionar um nome alternativo (alias) ao seu httpd.conf, que lhe "
"permite aceder ao LAM através de http(s)://localhost/lam. Pode escolher um "
"nome alternativo (alias) que não seja \"lam\"."
#. Type: boolean
#. Description
#: ../templates:3001
msgid "Would you like to restart your webserver(s) now?"
msgstr "Reiniciar o(s) seu(s) servidor(es) web agora?"
#. Type: boolean
#. Description
#: ../templates:3001
msgid "Your webserver(s) need to be restarted in order to apply the changes."
msgstr ""
"O(s) seu(s) servidor(es) web necessitam de ser reiniciados para aplicar as "
"alterações."
#~ msgid "Master configuration password (clear text):"
#~ msgstr "Password para a configuração principal (texto simples):"
#~ msgid ""
#~ "The configuration profiles are secured by a master password. You will "
#~ "need it to create and delete profiles. As default it is set to \"lam\" "
#~ "and can be changed directly in LAM."
#~ msgstr ""
#~ "Os perfis de configuração são protegidos por uma palavra-chave principal. "
#~ "Irá necessitar dela para criar e apagar perfis. Por omissão, esta palavra-"
#~ "chave é \"lam\" e pode ser alterada directamente no LAM."

View File

@ -2,42 +2,38 @@
# Copyright (C) 2006 THE ldap-account-manager'S COPYRIGHT HOLDER
# This file is distributed under the same license as the ldap-account-manager
# package.
#
# Felipe Augusto van de Wiel (faw) <felipe@cathedrallabs.org>, 2006-2007.
#
#
# Felipe Augusto van de Wiel (faw) <felipe@cathedrallabs.org>, 2006.
#
#
msgid ""
msgstr ""
"Project-Id-Version: ldap-account-manager\n"
"Report-Msgid-Bugs-To: ldap-account-manager@packages.debian.org\n"
"POT-Creation-Date: 2010-06-03 12:36+0200\n"
"PO-Revision-Date: 2007-03-11 18:27-0300\n"
"Last-Translator: Felipe Augusto van de Wiel (faw) <faw@debian.org>\n"
"Report-Msgid-Bugs-To: post@rolandgruber.de\n"
"POT-Creation-Date: 2006-05-22 14:39+0200\n"
"PO-Revision-Date: 2006-04-09 18:49-0300\n"
"Last-Translator: Felipe Augusto van de Wiel (faw) <felipe@cathedrallabs."
"org>\n"
"Language-Team: l10n-portuguese <debian-l10n-portuguese@lists.debian.org\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: \n"
"pt_BR\n"
"org>\n"
"pt_BR utf8\n"
#. Type: multiselect
#. Description
#: ../templates:1001
#: ../templates:5
msgid "Web server configuration:"
msgstr "Configuração do servidor web:"
msgstr ""
#. Type: multiselect
#. Description
#: ../templates:1001
#, fuzzy
#| msgid ""
#| "LDAP Account Manager supports any webserver that supports PHP4, but this "
#| "automatic configuration process only supports Apache and Apache2. If you "
#| "choose to configure Apache(2) LAM can be accessed at http(s)://localhost/"
#| "lam"
#: ../templates:5
msgid ""
"LDAP Account Manager supports any webserver that supports PHP5, but this "
"automatic configuration process only supports Apache2. If you choose to "
"configure Apache2 then LAM can be accessed at http(s)://localhost/lam"
"LDAP Account Manager supports any webserver that supports PHP4, but this "
"automatic configuration process only supports Apache and Apache2. If you "
"choose to configure Apache(2) LAM can be accessed at http(s)://localhost/lam"
msgstr ""
"LDAP Account Manager (\"Gerenciador de Contas LDAP\") suporta qualquer "
"servidor web que suporte PHP4, mas este processo de configuração automática "
@ -46,69 +42,91 @@ msgstr ""
#. Type: string
#. Description
#: ../templates:2001
#: ../templates:13
msgid "Alias name:"
msgstr "Nome do apelido (\"alias\"):"
msgstr ""
#. Type: string
#. Description
#: ../templates:2001
#: ../templates:13
#, fuzzy
msgid ""
"LAM will add an alias to your httpd.conf which allows you to access LAM at "
"http(s)://localhost/lam. You may select an alias other than \"lam\"."
msgstr ""
"LAM vai adicionar um apelido (\"alias\") ao seu httpd.conf que permitirá que "
"você acesse o LAM em http(s)://localhost/lam. Você pode selecionar um outro "
"apelido (\"alias\") que não seja \"lam\"."
"LAM vai adicionar um apelido (alias) ao seu httpd.conf que permitirá que "
"você acesse o LAM em http(s)://localhost/lam. Se você deseja um outro "
"apelido que não seja \"lam\" por favor, especifique-o aqui."
#. Type: string
#. Description
#: ../templates:21
#, fuzzy
msgid "Master configuration password (clear text):"
msgstr "Digite a senha mestra de configuração (texto plano):"
#. Type: string
#. Description
#: ../templates:21
#, fuzzy
msgid ""
"The configuration profiles are secured by a master password. You will need "
"it to create and delete profiles. As default it is set to \"lam\" and can be "
"changed directly in LAM."
msgstr ""
"Os perfis de configuração são protegidos por uma senha mestra. Você "
"precisará dela para criar e remover perfis. Como padrão ela está definida "
"como \"lam\" e você pode mudá-la diretamente no LAM. Mas você também pode "
"mudar isso agora."
#. Type: boolean
#. Description
#: ../templates:3001
#: ../templates:29
msgid "Would you like to restart your webserver(s) now?"
msgstr "Você gostaria de reiniciar seu(s) servidor(es) web agora?"
#. Type: boolean
#. Description
#: ../templates:3001
#: ../templates:29
msgid "Your webserver(s) need to be restarted in order to apply the changes."
msgstr ""
"Seu(s) servidor(es) web precisa(m) ser reiniciado(s) para que as alterações "
"façam efeito."
#~ msgid "Master configuration password (clear text):"
#~ msgstr "Senha mestra de configuração (texto plano):"
#. Type: note
#. Description
#: ../templates:34
msgid "Upgrade from pre-0.5.0 versions"
msgstr "Atualizar de versões pre-0.5.0"
#~ msgid ""
#~ "The configuration profiles are secured by a master password. You will "
#~ "need it to create and delete profiles. As default it is set to \"lam\" "
#~ "and can be changed directly in LAM."
#~ msgstr ""
#~ "Os perfis de configuração são protegidos por uma senha mestra. Você "
#~ "precisará dela para criar e remover perfis. Como padrão ela está definida "
#~ "como \"lam\" e pode ser mudada diretamente no LAM."
#. Type: note
#. Description
#: ../templates:34
msgid ""
"Please note that this version uses new file formats for configuration and "
"account profiles. You will have to update your configuration and create new "
"account profiles."
msgstr ""
"Por favor note que esta versão utiliza novos formatos para os arquivos de "
"configuração e para os perfis de contas. Você terá que atualizar sua "
"configuração e criar novos perfis de contas."
#~ msgid "Upgrade from pre-0.5.0 versions"
#~ msgstr "Atualizar de versões pre-0.5.0"
#. Type: note
#. Description
#: ../templates:41
msgid "Upgrade from pre-1.0.0 versions"
msgstr "Atualizar a partir de versões anteriores a 1.0.0"
#~ msgid ""
#~ "Please note that this version uses new file formats for configuration and "
#~ "account profiles. You will have to update your configuration and create "
#~ "new account profiles."
#~ msgstr ""
#~ "Por favor note que esta versão utiliza novos formatos para os arquivos de "
#~ "configuração e para os perfis de contas. Você terá que atualizar sua "
#~ "configuração e criar novos perfis de contas."
#~ msgid "Upgrade from pre-1.0.0 versions"
#~ msgstr "Atualizar a partir de versões anteriores a 1.0.0"
#~ msgid ""
#~ "Please note that this version uses new file formats for the configuration "
#~ "profiles. Please edit your configuration files and save the new settings."
#~ msgstr ""
#~ "Por favor note que esta versão utiliza novos formatos para a configuração "
#~ "dos perfis. Por favor edite seus arquivos de configuração e salve as "
#~ "novas configurações."
#. Type: note
#. Description
#: ../templates:41
msgid ""
"Please note that this version uses new file formats for the configuration "
"profiles. Please edit your configuration files and save the new settings."
msgstr ""
"Por favor note que esta versão utiliza novos formatos para a configuração "
"dos perfis. Por favor edite seus arquivos de configuração e salve as novas "
"configurações."
#~ msgid "Enter alias:"
#~ msgstr "Digite o apelido (alias):"

View File

@ -1,78 +0,0 @@
# translation of ru.po to Russian
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Yuri Kozlov <yuray@komyakino.ru>, 2009.
msgid ""
msgstr ""
"Project-Id-Version: ldap-account-manager 2.7.0-1\n"
"Report-Msgid-Bugs-To: ldap-account-manager@packages.debian.org\n"
"POT-Creation-Date: 2010-06-03 12:36+0200\n"
"PO-Revision-Date: 2009-08-07 21:45+0400\n"
"Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. Type: multiselect
#. Description
#: ../templates:1001
msgid "Web server configuration:"
msgstr "Настраиваемый веб-сервер:"
#. Type: multiselect
#. Description
#: ../templates:1001
msgid ""
"LDAP Account Manager supports any webserver that supports PHP5, but this "
"automatic configuration process only supports Apache2. If you choose to "
"configure Apache2 then LAM can be accessed at http(s)://localhost/lam"
msgstr ""
"LDAP Account Manager работает с любым веб-сервером, поддерживающим PHP5, "
"однако автоматическая настройка может быть выполнена только для Apache2. "
"Если выбрать настройку Apache2, то LAM будет доступен по адресу: http(s)://"
"localhost/lam"
#. Type: string
#. Description
#: ../templates:2001
msgid "Alias name:"
msgstr "Псевдоним:"
#. Type: string
#. Description
#: ../templates:2001
msgid ""
"LAM will add an alias to your httpd.conf which allows you to access LAM at "
"http(s)://localhost/lam. You may select an alias other than \"lam\"."
msgstr ""
"Для доступа к LAM по адресу: http(s)://localhost/lam в httpd.conf будет "
"добавлен псевдоним. Вы можете выбрать другой псевдоним вместо \"lam\"."
#. Type: boolean
#. Description
#: ../templates:3001
msgid "Would you like to restart your webserver(s) now?"
msgstr "Перезапустить веб-сервер(ы) прямо сейчас?"
#. Type: boolean
#. Description
#: ../templates:3001
msgid "Your webserver(s) need to be restarted in order to apply the changes."
msgstr "Чтобы активировать новые настройки, нужно перезапустить веб-сервер(ы)."
#~ msgid "Master configuration password (clear text):"
#~ msgstr "Главный пароль настройки (открытым текстом):"
#~ msgid ""
#~ "The configuration profiles are secured by a master password. You will "
#~ "need it to create and delete profiles. As default it is set to \"lam\" "
#~ "and can be changed directly in LAM."
#~ msgstr ""
#~ "Настроечные профили защищены главным паролем. Он понадобится при создании "
#~ "и удалении профилей. По умолчанию его значение равно \"lam\" и может быть "
#~ "изменено из интерфейса LAM."

View File

@ -1,66 +0,0 @@
# Slovak translations for ldap-account-manager package
# Slovenské preklady pre balík ldap-account-manager.
# Copyright (C) 2011 THE ldap-account-manager'S COPYRIGHT HOLDER
# This file is distributed under the same license as the ldap-account-manager package.
# Slavko <linux@slavino.sk>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: ldap-account-manager 3.6\n"
"Report-Msgid-Bugs-To: ldap-account-manager@packages.debian.org\n"
"POT-Creation-Date: 2010-06-03 12:36+0200\n"
"PO-Revision-Date: 2011-12-11 18:11+0100\n"
"Last-Translator: Slavko <linux@slavino.sk>\n"
"Language-Team: slovenčina <debian-l10n-slovak@lists.debian.org>\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. Type: multiselect
#. Description
#: ../templates:1001
msgid "Web server configuration:"
msgstr "Nastavenie webového servera:"
#. Type: multiselect
#. Description
#: ../templates:1001
msgid ""
"LDAP Account Manager supports any webserver that supports PHP5, but this "
"automatic configuration process only supports Apache2. If you choose to "
"configure Apache2 then LAM can be accessed at http(s)://localhost/lam"
msgstr ""
"LDAP Account Manager podporuje každý webový server, ktorý podporuje PHP5, "
"ale automatické nastavenie dokáže len v spojení s Apache2. Ak zvolíte "
"nastavenie Apache2, LAM bude prístupný na adrese http(s)://localhost/lam."
#. Type: string
#. Description
#: ../templates:2001
msgid "Alias name:"
msgstr "Meno aliasu:"
#. Type: string
#. Description
#: ../templates:2001
msgid ""
"LAM will add an alias to your httpd.conf which allows you to access LAM at "
"http(s)://localhost/lam. You may select an alias other than \"lam\"."
msgstr ""
"LAM pridá do vášho httpd.conf alias, pomocou ktorého budete môcť pristupovať "
"k LAM na adrese http(s)://localhost/lam. Môžete zadať aj iný alias ako „lam“."
#. Type: boolean
#. Description
#: ../templates:3001
msgid "Would you like to restart your webserver(s) now?"
msgstr "Chcete teraz reštartovať svoj webový server(y)?"
#. Type: boolean
#. Description
#: ../templates:3001
msgid "Your webserver(s) need to be restarted in order to apply the changes."
msgstr ""
"Aby bolo vaše nové nastavenie aktivované, treba reštartovať webový server(y)."

View File

@ -1,103 +1,131 @@
# Translation of ldap account manager debconf template to Swedish
# Copyright (C) 2009 Martin Bagge <brother@bsnet.se>
# This file is distributed under the same license as the ldap account manager debconf package.
#
# Daniel Nylander <po@danielnylander.se>, 2007
# Martin Bagge <brother@bsnet.se>, 2009
# Translators, if you are not familiar with the PO format, gettext
# documentation is worth reading, especially sections dedicated to
# this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
# Some information specific to po-debconf are available at
# /usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
#
# Developers do not need to manually edit POT or PO files.
#
msgid ""
msgstr ""
"Project-Id-Version: ldap-account-manager 0.5.1-1\n"
"Report-Msgid-Bugs-To: ldap-account-manager@packages.debian.org\n"
"POT-Creation-Date: 2010-06-03 12:36+0200\n"
"PO-Revision-Date: 2009-07-29 21:15+0100\n"
"Last-Translator: Martin Bagge <brother@bsnet.se>\n"
"Language-Team: Swedish <debian-l10n-swedish@lists.debian.org>\n"
"Report-Msgid-Bugs-To: post@rolandgruber.de\n"
"POT-Creation-Date: 2006-05-22 14:39+0200\n"
"PO-Revision-Date: 2006-04-05 18:57+0100\n"
"Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Language: Swedish\n"
"X-Poedit-Country: Sweden\n"
#. Type: multiselect
#. Description
#: ../templates:1001
#: ../templates:5
msgid "Web server configuration:"
msgstr "Webbserverkonfiguration:"
msgstr ""
#. Type: multiselect
#. Description
#: ../templates:1001
#: ../templates:5
msgid ""
"LDAP Account Manager supports any webserver that supports PHP5, but this "
"automatic configuration process only supports Apache2. If you choose to "
"configure Apache2 then LAM can be accessed at http(s)://localhost/lam"
"LDAP Account Manager supports any webserver that supports PHP4, but this "
"automatic configuration process only supports Apache and Apache2. If you "
"choose to configure Apache(2) LAM can be accessed at http(s)://localhost/lam"
msgstr ""
"LDAP Account Manager har stöd för de webbservrar som har stöd för PHP5 men "
"den här automatiska konfigurationsprocessen har endast stöd för Apache2. Om "
"du väljer att konfigurera Apache2 kan LAM nås på http(s)://localhost/lam"
"LDAP Account Manager har stöd för de webbservrar som har stöd för PHP4 men "
"den här automatiska konfigurationsprocessen har endast stöd för Apache och "
"Apache2. Om du väljer att konfigurera Apache(2) kan LAM nås på http(s)://"
"localhost/lam"
#. Type: string
#. Description
#: ../templates:2001
#: ../templates:13
msgid "Alias name:"
msgstr "Aliasnamn:"
msgstr ""
#. Type: string
#. Description
#: ../templates:2001
#: ../templates:13
#, fuzzy
msgid ""
"LAM will add an alias to your httpd.conf which allows you to access LAM at "
"http(s)://localhost/lam. You may select an alias other than \"lam\"."
msgstr ""
"LAM kommer att lägga till ett alias till din httpd.conf som låter dig komma "
"åt LAM på http(s)://localhost/lam. Du kan välja ett annat alias än \"lam\"."
"LAM kommer att lägga till ett alias till din httpd.conf som låter dig att nå "
"LAM på http(s)://localhost/lam. Om du vill använda ett annat alias än \"lam"
"\" kan du ange det här."
#. Type: string
#. Description
#: ../templates:21
#, fuzzy
msgid "Master configuration password (clear text):"
msgstr "Ange lösenord för huvudkonfigurationen (klartext):"
#. Type: string
#. Description
#: ../templates:21
#, fuzzy
msgid ""
"The configuration profiles are secured by a master password. You will need "
"it to create and delete profiles. As default it is set to \"lam\" and can be "
"changed directly in LAM."
msgstr ""
"Konfigurationsprofilerna är uppsäkrade av ett huvudlösenord. Du kommer att "
"behöva det för att skapa och ta bort profiler. Som standard är det satt till "
"\"lam\" och kan ändras direkt i LAM men du kan även ändra det här och nu."
#. Type: boolean
#. Description
#: ../templates:3001
#: ../templates:29
msgid "Would you like to restart your webserver(s) now?"
msgstr "Vill du starta om din webbserver nu?"
#. Type: boolean
#. Description
#: ../templates:3001
#: ../templates:29
msgid "Your webserver(s) need to be restarted in order to apply the changes."
msgstr "Din webbserver behöver startas om för att ändringarna ska bli aktiva."
msgstr "Din webbserver behöver startas om för att ändringarna ska bli aktiva."
#~ msgid "Master configuration password (clear text):"
#~ msgstr "Lösenord för huvudkonfigurationen (klartext):"
#. Type: note
#. Description
#: ../templates:34
msgid "Upgrade from pre-0.5.0 versions"
msgstr "Uppgradera från versioner före 0.5.0"
#~ msgid ""
#~ "The configuration profiles are secured by a master password. You will "
#~ "need it to create and delete profiles. As default it is set to \"lam\" "
#~ "and can be changed directly in LAM."
#~ msgstr ""
#~ "Konfigurationsprofilerna skyddas av ett huvudlösenord. Du kommer att "
#~ "behöva det för att skapa och ta bort profiler. Som standard är det "
#~ "inställt till \"lam\" och kan ändras direkt i LAM."
#. Type: note
#. Description
#: ../templates:34
msgid ""
"Please note that this version uses new file formats for configuration and "
"account profiles. You will have to update your configuration and create new "
"account profiles."
msgstr ""
"Notera att den här versionen använder nya filformat för konfiguration och "
"kontoprofiler. Du behöver uppdatera din konfiguration och skapa nya "
"kontoprofiler."
#~ msgid "Upgrade from pre-0.5.0 versions"
#~ msgstr "Uppgradera från versioner före 0.5.0"
#. Type: note
#. Description
#: ../templates:41
msgid "Upgrade from pre-1.0.0 versions"
msgstr "Uppgradera från versioner före 1.0.0"
#~ msgid ""
#~ "Please note that this version uses new file formats for configuration and "
#~ "account profiles. You will have to update your configuration and create "
#~ "new account profiles."
#~ msgstr ""
#~ "Notera att den här versionen använder nya filformat för konfiguration och "
#~ "kontoprofiler. Du behöver uppdatera din konfiguration och skapa nya "
#~ "kontoprofiler."
#~ msgid "Upgrade from pre-1.0.0 versions"
#~ msgstr "Uppgradera från versioner före 1.0.0"
#~ msgid ""
#~ "Please note that this version uses new file formats for the configuration "
#~ "profiles. Please edit your configuration files and save the new settings."
#~ msgstr ""
#~ "Notera att den här versionen använder nya filformat för "
#~ "konfigurationsprofiler. Redigera dina konfigurationsfiler och spara de "
#~ "nya inställningarna."
#. Type: note
#. Description
#: ../templates:41
msgid ""
"Please note that this version uses new file formats for the configuration "
"profiles. Please edit your configuration files and save the new settings."
msgstr ""
"Notera att den här versionen använder nya filformat för "
"konfigurationsprofiler. Redigera dina konfigurationsfiler och spara de nya "
"inställningarna."
#~ msgid "Enter alias:"
#~ msgstr "Ange alias:"
@ -109,8 +137,8 @@ msgstr "Din webbserver behöver startas om för att ändringarna ska bli aktiva.
#~ "Remember that in order to apply the changes your webserver(s) need to be "
#~ "restarted."
#~ msgstr ""
#~ "Tänk på att för att verkställa ändringarna till din webbserver behöver "
#~ "Tänk på att för att verkställa ändringarna till din webbserver behöver "
#~ "den startas om."
#~ msgid "It seems that you are upgrading LAM from a version before 0.5.0."
#~ msgstr "Det verkar som om du uppgraderar LAM från en version före 0.5.0."
#~ msgstr "Det verkar som om du uppgraderar LAM från en version före 0.5.0."

View File

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: ldap-account-manager@packages.debian.org\n"
"POT-Creation-Date: 2010-06-03 12:36+0200\n"
"Report-Msgid-Bugs-To: post@rolandgruber.de\n"
"POT-Creation-Date: 2006-05-22 14:39+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -18,41 +18,85 @@ msgstr ""
#. Type: multiselect
#. Description
#: ../templates:1001
#: ../templates:5
msgid "Web server configuration:"
msgstr ""
#. Type: multiselect
#. Description
#: ../templates:1001
#: ../templates:5
msgid ""
"LDAP Account Manager supports any webserver that supports PHP5, but this "
"automatic configuration process only supports Apache2. If you choose to "
"configure Apache2 then LAM can be accessed at http(s)://localhost/lam"
"LDAP Account Manager supports any webserver that supports PHP4, but this "
"automatic configuration process only supports Apache and Apache2. If you "
"choose to configure Apache(2) LAM can be accessed at http(s)://localhost/lam"
msgstr ""
#. Type: string
#. Description
#: ../templates:2001
#: ../templates:13
msgid "Alias name:"
msgstr ""
#. Type: string
#. Description
#: ../templates:2001
#: ../templates:13
msgid ""
"LAM will add an alias to your httpd.conf which allows you to access LAM at "
"http(s)://localhost/lam. You may select an alias other than \"lam\"."
msgstr ""
#. Type: string
#. Description
#: ../templates:21
msgid "Master configuration password (clear text):"
msgstr ""
#. Type: string
#. Description
#: ../templates:21
msgid ""
"The configuration profiles are secured by a master password. You will need "
"it to create and delete profiles. As default it is set to \"lam\" and can be "
"changed directly in LAM."
msgstr ""
#. Type: boolean
#. Description
#: ../templates:3001
#: ../templates:29
msgid "Would you like to restart your webserver(s) now?"
msgstr ""
#. Type: boolean
#. Description
#: ../templates:3001
#: ../templates:29
msgid "Your webserver(s) need to be restarted in order to apply the changes."
msgstr ""
#. Type: note
#. Description
#: ../templates:34
msgid "Upgrade from pre-0.5.0 versions"
msgstr ""
#. Type: note
#. Description
#: ../templates:34
msgid ""
"Please note that this version uses new file formats for configuration and "
"account profiles. You will have to update your configuration and create new "
"account profiles."
msgstr ""
#. Type: note
#. Description
#: ../templates:41
msgid "Upgrade from pre-1.0.0 versions"
msgstr ""
#. Type: note
#. Description
#: ../templates:41
msgid ""
"Please note that this version uses new file formats for the configuration "
"profiles. Please edit your configuration files and save the new settings."
msgstr ""

View File

@ -1,78 +1,127 @@
# Vietnamese translation for LDAP Account Manager.
# Copyright © 2009 Free Software Foundation, Inc.
# Clytie Siddall <clytie@riverland.net.au>, 2007-2009.
#
# Copyright © 2005 Free Software Foundation, Inc.
# Clytie Siddall <clytie@riverland.net.au>, 2005.
#
msgid ""
msgstr ""
"Project-Id-Version: ldap-account-manager 2.7.0.RC1-1\n"
"Report-Msgid-Bugs-To: ldap-account-manager@packages.debian.org\n"
"POT-Creation-Date: 2010-06-03 12:36+0200\n"
"PO-Revision-Date: 2009-09-23 18:33+0930\n"
"Project-Id-Version: ldap-account-manager\n"
"Report-Msgid-Bugs-To: post@rolandgruber.de\n"
"POT-Creation-Date: 2006-05-22 14:39+0200\n"
"PO-Revision-Date: 2006-04-06 15:36+0930\n"
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
"Language-Team: Vietnamese <vi-VN@googlegroups.com>\n"
"Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: LocFactoryEditor 1.8\n"
"Plural-Forms: nplurals=1; plural=0\n"
"X-Generator: LocFactoryEditor 1.5\n"
#. Type: multiselect
#. Description
#: ../templates:1001
#: ../templates:5
msgid "Web server configuration:"
msgstr "Cấu hình phục vụ Web:"
msgstr ""
#. Type: multiselect
#. Description
#: ../templates:1001
#: ../templates:5
msgid ""
"LDAP Account Manager supports any webserver that supports PHP5, but this "
"automatic configuration process only supports Apache2. If you choose to "
"configure Apache2 then LAM can be accessed at http(s)://localhost/lam"
"LDAP Account Manager supports any webserver that supports PHP4, but this "
"automatic configuration process only supports Apache and Apache2. If you "
"choose to configure Apache(2) LAM can be accessed at http(s)://localhost/lam"
msgstr ""
"Bộ Quản lý Tài khoản LDAP hỗ trợ cùng những trình phục vụ Web cũng hỗ trợ "
"PHP5, nhưng mà tiến trình tự động cấu hình này chỉ hỗ trợ Apache2. Nếu bạn "
"chọn cấu hình Apache2 thì Bộ Quản lý Tài khoản LDAP có thể được truy cập ở "
"địa chỉ « http(s)://localhost/lam »."
"Bộ Quản lý Tài khoản LDAP hỗ trợ trình phục vụ nào cũng hỗ trợ PHP4, nhưng "
"mà tiến trình tự động cấu hình này chỉ hỗ trợ Apache và Apache2 thôi. Nếu "
"bạn chọn cấu hình Apache(2), BQT có thể được truy cập tại <http(s)://"
"localhost/lam>."
#. Type: string
#. Description
#: ../templates:2001
#: ../templates:13
msgid "Alias name:"
msgstr "Tên bí danh:"
msgstr ""
#. Type: string
#. Description
#: ../templates:2001
#: ../templates:13
#, fuzzy
msgid ""
"LAM will add an alias to your httpd.conf which allows you to access LAM at "
"http(s)://localhost/lam. You may select an alias other than \"lam\"."
msgstr ""
"BQT sẽ thêm một bí danh vào tập tin cấu hình « httpd.conf » của bạn, để cho "
"phép bạn truy cập đến BQT ở địa chỉ « http(s)://localhost/lam ». Bạn cũng có "
"thể chọn bí danh khác với « lam » (v.d. « bqt »)."
"BQT sẽ thêm một bí danh vào tập tin cấu hình <httpd.conf> của bạn, mà cho "
"phép bạn truy cập BQT tại <http(s)://localhost/lam>. Nếu bạn muốn có bí danh "
"khác với « lam », hãy gõ nó vào đây."
#. Type: string
#. Description
#: ../templates:21
#, fuzzy
msgid "Master configuration password (clear text):"
msgstr "Gõ mật khẩu cấu hình chủ (chữ xem được):"
#. Type: string
#. Description
#: ../templates:21
#, fuzzy
msgid ""
"The configuration profiles are secured by a master password. You will need "
"it to create and delete profiles. As default it is set to \"lam\" and can be "
"changed directly in LAM."
msgstr ""
"Những hồ sơ cấu hình đựơc bảo mật bằng một mật khẩu chủ. Bạn sẽ cần thiết nó "
"để tạo hay xóa bỏ hồ sơ đó. Mặc định là « lam » mà có thể được thay đổi trực "
"tiếp trong BQT. Bạn cũng có thể thay đổi nó ngay bây giờ."
#. Type: boolean
#. Description
#: ../templates:3001
#: ../templates:29
msgid "Would you like to restart your webserver(s) now?"
msgstr "Vậy bạn có muốn khởi chạy (các) trình phục vụ Web ngay bây giờ không?"
msgstr "Vậy bạn có muốn khởi chạy trình phục vụ Mạng không?"
#. Type: boolean
#. Description
#: ../templates:3001
#: ../templates:29
msgid "Your webserver(s) need to be restarted in order to apply the changes."
msgstr ""
"Cần phải khởi chạy lại (các) trình phục vụ Web, để áp dụng các thay đổi."
"Cần phải khởi chạy lại trình phục vụ Mạng, để làm cho các thay đổi hoạt động."
#~ msgid "Master configuration password (clear text):"
#~ msgstr "Mật khẩu cấu hình chủ (chữ rõ):"
#. Type: note
#. Description
#: ../templates:34
msgid "Upgrade from pre-0.5.0 versions"
msgstr "Nâng cấp từ phiên bản trước 0.5.0"
#~ msgid ""
#~ "The configuration profiles are secured by a master password. You will "
#~ "need it to create and delete profiles. As default it is set to \"lam\" "
#~ "and can be changed directly in LAM."
#~ msgstr ""
#~ "Những hồ sơ cấu hình đựơc bảo mật bằng một mật khẩu chủ. Bạn cần thiết nó "
#~ "để tạo hay xoá hồ sơ. Mật khẩu mặc định là « lam » mà có thể được thay đổi "
#~ "trực tiếp trong BQT."
#. Type: note
#. Description
#: ../templates:34
msgid ""
"Please note that this version uses new file formats for configuration and "
"account profiles. You will have to update your configuration and create new "
"account profiles."
msgstr ""
"Hãy ghi chú rằng phiên bản này sử dụng khuôn dạng tập tin mới với cấu hình "
"và hồ sơ tài khoản. Bạn sẽ phải cập nhật cấu hình, và tạo hồ sơ tài khoản "
"mới."
#. Type: note
#. Description
#: ../templates:41
msgid "Upgrade from pre-1.0.0 versions"
msgstr "Nâng cấp từ phiên bản trước 1.0.0"
#. Type: note
#. Description
#: ../templates:41
msgid ""
"Please note that this version uses new file formats for the configuration "
"profiles. Please edit your configuration files and save the new settings."
msgstr ""
"Hãy ghi chú rằng phiên bản này sử dụng dạng thức tập tin mới cho hồ sơ cấu "
"hình. Vui lòng hiệu chỉnh các tập tin cấu hình và lưu thiết lập mới đó."
#~ msgid "Enter alias:"
#~ msgstr "Gõ bí danh:"
#~ msgid "Which webserver would you like to configure automatically?"
#~ msgstr "Bạn có muốn tự động cấu hình trình phục vụ Mạng nào?"

View File

@ -1,53 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: ldap-account-manager@packages.debian.org\n"
"POT-Creation-Date: 2010-06-03 12:36+0200\n"
"PO-Revision-Date: 2012-02-04 08:37+0800\n"
"Last-Translator: Needham <needham@sina.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: multiselect
#. Description
#: ../templates:1001
msgid "Web server configuration:"
msgstr "Web服务器配置:"
#. Type: multiselect
#. Description
#: ../templates:1001
msgid "LDAP Account Manager supports any webserver that supports PHP5, but this automatic configuration process only supports Apache2. If you choose to configure Apache2 then LAM can be accessed at http(s)://localhost/lam"
msgstr "LDAP帐号管理软件可以运行在任何支持PHP5的Web服务器平台上,但是仅在Apache2上支持自动配置处理.如果您选用Apache2,LAM可以通过http(s)://localhost/lam来访问."
#. Type: string
#. Description
#: ../templates:2001
msgid "Alias name:"
msgstr "Alias名字:"
#. Type: string
#. Description
#: ../templates:2001
msgid "LAM will add an alias to your httpd.conf which allows you to access LAM at http(s)://localhost/lam. You may select an alias other than \"lam\"."
msgstr "LAM会在httpd.conf中增加一个alias,用来配置http(s)://localhost/lam来访问LAM.可以选择\"lam\"以外的alias名字."
#. Type: boolean
#. Description
#: ../templates:3001
msgid "Would you like to restart your webserver(s) now?"
msgstr "现在重启web服务器吗?"
#. Type: boolean
#. Description
#: ../templates:3001
msgid "Your webserver(s) need to be restarted in order to apply the changes."
msgstr "为使修改生效,需要重启web服务器."

View File

@ -2,72 +2,35 @@
set -e
if [ "$1" != "configure" ]; then
exit 0
fi
. /usr/share/debconf/confmodule
db_version 2.0 || [ $? -lt 30 ]
# 3rd party libs
phpThirdPartyLibs='phpseclib Monolog Psr'
for phpThirdPartyLib in $phpThirdPartyLibs; do
if [ ! -L /usr/share/ldap-account-manager/lib/3rdParty/${phpThirdPartyLib} ] ; then
ln -s /usr/share/php/${phpThirdPartyLib} /usr/share/ldap-account-manager/lib/3rdParty/${phpThirdPartyLib}
fi
done
cd /usr/share/ldap-account-manager/config-samples/profiles
files=`ls -a default.*`
for file in $files; do
if [ ! -f /var/lib/ldap-account-manager/config/templates/profiles/$file ]; then
cp $file /var/lib/ldap-account-manager/config/templates/profiles/$file
fi
done
cd /usr/share/ldap-account-manager/config-samples/pdf
files=`ls -a default.*`
for file in $files; do
if [ ! -f /var/lib/ldap-account-manager/config/templates/pdf/$file ]; then
cp $file /var/lib/ldap-account-manager/config/templates/pdf/$file
fi
done
cd /usr/share/ldap-account-manager/config-samples/pdf/logos
files=`ls -a *.jpg`
for file in $files; do
cp $file /var/lib/ldap-account-manager/config/templates/pdf/logos/$file
done
if [ ! -h /usr/share/ldap-account-manager/config ]; then
ln -s /var/lib/ldap-account-manager/config /usr/share/ldap-account-manager/config
fi
if [ ! -h /usr/share/ldap-account-manager/sess ]; then
ln -s /var/lib/ldap-account-manager/sess /usr/share/ldap-account-manager/sess
fi
if [ ! -h /usr/share/ldap-account-manager/tmp ]; then
ln -s /var/lib/ldap-account-manager/tmp /usr/share/ldap-account-manager/tmp
fi
if [ ! -h /usr/share/ldap-account-manager/lib/fpdf.php ]; then\
ln -s /usr/share/fpdf/fpdf.php /usr/share/ldap-account-manager/lib/fpdf.php; fi
if [ ! -h /usr/share/ldap-account-manager/config ]; then\
ln -s /var/lib/ldap-account-manager/config /usr/share/ldap-account-manager/config; fi
if [ ! -h /usr/share/ldap-account-manager/sess ]; then\
ln -s /var/lib/ldap-account-manager/sess /usr/share/ldap-account-manager/sess; fi
if [ ! -h /usr/share/ldap-account-manager/tmp ]; then\
ln -s /var/lib/ldap-account-manager/tmp /usr/share/ldap-account-manager/tmp; fi
chown www-data /etc/ldap-account-manager/config.cfg
chmod 600 /etc/ldap-account-manager/config.cfg
chown www-data /var/lib/ldap-account-manager/sess
chmod 700 /var/lib/ldap-account-manager/sess
chown www-data /var/lib/ldap-account-manager/tmp
chown www-data /var/lib/ldap-account-manager/tmp/internal
chmod 700 /var/lib/ldap-account-manager/tmp
chown -R www-data /var/lib/ldap-account-manager/config
chmod 700 /var/lib/ldap-account-manager/config
set +e
ls -l /var/lib/ldap-account-manager/config/*.conf &> /dev/null
cfgFilesExist=$?
set -e
if [ $cfgFilesExist -ne 0 ]; then
cp /var/lib/ldap-account-manager/config/unix.conf.sample /var/lib/ldap-account-manager/config/lam.conf
chown www-data /var/lib/ldap-account-manager/config/lam.conf
fi
chown www-data /var/lib/ldap-account-manager/tmp
if [ ! -f /var/lib/ldap-account-manager/config/lam.conf ]; \
then cp /var/lib/ldap-account-manager/config/lam.conf_sample /var/lib/ldap-account-manager/config/lam.conf; \
chown www-data /var/lib/ldap-account-manager/config/lam.conf; fi
chmod 600 /var/lib/ldap-account-manager/config/*.conf
if [ "$1" = "configure" ]; then
db_get "ldap-account-manager/alias"
alias="$RET"
perl -pi -e "s/Alias \/.* \/usr\/share\/ldap-account-manager/Alias \/$alias \/usr\/share\/ldap-account-manager/g"\
/etc/ldap-account-manager/apache.conf
db_get "ldap-account-manager/passwd"
passwd="$RET"
perl -pi -e "s/password: .*/password: $passwd/g" /etc/ldap-account-manager/config.cfg
db_get "ldap-account-manager/config-webserver"
webservers="$RET"
restart=""
@ -75,31 +38,69 @@ if [ "$1" = "configure" ]; then
server=${server%,}
test -x /usr/sbin/$server || continue
case "$server" in
apache2)
if [ -h /etc/$server/conf.d/ldap-account-manager ]; then
rm -f /etc/$server/conf.d/ldap-account-manager
fi
if [ -d /etc/$server/conf-available ]; then
if [ ! -e /etc/$server/conf-available/ldap-account-manager.conf ]; then
if [ -h /etc/$server/conf-available/ldap-account-manager.conf ]; then
rm /etc/$server/conf-available/ldap-account-manager.conf
apache|apache-perl|apache-ssl)
if [ -x /usr/sbin/modules-config ]; then
if [ -f /usr/lib/apache/1.3/libphp4.so ]; then
if ! grep "^LoadModule php4_module " /etc/$server/modules.conf > /dev/null 2>&1; then
modules-config $server enable mod_php4
fi
else
if [ -f /usr/lib/apache/1.3/mod_actions.so ]; then
if ! grep "^LoadModule action_module " /etc/$server/modules.conf > /dev/null 2>&1; then
modules-config $server enable mod_actions
fi
fi
if [ -f /usr/lib/apache/1.3/mod_cgi.so ]; then
if ! grep "^LoadModule cgi_module " /etc/$server/modules.conf > /dev/null 2>&1; then
modules-config $server enable mod_cgi
fi
fi
fi
fi
if grep "^Include /etc/ldap-account-manager/apache.conf" /etc/$server/httpd.conf > /dev/null 2>&1; then
mv -f /etc/$server/httpd.conf /etc/$server/httpd.conf.old.ldap-account-manager
grep -v "^Include /etc/ldap-account-manager/apache.conf" /etc/$server/httpd.conf.old.ldap-account-manager \
> /etc/$server/httpd.conf
fi
if ! grep "^Include /etc/$server/conf.d" /etc/$server/httpd.conf > /dev/null 2>&1; then
cp -f /etc/$server/httpd.conf /etc/$server/httpd.conf.old.ldap-account-manager
echo "Include /etc/$server/conf.d" >> /etc/$server/httpd.conf
fi
if [ -f /etc/$server/httpd.conf.old.ldap-account-manager -a ! -f /etc/$server/httpd.conf.old ]; then
mv -f /etc/$server/httpd.conf.old.ldap-account-manager /etc/$server/httpd.conf.old
fi
mkdir -p /etc/$server/conf.d
;;
apache2)
if [ -d /etc/$server/mods-enabled ]; then
if [ ! -f /etc/$server/mods-enabled/actions.load -a ! -h /etc/$server/mods-enabled/actions.load ]; then
ln -s /etc/$server/mods-available/actions.load /etc/$server/mods-enabled/actions.load
fi
if [ -f /etc/apache2/mods-available/php4.load ]; then
if [ ! -f /etc/$server/mods-enabled/php4.load -a ! -h /etc/$server/mods-enabled/php4.load ]; then
ln -s /etc/$server/mods-available/php4.load /etc/$server/mods-enabled/php4.load
fi
else
if [ ! -f /etc/$server/mods-enabled/cgi.load -a ! -h /etc/$server/mods-enabled/cgi.load ]; then
ln -s /etc/$server/mods-available/cgi.load /etc/$server/mods-enabled/cgi.load
fi
ln -s /etc/ldap-account-manager/apache.conf /etc/$server/conf-available/ldap-account-manager.conf
fi
a2query -q -c ldap-account-manager || a2enconf -q ldap-account-manager
restart="$restart $server"
fi
;;
esac
if [ ! -f /etc/$server/conf.d/ldap-account-manager -a ! -h /etc/$server/conf.d/ldap-account-manager ]; then
ln -s /etc/ldap-account-manager/apache.conf /etc/$server/conf.d/ldap-account-manager
restart="$restart $server"
fi
done
db_get "ldap-account-manager/restart-webserver"
if [ "$RET" = "true" ]; then
for server in $restart; do
server=${server%,}
if [ `which invoke-rc.d` ]; then
invoke-rc.d $server reload
elif [ `which service` ]; then
service $server reload
if [ -x /usr/sbin/invoke-rc.d ]; then
invoke-rc.d $server restart
else
/etc/init.d/$server restart
fi
done
fi

View File

@ -2,73 +2,42 @@
set -e
if [ "$1" = "upgrade" ]; then
exit 0
. /usr/share/debconf/confmodule
db_version 2.0 || [ $? -lt 30 ]
db_get "ldap-account-manager/config-webserver"
webservers="$RET"
restart=""
for server in $webservers; do
server=${server%,}
case "$server" in
apache|apache-perl|apache-ssl|apache2)
rm -f /etc/$server/conf.d/ldap-account-manager
test -x /usr/sbin/$server || continue
restart="$restart $server"
;;
esac
done
db_get "ldap-account-manager/restart-webserver"
if [ "$RET" = "true" ]; then
for server in $restart; do
server=${server%,}
if [ -x /usr/sbin/invoke-rc.d ]; then
invoke-rc.d $server restart
else
/etc/init.d/$server restart
fi
done
fi
if [ "$1" = "purge" ]; then
rm -r -f /usr/share/ldap-account-manager; rm -r -f /var/lib/ldap-account-manager; fi
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
db_purge
fi
if [ -f /usr/share/debconf/confmodule ]; then
. /usr/share/debconf/confmodule
db_version 2.0 || [ $? -lt 30 ]
#DEBHELPER#
rm -f /usr/share/ldap-account-manager/sess
rm -f /usr/share/ldap-account-manager/tmp
rm -f /usr/share/ldap-account-manager/config
set +e
db_get "ldap-account-manager/config-webserver"
if [ $? -eq 0 ]; then
set -e
webservers="$RET"
restart=""
for server in $webservers; do
server=${server%,}
case "$server" in
apache2)
set +e
a2query -q -c ldap-account-manager && a2disconf -q ldap-account-manager
set -e
rm -f /etc/$server/conf-available/ldap-account-manager.conf
test -x /usr/sbin/$server || continue
restart="$restart $server"
;;
esac
done
fi
set +e
db_get "ldap-account-manager/restart-webserver"
if [ $? -eq 0 ] && [ "$RET" = "true" ]; then
set -e
for server in $restart; do
server=${server%,}
if [ `which invoke-rc.d` ]; then
invoke-rc.d $server reload
elif [ `which service` ]; then
service $server reload
fi
done
fi
# 3rd party libs
phpThirdPartyLibs='phpseclib tcpdf Monolog Psr'
for phpThirdPartyLib in $phpThirdPartyLibs; do
if [ -L /usr/share/ldap-account-manager/lib/3rdParty/${phpThirdPartyLib} ] ; then
rm /usr/share/ldap-account-manager/lib/3rdParty/${phpThirdPartyLib}
fi
done
set -e
if [ "$1" = "purge" ]; then
rm -r -f /usr/share/ldap-account-manager
rm -r -f /var/lib/ldap-account-manager
db_purge
fi
#DEBHELPER#
db_stop
fi
db_stop
exit 0

View File

@ -1,17 +0,0 @@
#!/bin/bash
set -e
if [ "$1" != "upgrade" ]; then
exit 0
fi
# 3rd party libs
phpThirdPartyLibs='phpseclib tcpdf Monolog Psr'
for phpThirdPartyLib in $phpThirdPartyLibs; do
if [ -L /usr/share/ldap-account-manager/lib/3rdParty/${phpThirdPartyLib} ] ; then
rm /usr/share/ldap-account-manager/lib/3rdParty/${phpThirdPartyLib}
fi
done
#DEBHELPER#

View File

@ -6,60 +6,38 @@ clean:
debconf-updatepo
dh_clean
build: build-arch build-indep
build:
build-arch: build-stamp
build-indep: build-stamp
debian/minify
build-stamp:
install:
install:
dh_testdir
dh_testroot
dh_prep
dh_clean -k
dh_installdirs
install -D --mode=644 index.html debian/ldap-account-manager/usr/share/ldap-account-manager/index.html
install -D --mode=644 VERSION debian/ldap-account-manager/usr/share/ldap-account-manager/VERSION
install -D --mode=644 pwa_worker.js debian/ldap-account-manager/usr/share/ldap-account-manager/pwa_worker.js
install -D --mode=644 tmp/.htaccess debian/ldap-account-manager/var/lib/ldap-account-manager/tmp/.htaccess
install -D --mode=644 tmp/internal/.htaccess debian/ldap-account-manager/var/lib/ldap-account-manager/tmp/internal/.htaccess
install -D --mode=644 config/.htaccess debian/ldap-account-manager/var/lib/ldap-account-manager/config/.htaccess
install -D --mode=644 config/language debian/ldap-account-manager/var/lib/ldap-account-manager/config/language
install -D --mode=644 config/*.conf.sample debian/ldap-account-manager/var/lib/ldap-account-manager/config/
install -D --mode=644 config/config.cfg.sample debian/ldap-account-manager/var/lib/ldap-account-manager/config/config.cfg.sample
install -d --mode=755 debian/ldap-account-manager/var/lib/ldap-account-manager/config/pdf
install -d --mode=755 debian/ldap-account-manager/var/lib/ldap-account-manager/config/profiles
install -d --mode=755 debian/ldap-account-manager/var/lib/ldap-account-manager/config/selfService
install -d --mode=755 debian/ldap-account-manager/usr/share/ldap-account-manager/config-samples
cp -r config/templates/profiles debian/ldap-account-manager/usr/share/ldap-account-manager/config-samples/
cp -r config/templates/pdf debian/ldap-account-manager/usr/share/ldap-account-manager/config-samples/
install -D --mode=644 config/shells debian/ldap-account-manager/var/lib/ldap-account-manager/config/shells
install -D --mode=644 config/lam.conf_sample debian/ldap-account-manager/var/lib/ldap-account-manager/config/lam.conf_sample
install -D --mode=644 config/config.cfg_sample debian/ldap-account-manager/var/lib/ldap-account-manager/config/config.cfg_sample
cp -r config/profiles debian/ldap-account-manager/var/lib/ldap-account-manager/config/
cp -r config/pdf debian/ldap-account-manager/var/lib/ldap-account-manager/config/
cp -r graphics debian/ldap-account-manager/usr/share/ldap-account-manager/
install -D --mode=644 help/help.inc debian/ldap-account-manager/usr/share/ldap-account-manager/help/help.inc
install -D --mode=644 lib/.htaccess debian/ldap-account-manager/usr/share/ldap-account-manager/lib/.htaccess
install -D --mode=644 lib/*.inc debian/ldap-account-manager/usr/share/ldap-account-manager/lib
install -D --mode=755 lib/*.sh debian/ldap-account-manager/usr/share/ldap-account-manager/lib
install -D --mode=644 lib/ufpdf.php debian/ldap-account-manager/usr/share/ldap-account-manager/lib/ufpdf.php
install -D --mode=755 lib/lamdaemon.pl debian/ldap-account-manager/usr/share/ldap-account-manager/lib/lamdaemon.pl
cp -r lib/font debian/ldap-account-manager/usr/share/ldap-account-manager/lib/
cp -r lib/modules debian/ldap-account-manager/usr/share/ldap-account-manager/lib/
cp -r lib/types debian/ldap-account-manager/usr/share/ldap-account-manager/lib/
cp -r lib/tools debian/ldap-account-manager/usr/share/ldap-account-manager/lib/
# 3rd party libs are linked
install -d --mode=755 debian/ldap-account-manager/usr/share/ldap-account-manager/lib/3rdParty
cp -r lib/3rdParty/composer debian/ldap-account-manager/usr/share/ldap-account-manager/lib/3rdParty/
cp -r lib/3rdParty/yubico debian/ldap-account-manager/usr/share/ldap-account-manager/lib/3rdParty/
cp -r lib/3rdParty/tcpdf debian/ldap-account-manager/usr/share/ldap-account-manager/lib/3rdParty/
cp -r lib/3rdParty/duo debian/ldap-account-manager/usr/share/ldap-account-manager/lib/3rdParty/
cp -r locale debian/ldap-account-manager/usr/share/ldap-account-manager/
install -D --mode=644 sess/.htaccess debian/ldap-account-manager/var/lib/ldap-account-manager/sess/.htaccess
cp -r style debian/ldap-account-manager/usr/share/ldap-account-manager/
install -D --mode=644 style/*.css debian/ldap-account-manager/usr/share/ldap-account-manager/style
cp -r templates debian/ldap-account-manager/usr/share/ldap-account-manager/
install -D --mode=755 lib/lamdaemon.pl debian/ldap-account-manager-lamdaemon/usr/share/ldap-account-manager/lib/lamdaemon.pl
install -D --mode=755 debian/README-lamdaemon.Debian debian/ldap-account-manager-lamdaemon/usr/share/doc/ldap-account-manager-lamdaemon/README.Debian
# Build architecture-independent files here.
binary-dep: build install
@ -72,10 +50,8 @@ binary-indep: build install
dh_install
dh_compress
dh_fixperms
dh_link /usr/share/doc/ldap-account-manager/docs /usr/share/ldap-account-manager/docs
install -D --mode=644 debian/lam.apache.conf debian/ldap-account-manager/etc/ldap-account-manager/apache.conf
install -D --mode=644 debian/lam.nginx.conf debian/ldap-account-manager/etc/ldap-account-manager/nginx.conf
install -D --mode=644 config/config.cfg.sample debian/ldap-account-manager/etc/ldap-account-manager/config.cfg
install -D --mode=644 config/config.cfg_sample debian/ldap-account-manager/etc/ldap-account-manager/config.cfg
dh_link /etc/ldap-account-manager/config.cfg /var/lib/ldap-account-manager/config/config.cfg
dh_installdebconf
dh_installdeb

View File

@ -1 +0,0 @@
3.0 (quilt)

View File

@ -1,11 +1,11 @@
Template: ldap-account-manager/config-webserver
Type: multiselect
Choices: apache2
Default: apache2
Choices: apache, apache-ssl, apache-perl, apache2
Default: apache, apache-ssl, apache-perl, apache2
_Description: Web server configuration:
LDAP Account Manager supports any webserver that supports PHP5, but this
automatic configuration process only supports Apache2.
If you choose to configure Apache2 then LAM can be accessed at http(s)://localhost/lam
LDAP Account Manager supports any webserver that supports PHP4, but this
automatic configuration process only supports Apache and Apache2.
If you choose to configure Apache(2) LAM can be accessed at http(s)://localhost/lam
Template: ldap-account-manager/alias
Type: string
@ -15,9 +15,31 @@ _Description: Alias name:
access LAM at http(s)://localhost/lam. You may select an alias other than
"lam".
Template: ldap-account-manager/passwd
Type: string
Default: lam
_Description: Master configuration password (clear text):
The configuration profiles are secured by a master password.
You will need it to create and delete profiles. As default it is
set to "lam" and can be changed directly in LAM.
Template: ldap-account-manager/restart-webserver
Type: boolean
Default: true
_Description: Would you like to restart your webserver(s) now?
Your webserver(s) need to be restarted in order to apply the changes.
Template: ldap-account-manager/note-0_4_9-upgrade
Type: note
_Description: Upgrade from pre-0.5.0 versions
Please note that this version uses new file formats for configuration and
account profiles. You will have to update your configuration and create new
account profiles.
Template: ldap-account-manager/note-1_0_0-upgrade
Type: note
_Description: Upgrade from pre-1.0.0 versions
Please note that this version uses new file formats for the configuration
profiles. Please edit your configuration files and save the new
settings.

View File

@ -2,4 +2,4 @@
version=2
# LDAP Account Manager at Sourceforge
http://sf.net/lam/ldap-account-manager-([0-9]\.[0-9](\.[0-9])?)\.tar\.gz
http://prdownloads.sourceforge.net/lam/ldap-account-manager_([0-9]\.[0-9]\.[0-9])\.tar\.gz

View File

@ -1,36 +0,0 @@
#
# LAM setup
#
# skip LAM preconfiguration (lam.conf + config.cfg), values: (true/false)
# If set to false the other variables below have no effect.
LAM_SKIP_PRECONFIGURE=false
# domain of LDAP database root entry, will be converted to dc=...,dc=...
LDAP_DOMAIN=my-domain.com
# LDAP base DN to overwrite value generated by LDAP_DOMAIN
LDAP_BASE_DN=dc=my-domain,dc=com
# LDAP users DN to overwrite value provided by LDAP_BASE_DN
LDAP_USERS_DN=ou=people,dc=my-domain,dc=com
# LDAP groups DN to overwrite value provided by LDAP_BASE_DN
LDAP_GROUPS_DN=ou=groups,dc=my-domain,dc=com
# LDAP server URL
LDAP_SERVER=ldap://ldap:389
# LDAP admin user (set as login user for LAM)
LDAP_USER=cn=admin,dc=my-domain,dc=com
# default language, e.g. en_US, de_DE, fr_FR, ...
LAM_LANG=en_US
# LAM configuration master password and password for server profile "lam"
LAM_PASSWORD=lam
# deactivate TLS certificate checks, activate for development only
LAM_DISABLE_TLS_CHECK=false
#
# docker-compose only, LDAP server setup
#
# LDAP organisation name for OpenLDAP
LDAP_ORGANISATION="LDAP Account Manager Demo"
# LDAP admin password
LDAP_ADMIN_PASSWORD=adminpw
# password for LDAP read-only user
LDAP_READONLY_USER_PASSWORD=readonlypw

View File

@ -1,112 +0,0 @@
#
# Docker image for LDAP Account Manager
# This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
# Copyright (C) 2019 - 2020 Roland Gruber
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# Usage: run this command: docker run -p 8080:80 -it -d ldapaccountmanager/lam:stable
#
# Then access LAM at http://localhost:8080/
# You can change the port 8080 if needed.
# See possible environment variables here: https://github.com/LDAPAccountManager/lam/blob/develop/lam-packaging/docker/.env
#
FROM debian:buster-slim
LABEL maintainer="Roland Gruber <post@rolandgruber.de>"
ARG LAM_RELEASE=7.3.RC1
EXPOSE 80
ENV \
DEBIAN_FRONTEND=noninteractive \
DEBUG=''
RUN apt-get update && \
apt-get upgrade -y
# install locales
RUN apt-get install -y locales
RUN sed -i 's/^# *\(ca_ES.UTF-8\)/\1/' /etc/locale.gen && \
sed -i 's/^# *\(cz_CZ.UTF-8\)/\1/' /etc/locale.gen && \
sed -i 's/^# *\(de_DE.UTF-8\)/\1/' /etc/locale.gen && \
sed -i 's/^# *\(en_GB.UTF-8\)/\1/' /etc/locale.gen && \
sed -i 's/^# *\(en_US.UTF-8\)/\1/' /etc/locale.gen && \
sed -i 's/^# *\(es_ES.UTF-8\)/\1/' /etc/locale.gen && \
sed -i 's/^# *\(fr_FR.UTF-8\)/\1/' /etc/locale.gen && \
sed -i 's/^# *\(it_IT.UTF-8\)/\1/' /etc/locale.gen && \
sed -i 's/^# *\(hu_HU.UTF-8\)/\1/' /etc/locale.gen && \
sed -i 's/^# *\(nl_NL.UTF-8\)/\1/' /etc/locale.gen && \
sed -i 's/^# *\(pl_PL.UTF-8\)/\1/' /etc/locale.gen && \
sed -i 's/^# *\(pt_BR.UTF-8\)/\1/' /etc/locale.gen && \
sed -i 's/^# *\(ru_RU.UTF-8\)/\1/' /etc/locale.gen && \
sed -i 's/^# *\(sk_SK.UTF-8\)/\1/' /etc/locale.gen && \
sed -i 's/^# *\(tr_TR.UTF-8\)/\1/' /etc/locale.gen && \
sed -i 's/^# *\(uk_UA.UTF-8\)/\1/' /etc/locale.gen && \
sed -i 's/^# *\(ja_JP.UTF-8\)/\1/' /etc/locale.gen && \
sed -i 's/^# *\(zh_TW.UTF-8\)/\1/' /etc/locale.gen && \
sed -i 's/^# *\(zh_CN.UTF-8\)/\1/' /etc/locale.gen && \
locale-gen
RUN apt-get install --no-install-recommends -y \
apache2 \
ca-certificates \
dumb-init \
fonts-dejavu \
libapache2-mod-php \
php \
php-curl \
php-gd \
php-imagick \
php-ldap \
php-monolog \
php-phpseclib \
php-xml \
php-zip \
php-imap \
php-gmp \
wget \
&& \
rm /etc/apache2/sites-enabled/*default* && \
rm -rf /var/cache/apt /var/lib/apt/lists/*
# install LAM
RUN wget http://prdownloads.sourceforge.net/lam/ldap-account-manager_${LAM_RELEASE}-1_all.deb?download \
-O /tmp/ldap-account-manager_${LAM_RELEASE}-1_all.deb && \
dpkg -i /tmp/ldap-account-manager_${LAM_RELEASE}-1_all.deb && \
rm -f /tmp/ldap-account-manager_${LAM_RELEASE}-1_all.deb
# redirect Apache logging
RUN sed -e 's,^ErrorLog.*,ErrorLog "|/bin/cat",' -i /etc/apache2/apache2.conf
# because there is no logging set in the lam vhost logging goes to other_vhost_access.log
RUN ln -sf /dev/stdout /var/log/apache2/other_vhosts_access.log
# add redirect for /
RUN a2enmod rewrite
RUN echo "RewriteEngine on" >> /etc/apache2/conf-enabled/laminit.conf \
&& echo "RewriteRule ^/$ /lam/ [R,L]" >> /etc/apache2/conf-enabled/laminit.conf
COPY start.sh /usr/local/bin/start.sh
WORKDIR /var/lib/ldap-account-manager/config
# start Apache when container starts
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
CMD [ "/usr/local/bin/start.sh" ]
HEALTHCHECK --interval=1m --timeout=10s \
CMD wget -qO- http://localhost/lam/ | grep -q '<title>LDAP Account Manager</title>'

View File

@ -1,42 +0,0 @@
version: '3.5'
services:
ldap-account-manager:
build:
context: .
image: ldapaccountmanager/lam:7.3.RC1
restart: unless-stopped
ports:
- "8080:80"
volumes:
- lametc/:/etc/ldap-account-manager
- lamconfig/:/var/lib/ldap-account-manager/config
- lamsession/:/var/lib/ldap-account-manager/sess
environment:
- LAM_PASSWORD=${LAM_PASSWORD}
- LAM_LANG=en_US
- LDAP_SERVER=${LDAP_SERVER}
- LDAP_DOMAIN=${LDAP_DOMAIN}
- LDAP_BASE_DN=${LDAP_BASE_DN}
- ADMIN_USER=cn=admin,${LDAP_BASE_DN}
- DEBUG=true
ldap:
image: osixia/openldap:latest
restart: unless-stopped
environment:
- LDAP_ORGANISATION=${LDAP_ORGANISATION}
- LDAP_DOMAIN=${LDAP_DOMAIN}
- LDAP_BASE_DN=${LDAP_BASE_DN}
- LDAP_ADMIN_PASSWORD=${LDAP_ADMIN_PASSWORD}
- LDAP_READONLY_USER=true
- LDAP_READONLY_USER_PASSWORD=${LDAP_READONLY_USER_PASSWORD}
command: "--loglevel info --copy-service"
volumes:
- ldap:/var/lib/ldap
- slapd:/etc/ldap/slapd.d
volumes:
lametc:
lamconfig:
lamsession:
ldap:
slapd:

View File

@ -1,66 +0,0 @@
#!/bin/bash
#
# Docker start script for LDAP Account Manager
# This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
# Copyright (C) 2019 Felix Bartels
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
set -eu # unset variables are errors & non-zero return values exit the whole script
[ "$DEBUG" ] && set -x
if [ "${LAM_DISABLE_TLS_CHECK:-}" == "true" ]; then
ln -s /etc/ldap/ldap.conf /etc/ldap.conf
echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf
fi
LAM_SKIP_PRECONFIGURE="${LAM_SKIP_PRECONFIGURE:-false}"
if [ "$LAM_SKIP_PRECONFIGURE" != "true" ]; then
LAM_LANG="${LAM_LANG:-en_US}"
export LAM_PASSWORD="${LAM_PASSWORD:-lam}"
LAM_PASSWORD_SSHA=$(php -r '$password = getenv("LAM_PASSWORD"); mt_srand((microtime() * 1000000)); $rand = abs(hexdec(bin2hex(openssl_random_pseudo_bytes(5)))); $salt0 = substr(pack("h*", md5($rand)), 0, 8); $salt = substr(pack("H*", sha1($salt0 . $password)), 0, 4); print "{SSHA}" . base64_encode(pack("H*", sha1($password . $salt))) . " " . base64_encode($salt) . "\n";')
LDAP_SERVER="${LDAP_SERVER:-ldap://ldap:389}"
LDAP_DOMAIN="${LDAP_DOMAIN:-my-domain.com}"
LDAP_BASE_DN="${LDAP_BASE_DN:-dc=${LDAP_DOMAIN//\./,dc=}}"
LDAP_USERS_DN="${LDAP_USERS_DN:-${LDAP_BASE_DN}}"
LDAP_GROUPS_DN="${LDAP_GROUPS_DN:-${LDAP_BASE_DN}}"
LDAP_ADMIN_USER="${LDAP_USER:-cn=admin,${LDAP_BASE_DN}}"
sed -i -f- /etc/ldap-account-manager/config.cfg <<- EOF
s|^password:.*|password: ${LAM_PASSWORD_SSHA}|;
EOF
unset LAM_PASSWORD
sed -i -f- /var/lib/ldap-account-manager/config/lam.conf <<- EOF
s|^ServerURL:.*|ServerURL: ${LDAP_SERVER}|;
s|^Admins:.*|Admins: ${LDAP_ADMIN_USER}|;
s|^Passwd:.*|Passwd: ${LAM_PASSWORD_SSHA}|;
s|^treesuffix:.*|treesuffix: ${LDAP_BASE_DN}|;
s|^defaultLanguage:.*|defaultLanguage: ${LAM_LANG}.utf8|;
s|^.*suffix_user:.*|types: suffix_user: ${LDAP_USERS_DN}|;
s|^.*suffix_group:.*|types: suffix_group: ${LDAP_GROUPS_DN}|;
EOF
fi
echo "Starting Apache"
rm -f /run/apache2/apache2.pid
set +u
# shellcheck disable=SC1091
source /etc/apache2/envvars
exec /usr/sbin/apache2 -DFOREGROUND

View File

@ -1,5 +0,0 @@
<Files *>
Options +FollowSymLinks
Require all granted
DirectoryIndex index.html
</Files>

View File

@ -1,632 +1,285 @@
Most parts of LDAP Account Manager are licensed under the GNU GENERAL PUBLIC LICENSE.
See the copyright file for a detailed list of licenses.
GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
-------------------------------------------------------------------------------------
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Copyright (C) 1989, 1991 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.
Preamble
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users. This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it. (Some other Free Software Foundation software is covered by
the GNU Library General Public License instead.) You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
gratis or for a fee, you must give the recipients all the rights that
you have. You must make sure that they, too, receive or can get the
source code. And you must show them these terms so they know their
rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
Finally, any free program is threatened constantly by software
patents. We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary. To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License. The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language. (Hereinafter, translation is included without limitation in
the term "modification".) Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.
1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.
You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.
2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) You must cause the modified files to carry prominent notices
stating that you changed the files and the date of any change.
b) You must cause any work that you distribute or publish, that in
whole or in part contains or is derived from the Program or any
part thereof, to be licensed as a whole at no charge to all third
parties under the terms of this License.
c) If the modified program normally reads commands interactively
when run, you must cause it, when started running for such
interactive use in the most ordinary way, to print or display an
announcement including an appropriate copyright notice and a
notice that there is no warranty (or else, saying that you provide
a warranty) and that users may redistribute the program under
these conditions, and telling the user how to view a copy of this
License. (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.
In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:
a) Accompany it with the complete corresponding machine-readable
source code, which must be distributed under the terms of Sections
1 and 2 above on a medium customarily used for software interchange; or,
b) Accompany it with a written offer, valid for at least three
years, to give any third party, for a charge no more than your
cost of physically performing source distribution, a complete
machine-readable copy of the corresponding source code, to be
distributed under the terms of Sections 1 and 2 above on a medium
customarily used for software interchange; or,
c) Accompany it with the information you received as to the offer
to distribute corresponding source code. (This alternative is
allowed only for noncommercial distribution and only if you
received the program in object code or executable form with such
an offer, in accord with Subsection b above.)
The source code for a work means the preferred form of the work for
making modifications to it. For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable. However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.
If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense or distribute the Program 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.
5. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Program or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.
6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all. For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.
13. Use with the GNU Affero General Public License.
If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
14. Revised Versions of this License.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded. In such case, this License incorporates
the limitation as if written in the body of this License.
9. The Free Software Foundation may publish revised and/or new versions
of the General Public 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.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
Each version is given a distinguishing version number. If the Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation. If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission. For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
NO WARRANTY
15. Disclaimer of Warranty.
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
16. Limitation of Liability.
END OF TERMS AND CONDITIONS
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
@ -634,15 +287,15 @@ free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
@ -651,30 +304,37 @@ the "copyright" line and a pointer to where the full notice is found.
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
Gnomovision version 69, Copyright (C) year name of author
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
parts of the General Public License. Of course, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary. Here is a sample; alter the names:
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
`Gnomovision' (which makes passes at compilers) written by James Hacker.
<signature of Ty Coon>, 1 April 1989
Ty Coon, President of Vice
This General Public License does not permit incorporating your program into
proprietary programs. If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library. If this is what you want to do, use the GNU Library General
Public License instead of this License.

View File

@ -1,824 +1,4 @@
September 2020
- PHP 7.4 compatibility
- Configuration export and import
- Server profiles support to specify a part of the DN to hide
- Show password prompt when a user with expired password logs into LAM admin interface (requires PHP 7.2)
- Better error messages on login when account is expired/deactivated/...
- Personal/Windows: photo can be uploaded via webcam
- Windows users: group display format can be configured (cn/dn)
- LAM Pro:
-> Windows: new cron job to send users a summary of their managed groups
- Fixed bugs:
-> Unix groups: memberUid was not deleted correctly when forced sync with group of names is active
01.05.2020 7.2
- Unix: allow to create group with same name during user creation
- LAM Pro:
-> EMail sending can be done via SMTP without local mail server
-> License expiration warning can be sent via email or disabled
- Fixed bugs:
-> Captcha don't show anymore in Self Service login page (213)
-> Unix memberships cannot be changed. This issue can also affect other membership relations.
-> Missing locales on Docker image
17.03.2020 7.1
- PHP 7 required
- WebAuthn/FIDO2 support for 2-factor-authentication (requires PHP 7.2)
- IMAP: changed library to support latest TLS versions
- Personal: support display name (hidden by default in server profile)
- Windows users: support allowed workstations, more profile options
- Reactivated Polish translation
- LAM Pro:
-> PPolicy: support for password check module
-> Windows AD LDS support (users and groups)
-> User self registration: support Active Directory/Samba4
21.12.2019 7.0
- Lamdaemon can be configured with directory prefix for homedirs
- Account list filters match on substrings instead of whole value
- YubiKey: support to configure multiple verification servers
- Windows hosts: added last password change and last login
- Deactivated non-maintained translations: Catalan, Czech, Hungarian, Polish and Turkish
Contact us if you would like to take over. Translators get LAM Pro for free (commercial use included).
- Docker updates
- Fixed bugs:
-> Missing CSS for Duo
-> Editing of DNs with comma on Windows (210)
29.09.2019 6.9
- Group account types can show member+owner count in list view
- 2-factor authentication:
-> Duo support
-> user name attribute for privacyIDEA can be specified
- LAM Pro:
-> New self service settings for login and main page footer
-> Custom fields: custom labels for LDAP search select list
- Fixed bugs:
-> Configuration issue with Unix user/host module (206)
02.07.2019 6.8
- Parallel editing of multiple entries in different browser tabs supported
- LAM supports the progressive web app standard which allows to install LAM as an icon on home screen
- Windows: added home drive and force password change to profile editor
- Unix: password management can be disabled in module settings
- LAM Pro:
-> Bind DLZ: entry table can show record data (use special attribute "#records" in server profile)
-> Self service: support legacy attribute "email" for password self reset and user self registration
- Fixed bugs:
-> Users: No drop-down filter box for account status (200)
-> Custom fields: Account type "Groups" not saving/deleting fields (66)
25.03.2019 6.7
- Added YubiKey as 2-factor authentication provider
- Support logging to remote syslog server
- PHP 7.3 support
- LAM Pro:
-> Allow to mark text and text area fields as required
-> New self service fields:
-> Mail routing
-> Windows proxy addresses + mail alias
-> Shadow account expiration date
-> Unix and group of names memberships
-> Base URL for emails in self service can be configured in self service profile
-> Bind DLZ: support DNAME+XFR records and descriptions in records (requires latest LDAP schema)
-> Cron jobs: added Shadow account expiration notification job
- Fixed bugs:
-> Allow tree-only configurations without any other tab
28.12.2018 6.6
- New import/export in tools menu
- YubiKey support
- Windows users:
-> Manage "departmentNumber" (needs to be activated via LAM server profile)
-> Sync group memberships from Unix and group of names
- LAM Pro:
-> Easy setting of background color in self service profile
-> Cron jobs: added Windows/Qmail/FreeRadius account expiration notification jobs
-> Bind DLZ: usability improvements and small fixes
25.09.2018 6.5
- Password change possible via LDAP EXOP operation (set LDAP_EXOP as password hash, requires PHP 7.2)
- Support Imagick and GD
- Dropped support for Apache 2.2
- Upload: allow to overwrite existing accounts
- Personal: photos can be printed in PDF export
- Kolab updates
- LAM Pro:
-> Auto deletion of entries with dynamic directory services support (requires PHP 7.2)
- Fixed bugs:
-> Issue when changing key case of uid (#197)
20.06.2018 6.4
- Imagick PHP extension required
- Passwords can be checked against external service (e.g. https://api.pwnedpasswords.com/range)
- Personal/Windows: image cropping support
- Better filtering of account lists
- Unix: Unix, Windows and group of names memberships can be synced in group selection
- IMAP: create mailbox via file upload
- PHP 7.2 support
- Support for "," in DN
- LAM Pro:
-> Better support for 389ds password expiration
- Fixed bugs:
-> Error on password reset page when custom fields is used (194)
19.03.2018 6.3
- Server profile: added option if referential integrity overlay is active to skip cleanup actions
- Unix: several options are now specific to subaccount types (reconfiguration required!)
- Fixed bugs:
-> Security fixes (XSS vulnerabilities CVE-2018-8763 and CSRF token in URL CVE-2018-8764)
-> Quota for Windows groups did not work
- LAM Pro:
-> Support custom structural object classes with new custom type
-> Support dynamic lists
-> Self service login and password self reset can be secured with captcha
04.02.2018 6.2.1
- Fixed bugs:
-> Login page not working when no server profile exists (44)
-> LAM Pro: Password Self Reset has issues when both security question and confirmation mail are activated.
-> LAM main configuration: certificate buttons do not work
13.12.2017 6.2
- License changed from GPL v2 to GPL v3
- PHP 5.6 and Internet Explorer 11 or later required
- PDF export supports Chinese, Japan and Korean
- Account status also shows expired accounts
- Quota: support k/m/g/t/K/M/G/T to specify values in e.g. kB
- LAM Pro:
-> Cron jobs include better logging and support dry-run
19.09.2017 6.1
- Automatically trim input fields to avoid trailing/leading spaces
- LAM Pro:
-> Custom fields: support wildcards in text fields such as $firstname
-> Custom fields: specify minimum/maximum count for multi-value entries
-> Custom fields: new type for constant values
- Fixed bugs:
-> Password modify page reports error on password change when posixAccount is present for users
-> Nginx configuration files did not include "fastcgi_param SCRIPT_FILENAME $request_filename;" (193)
20.07.2017 6.0.1
- Fixed bugs:
-> Configuration file fills up with empty values
-> Tool visibility settings
26.06.2017 6.0
- Support multiple configurations for same account type
- PHP 7.1 compatibility
- Courier users and mail aliases
- Windows: Support unlocking of users with too many failed login attempts
- Samba 3: added account expiration date to PDF fields
- LAM Pro:
-> Custom fields: can be used for file upload
-> Custom fields: new selection list type that gets options from LDAP search
-> Kopano support
15.03.2017 5.7
- 2-factor authentication for admin login and self service with privacyIDEA
- PDF files use DejaVu serif font for better readability and more supported characters (e.g. Cyrillic)
- Windows users: the department option now uses attribute "department" instead of "departmentNumber"
- Updated Debian dependencies
- Fixed bugs:
-> Comparison issue prevents saving of values (185)
18.12.2016 5.6
- New mechanism to replace wildcards in user edit screen. Personal/Unix support more wildcards like "$firstname".
- Windows: added support for pager, otherPager, mobile, otherMobile, company and proxyAddresses (disabled by default in server profile)
- Mail routing: enable for groups and allow to add/remove the extension
- LAM Pro:
-> Password self reset: support for up to 3 security questions
-> 389ds: new wildcards for custom scripts: $INFO.389lockingStatusChange$ and $INFO.389deactivationStatusChange$
-> Custom scripts: custom button label supported for manual scripts
10.09.2016 5.5
- Windows: allow to show effective members of a group
- Lamdaemon: support SSH key authentication
- LAM Pro:
-> Group of names/members + roles: allow to show effective members of a group
-> Cron jobs:
* Move or delete expired accounts (Shadow, Windows, qmail, FreeRadius)
* 389ds: added job to notify before password expires
-> 389ds: manage password expiration time with module "Account locking"
- Fixed bugs:
-> PHP 7 issues on edit page
21.06.2016 5.4
- Unix: support magic numbers for UIDs/GIDs (e.g. 389 server DNA plugin)
- Samba 3: support for Samba password history (RFE 133)
- LAM Pro:
-> New module for 389ds unlocking and account (de)activation
-> Self registration: support for Google reCAPTCHA
-> Password notification jobs support CC and BCC
-> Self Service: Samba 3 supports password history and minimum age check
21.03.2016 5.3
- Requires PHP 5.4.0 or higher
- PHP 7 support
- Windows: support management of fax number
- Login can show display name instead of server URL
- Personal/Unix: support K5KEY hash type for smbk5pwd
- New NIS netgroup module for hosts
- Puppet: autocompletion for classes and variables, allow to enforce list of possible classes
- Fixed bugs:
-> Autoload errors in tree view
-> Set correct content type on JSON requests (174)
- LAM Pro:
-> Support for LDAP views based on nsview object class
-> Password notification jobs support to print expiration date in email
-> PPolicy password notification job takes pwdExpireWarning into account
-> Custom fields: support calendar fields
-> Zarafa contacts: allow to create contacts without Unix extension
-> Added options for password rest page to server profile
15.12.2015 5.2
- Windows: support for additional attributes (jpegPhoto, title, carLicense,
employeeNumber, employeeType, businessCategory, departmentNumber, ou, o, manager)
- SSH public key: added possibility to add/remove SSH extension
- MIT Kerberos: set krbExtraData for new accounts
- IMAP: allow to specify initial folders to create
- LAM Pro:
-> Users: allow to manage IP addresses with ipHost module
-> Self Service: added time zone setting in self service profile
-> Shadow: added job to notify before Shadow password expires
-> Windows: added job to notify before Windows password expires
31.08.2015 5.1
- IMAP: support Windows users
- SSH public key: check uploaded files if in right format
- LAM Pro:
-> Self Service optimized also for mobile devices
-> MySQL support for cron jobs
-> Self registration: support auto-numbering for attributes (e.g. to create Unix accounts)
30.06.2015 5.0
- Microsoft IE 8 no longer supported
- Security: added CSRF protection
- NIS net groups: user module to manage NIS net groups on user page
- Zarafa users: allow to change display format of "Send As"
- User list: support to filter by account status
- Lamdaemon: update group of home directory if user's primary group changes
- Personal: allow to add ou=addressbook subentry for users (RFE 117)
- Unix: support auto-UID/GID with msSFU30DomainInfo
- Windows groups: support editing of member of
- Central time zone setting in server profile
- LAM Pro:
-> Cron job to notify users before password expires (PPolicy)
-> Password Self Reset: added 389 Directory Server schema file
-> Support for groupOfMembers (RFE 121)
-> Rfc2307bis Unix groups: added option to force syncing with group of names
31.03.2015 4.9
- Requires PHP 5.3.2 or higher
- Templates for server profiles
- Unix/Personal: support SASL as password hash type
- PDF export: added option to print primary group members
- Use HTTP_X_REAL_IP/HTTP_X_FORWARDED_FOR to log IP addresses (RFE 120)
- LAM Pro:
-> Personal: support image file size limit and cropping (requires php-imagick) in self service
-> Password self reset: allow to enter custom security questions (RFE 115)
-> Unix groups (rfc2307bis): allow to sync members from group of (unique) names (RFE 116)
-> Self Service: support password change with old password (requires PHP >= 5.4.26)
- Fixed bugs:
-> Self Service shows password reuse error after password change was required
16.12.2014 4.8
- Active Directory: support paged result as workaround for size limit exceeded
- FreeRadius: support dialupAccess and radiusProfileDn
- Usability improvements
- LAM Pro:
-> Self service: added option if referrals should be followed
- fixed bugs:
-> missing LDAP_DEREF_NEVER in some cases (169)
07.10.2014 4.7.1
- fixed bugs:
-> Blank page and "User tried to access entry of type ..." log message when DN suffix does not exactly match case in LDAP
28.09.2014 4.7
- Nginx webserver support
- DHCP: support pooling of IP ranges (RFE 107)
- Personal: support pager attribute (hidden by default)
- Renamed config/lam.conf_sample to lam.conf.sample and config.cfg_sample to config.cfg.sample
- LAM Pro:
-> Password dialog: preset alternate email address with backup email address (RFE 111)
12.06.2014 4.6
- Unix groups: allow to disable membership management
- Extended LAM's internal password policies
- Lamdaemon: move home directory on server if changed
- Password policy check during typing
- LAM Pro:
-> Password self reset and user self registration support to set a header text
-> Sudo roles: support latest schema
-> Bind DLZ: automatic PTR management (disabled by default) and better formatting of e.g. TTL values
18.03.2014 4.5
- IMAP: allow dynamic admin user names by replacing wildcards with LDAP attributes
- Personal: allow to set fields read-only
- NIS mail aliases can be managed on user page
- Added option to server profile if referrals should be followed (fixes problems with Samba 4 and AD)
- Windows user/group: NIS support (msSFU30NisDomain, msSFU30Name)
- LAM Pro:
-> Allow to set single account types read-only
-> Support for organizationalRole entries
-> Separate IP restriction list for self service
-> Bind DLZ: support TXT/SRV records
-> Self Service: added language selection
-> Password self reset: support backup email address
-> Custom fields: support help texts
-> Support for Oracle databases (orclNetService) (RFE 104)
- fixed bugs:
-> PDF export for multiple entries does not work (163)
-> Personal: fixed photo upload if Imagick is not installed (161)
-> Use account filters for Unix membership management (165)
18.12.2013 4.4
- PyKota support: users, groups, printers, billing codes
- Kolab shared folder support
- New tool "Multi edit" allows LDAP operations on a large number of entries (e.g. adding attributes)
- Allow to set a custom label for each account type
- Unix: switch also additional membership if primary group is changed (RFE 108)
- Windows: fixed user name handling, sAMAccountName now optional
- Apache 2.4 support (requires Apache "version" module)
- Added Turkish, Ukrainian and US English translation
- LAM Pro:
-> Bind DLZ support
-> Samba/Shadow: display password change date in self service
-> Custom fields: support custom label and icon, auto-completion
-> User self registration: support constant attribute values
-> Self service: allow to set custom field labels
- Fixed bugs:
-> Format of photo in Personal tab (158)
25.09.2013 4.3
- Custom SSL CA certificates can be setup in LAM main configuration
- Unix user and group support for Samba 4
- Samba 3 groups: support local members
- Kolab: support group accounts and allowed senders/receivers for users
- SSH public key: support file upload and self service enhancements (RFE 101)
- DHCP: support more options (RFE 99)
- LAM Pro:
-> PPolicy: check password history for password reuse
-> Custom fields: read-only fields for admin interface and file upload for binary data
-> Custom scripts: support user self registration
-> Password self reset: Samba 3 sync, identification with login attribute, Samba 4 support
- Fixed bugs:
-> Custom fields: auto-adding object classes via profile editor fixed
-> PHP 5.5 compatibility
-> Lamdaemon: do not show message if home directory to delete was not found (154)
18.06.2013 4.2.1
- Fixed bugs:
-> Unix: suggested user name must be lower case
-> Quota: profile editor does not work in some cases
04.06.2013 4.2
- Samba 4 support: users, groups, hosts
- Unix: allow to change format for suggested user name
- LAM Pro:
-> Zarafa support for Samba 4
-> allow to hide buttons to create/delete entries for each account type
-> Password self reset: support new identification methods: user, email, user or email, employee number
-> Custom fields: support PDF, profiles and multi-value text fields
-> Personal: support password mail sending in file upload
19.03.2013 4.1
- Updated EDU person module (RFE 3599128)
- Personal: allow management of user certificates (RFE 1753030)
- Unix: Support Samba Unix Id pool for automatic UID/GID generation
- DHCP: support separated dhcpServer and dhcpService entries
- LAM Pro:
-> Support Qmail groups
- Fixed bugs:
-> changed user and group size limits (3601649)
06.01.2013 4.0.1
- support additional LDAP filters for account types
- allow to hide account types (that are required by other account types)
- fixed bugs:
-> missing directories config/pdf and config/profiles on fresh installations
17.12.2012 4.0
- account profiles and PDF structures are now bound to server profile
- IMAP: support "/" as path separator (RFE 3575692)
- show server profile name on config pages (RFE 3579768)
- LAM Pro:
-> Custom fields for admin interface
-> MIT Kerberos support
-> Qmail user support
25.09.2012 3.9
- Kolab 2.4 support
- Puppet support
- LAM Pro
-> support RFC2307bis automount entries
-> read-only fields in self service
- fixed bugs
-> Hidden tools are still shown on the "Tools" page (3546092)
19.07.2012 3.8
- quick (un)lock for users
- allow to disable tools
- LAM Pro:
-> Custom fields module allows to manage custom LDAP attributes in Self Service
-> Self service now supports user self registration
-> Separate group of names module for users allows to manage memberships if Unix module is not used (RFE 3504429)
-> Named object module for groups (used for rfc2307bis schema)
-> Password change page allows account (un)locking
-> Allow to send password mails on user edit page
-> Custom scripts: supports manual scripts that can be run from account edit pages
-> Zarafa 7.1 support (proxy URL for servers)
- fixed bugs
-> Asterisk extensions with same name (3528288)
25.03.2012 3.7
- Login: support bind user for login search
- Personal: added labeledURI and cosmetic changes, description is now multi-valued (RFE 3446363)
- Asterisk extensions: group extension entries by name and context
- File upload:
-> support custom scripts postCreate (LAM Pro)
-> PDF export
- New translation: Slovakian
- removed phpGroupWare support (project no longer exists)
- Use new password after self password change (RFE 3446350)
- LAM Pro:
-> Password self reset can send password confirmation and notification mails
-> Zarafa archiver support
-> Heimdal Kerberos support
- Fixed bugs:
-> DHCP: error message not displayed properly (3441975)
-> Profile loading not possible if required fields are not filled (3444948)
-> Tree view: unable to add object class (3446037)
-> Edit page: unable to move accounts to different OU
-> Self Service: support forced password changes (PPolicy) (3483907)
-> XSS security patch (3496624)
23.11.2011 3.6.1
- LAM Pro: fixed password reset function
22.11.2011 3.6
- support HTTP authentication for admin pages and self service
- new modules
-> authorizedServiceObject
-> FreeRadius
- LAM Pro
-> added password self reset feature
-> Zarafa 7 support
-> Zarafa support for dynamic groups, address lists and contacts
-> Unix: group of names can be managed on user edit page
- Fixed bugs:
-> Unix: check for upper-case characters in user name (3416180)
09.08.2011 3.5.0
- New modules:
-> "General information": shows internal data about accounts (e.g. creation time)
-> "Quota": manage filesystem quota inside LDAP (Linux DiskQuota) (RFE 1811449)
- Personal: New attributes o, employeeNumber, initials
- Unix: Support to create home directories on multiple servers and also for existing users
- Server information shows data from cn=monitor
- Lots of small improvements
- LAM Pro:
-> Automount: allow to create automount maps
-> Password policy: allow to (un)lock accounts
- Fixed bugs:
-> Owner attribute is multi-valued (3300727)
2011-04-25 3.4.0
- IMAP mailboxes:
-> support to read user name from uid attribute
-> added quota management
- Personal: added additional options for account profiles
- Mail aliases: sort recipients (RFE 3170336)
- Asterisk: support all attributes (can be disabled in configuration)
- Samba 3/Shadow: allow to sync expiration date (RFE 3147751)
- LAM Pro:
-> support automount entries
-> Zarafa groups: allow combination with group of names
-> enhanced wildcards for custom scripts
-> Group of (unique) names: allow members to be optional
- Fixed bugs:
-> Renaming of default profile (3183920)
-> Profile editor: fixed problems with multi select
12.02.2011 3.3.0
- additional usability enhancements
- new IMAP module ("Mailbox (imapAccess)") allows to create/delete user mailboxes
- LAM Pro: enhanced Zarafa to support users and groups for "Send as" (new configuration option)
- PDF export: higher resolution for logos
- reduced number of LDAP queries
- lamdaemon: support journaled quotas
- Fixed bugs:
-> ignore comment lines in shells file (3107124)
-> home directory creation on file upload
28.10.2010 3.2.0
- large usability enhancements
- Shadow: allow to force password change when maximum password age is set
- DHCP: renamed module "Fixed IPs" to "Hosts", IP is now optional (3038797)
- PHP version 5.2.4 or higher required
- LAM Pro:
-> Zarafa support (user, group, server)
-> Password policy: allow to force password change (RFE 3026940)
-> Password reset page: mail subject, text and from address can be set in server profile
-> Self service: Asterisk (voicemail) password synchronisation
- Fixed bugs:
-> Email check did not include "+" (3033605)
-> Tab index on login page (3042622)
04.07.2010 3.1.1
- LAM Pro: fix for user self service
25.06.2010 3.1.0
- usability improvements
- Asterisk voicemail support
- new hosts module for user accounts to define valid login workstations (replaces inetOrgPerson schema hack) (2951116)
- PDF editor: descriptive fields
- lamdaemon:
-> sudo entry needs to be changed to ".../lamdaemon.pl *"
-> replaced PHP SSH2 with phpseclib
- LAM Pro
-> custom scripts: new options to hide executed commands and define if output is HTML or plain text
-> support sudo entry management (object class sudoRole)
- fixed bugs:
-> Asterisk password handling (patch 2979728)
-> Samba domain SID check (2994528)
-> language selection at login (2996335)
24.03.2010 3.0.0
- support to remove extension from an existing account: shadowAccount, sambaSamAccount, eduPerson
- file upload: allow to select account modules for upload
- removed frames
- Unix: automatic user name generation from first and last name (2492675)
- LAM Pro:
-> support OpenLDAP password policies (ppolicy)
-> manage host IP addresses (ipHost)
- fixed bugs:
-> Multi-delete not working (2931458)
-> Samba: can/must change password needs to be read from domain policy (2919236)
-> DNs which include "#" are not editable/deletable (2931461)
-> fixed configure/Makefile
-> Asterisk input fields and authentication realm (patch 2971792)
16.12.2009 2.9.0
- Asterisk support
- new tool: server information
- consolidated LAM documentation in new manual (docs/manual/index.html)
- DHCP: add host name to fixed IPs (RFE 2898948)
- LAM Pro:
-> enabled custom scripts for self service
-> support for nisObject object class
- fixed bugs:
-> unable to edit accounts with DNs that contain spaces next to a comma (2889473)
-> login method "LDAP search" has problems if LDAP server is down (2889414)
-> filter in account lists did not support non-ASCII letters
-> alias handling (2901248)
-> DHCP range check (2903267)
28.10.2009 2.8.0
- ability to hide fields: inetOrgPerson, sambaSamAccount
- compatibility with PHP 5.3
- one central button to change passwords on account pages
- removed support for Samba 2 accounts
- removed lamdaemonOld script
05.08.2009 2.7.0
- LAM Pro: allow to execute custom scripts
- log client IP at login attempt
- added separate configuration option to enable/disable TLS encryption
- Samba 3: allow to disable LM hashes (on by default) (RFE 2657140)
- DHCP: added description field and reordered fixed IP input fields
- fixed bugs:
* added additional check for creating home directories (2798489)
* support memcache for session storage (2811505)
08.04.2009 2.6.0
- support NIS netgroups
- support EDU person accounts (RFE 1413731)
- Personal: support departmentNumber attribute
- DHCP: allow file upload
- added config option to search LAM login users in LDAP (RFE 2494249)
- help messages are displayed as tooltips
- LAM Pro:
-> add businessCategory to self service (RFE 2494246)
-> allow to customize page headers and use custom CSS styles
21.01.2009 2.5.0
- LAM Pro:
-> supports rfc2307bis schema for Unix groups (RFE 2111694)
-> added alias management (object classes alias + uidObject) (RFE 1912779)
- Shadow: module is now optional when creating new accounts
- Kolab:
-> account extension is now optional
-> can be used without Unix module
-> self service uses no extra LDAP suffix but uses global setting
- DHCP:
-> several bugfixes
-> added PDF support
-> support multiple Netbios name servers (RFE 2180179)
- Samba 3:
-> self service sets attribute "sambaPwdLastSet" on password change (LAM Pro)
-> password timestamps can be updated on password reset page (LAM Pro)
-> option to force password change on next login
-> profile options for time when the user can/must change the password
15.10.2008 2.4.0
- added DHCP management (donated by Siedl networks GmbH)
- requires PHP 5.1.2
- MHash dependendy replaced by Hash
- save last selected server profile from login page
- lamdaemon: allow to specify SSH port
- lamdaemon: added Syslog logging
- Unix: added profile options for lamdaemon
- LAM Pro: password reset page is able to unlock Samba accounts and sets shadowLastChange
- fixed bugs:
* problems with DN containing ( and ) (2059740)
* problem with gecos field in file upload (2103936)
30.04.2008 2.3.0
- added Polish translation
- support phpGroupWare accounts
- password policies
- redesigned PDF editor
- show mail addresses as link in account list
- Unix: allow primary group members to be added as memberUid
- Kolab: support LAM Pro self service
- LAM Pro: new account type for groupOf(Unique)Names
- fixed bugs:
-> XHTML headers should be removed (1912736)
23.01.2008 2.2.0
- account lists:
-> allow to switch sorting
-> added separate configuration page and store settings in cookies
-> list size can now be set individually for each account type on the list configuration page
-> new PDF buttons
- use suffix from account list as default for new accounts (patch 1823583)
- Security: passwords in configuration files are now saved as hash values
- improved design
- style fixes for Internet Explorer users
- Unix: allow to set host passwords (RFE 1754069)
- Unix: allow to generate random passwords for users
- Samba 3 groups: Samba part is now optional
- Personal: add object classes person and organizationalPerson for new accounts (RFE 1830033)
- new LDAP schema check on tests page
- LAM Pro:
-> added possibility for deskside support to reset passwords at account list page
-> access levels (read only, change passwords, write access) for server profiles
07.11.2007 2.1.0
- tabular design for account pages
- show DN on account pages
- Samba 3: made Samba account optional
- Samba 3: manages now terminal server settings
- fixed bugs:
-> LAM Pro: UTF-8 characters are invalid displayed on configuration page (1788752)
-> LAM works again on PHP 5.1.x (1792447)
-> Quota: managing group quotas does not work (1811728)
-> Samba 3 domains: lockout users after bad logon attempts must allow 0 - 999 (1814578)
08.08.2007 2.0.0
- new translations: Chinese (Simplified), Czech and Portuguese
- usability improvements
- LDAP accounts including child entries can now be moved
- group list can show primary members (RFE 1517679 and patch 1722460)
- more translated example texts (RFE 1702140)
- inetOrgPerson: now manages homePhone, roomNumber, businessCategory
- posixAccount: allow to create home directories in file upload (RFE 1665034)
- account lists: display buttons on top and bottom (RFE 1702136)
- fixed bugs:
-> OU editor: help images (1702132)
-> config editor: extra space (1702269)
-> fixed some inconsistent help entries (1694863)
-> user list: refreshing GID translation did not work (1719168)
-> allow uid as RDN attribute for inetOrgPerson (1740499)
-> PHP Warning: mcrypt_decrypt(): The IV parameter must be ... (1742543)
-> uid attribute no longer required for InetOrgPerson (1757215)
28.03.2007 1.3.0
- improved design
- user list can now display jpegPhoto attributes
- lamdaemon: support for multiple servers
- LAM Pro: users may change their photos (jpegPhoto)
- fixed bugs:
-> ShadowAccount: PDF entry for expire date was wrong (1658868)
-> Samba groups: fixed help entry (patch 1664542)
-> Debian package did not include lamdaemonOld.pl (1660493)
-> NIS mail aliases: allow more characters in alias name (1674198)
-> fixed syntax errors in some .htaccess files
-> security fix: HTML special characters in LDAP data were not escaped
Developers:
API changes:
- added listPrintTableCellContent() to class lamList
- added listPrintAdditionalOptions() to class lamList
- added preModifyActions() to class baseModule
- added postModifyActions() to class baseModule
- added preDeleteActions() to class baseModule
- added postDeleteActions() to class baseModule
24.01.2007 1.2.0
- Samba 3: better handling of date values
- Samba 3: Handling of locked accounts (RFE 1609076)
- LAM Pro: modules can define configuration settings (Unix: password hashing)
- LAM Pro: management of groupOfNames and groupOfUniqueNames entries (RFE 875482)
- fixed bugs:
-> Lamdaemon test did not work on PHP 4
-> InetOrgPerson: Problems with error messages (1628799)
Developers:
API changes:
- removed get_configDescription() from module interface
- added functions to handle configuration settings for LAM Pro
01.11.2006 1.1.1
- Lamdaemon: added test page (Tools -> Tests -> Lamdaemon test)
- LAM Pro: Samba passwords can now be synchronized with Unix password
- Shadow account: better management of expiration date
- fixed bugs:
-> Unix: password hashing problem (1562426)
-> Unix: No error message for wrong UID numbers in file upload
-> Filters in account lists get lost when sorting the table
20.09.2006 1.1.0
- Lamdaemon now uses the SSH implementation from PECL which is much more stable
- Samba 2/3: "Use Unix password" now on by default (1517678)
Developers:
API changes:
- removed $post parameters from module functions (delete_attributes(),
process_...(), display_html_...()). Use $_POST instead.
- process_...() functions: returned messages are no longer grouped
(e.g. return: array(array('INFO', 'headline', 'text'), array('INFO', 'headline2', 'text2')))
10.08.2006 1.0.4
- added Russian translation
- Samba 3: added policies for domain objects
- inetLocalMailRecipient: print warning if local address is already in use
05.07.2006 1.0.3
04.07.2006 1.0.3
- fixed bugs:
-> Kolab: fixed problem with message about missing password
-> Unix groups: fixed auto GID
@ -846,7 +26,7 @@ September 2020
- security: LAM checks the session id and client IP
- fixed bugs:
-> Samba 3: hash values were wrong in some rare cases (1440021)
-> Samba 3: re-added time zone selection for logon hours (1407761)
-> Samba 3: readded time zone selection for logon hours (1407761)
-> Unix: call of unknown function (1450464)
@ -898,7 +78,7 @@ September 2020
- fixed bugs:
-> creation of home directories did not work
-> allow spaces in profile names (1333058)
-> fixed problem with magic_quotes_gpc in profile editor (1333069)
-> fixed problem with magic_quotes_gpc in profile editor (1333069)
-> inetOrgPerson: deletion of postal address and fax number now works
@ -983,7 +163,7 @@ September 2020
-> dynamic configuration options (based on modules)
- all pages in UTF-8
- added developer documentation
- PHPDoc formatted comments
- PHPDoc formated comments
- new plugin for managing MAC addresses (RFE 926017)
- new plugin for managing NIS mail aliases (RFE 1050036)
- new plugin for managing mail routing with inetLocalMailRecipient (RFE 1092137)
@ -1045,7 +225,7 @@ September 2020
if magic_quotes_gpc in php.ini is was set to "Off", several pages did not work
some smaller bugs in mass upload
Samba hash values for hosts were not correct
Unix passwords could be disabled but not re-enabled
Unix passwords could be disabled but not reenabled
fixed problem with eval() in status.inc (894433)
@ -1068,7 +248,7 @@ September 2020
- better error handling at login
- support spaces in DNs
- PDF text for users
- create missing OUs recursively
- create missing OUs recursivly
- fixed bugs:
SMD5 passwords were wrong
primaryGroupSID wrong if SID has no relation to Algorithmic RID Base

66
lam/INSTALL Normal file
View File

@ -0,0 +1,66 @@
Installation Instructions for LAM
---------------------------------
1. Requirements
- Apache webserver (SSL optional) with installed PHP-Module (PHP-Module with
ldap, gettext, xml, mcrypt+mhash optional)
- Perl (optional, needed only for lamdaemon)
- OpenLDAP (>2.0)
- A web browser :-)
MHash is only needed if you use PHP < 4.3 and if you want to use SHA or SSHA
for password hashes.
MCrypt will be used to store your LDAP password encrypted in the session file.
Getting mcrypt and mhash for Suse/RedHat:
Either you compile PHP4 yourself or you use some unofficial packages:
- Suse: ftp://ftp.suse.com/pub/people/poeml/mod_php4
- RedHat: http://ftp.horde.org/pub/RPMS
See docs/README.schema.txt for information about used LDAP schema files.
2. Installation
1. Extract package with:
tar xzf ldap-account-manager-<version>.tar.gz
2a. Copy the files into the html-file scope of the webserver. For example
/apache/htdocs.
Set appropriate file permissions:
- lam/sess: write permission for apache user
- lam/tmp: write permission for apache user
- lam/config (with subdirectories): write permission for apache user
- lam/lib: lamdaemon.pl must be set executable (See also
docs/readme.lamdeamon.txt)
2b. You can also use the included configure script to install LAM. See
"./configure --help" for a list of install options.
3. Configure config.cfg and create a configuration profile.
Copy config.cfg_sample to config.cfg and set the master password and default
profile.
Open the index.html in your web browser:
- Follow the link "Configuration Login" from the start page.
(The default password to edit the options is "lam")
- Select the default lam profile or create a new profile.
- Change the settings to fit your environment.
3. Setting up PHP
LAM runs with PHP4 or PHP5.
Needed changes in your php.ini:
* memory_limit = 32M

View File

@ -3,25 +3,69 @@ LAM - Readme
============
LDAP Account Manager (LAM) manages user, group and host accounts in an LDAP
directory. LAM runs on any webserver with PHP7 support and connects to your
directory. LAM runs on any webserver with PHP4/5 support and connects to your
LDAP server unencrypted or via SSL/TLS.
Currently LAM supports these account types: Samba 3/4, Unix, Kolab,
Currently LAM supports these account types: Samba 2 and 3, Unix, Kolab 2,
address book entries, NIS mail aliases and MAC addresses. There is a tree
viewer included to allow access to the raw LDAP attributes. You can use
templates for account creation and use multiple configuration profiles.
LAM is translated to Catalan, Chinese (Traditional), Dutch, English, French,
German, Hungarian, Italian, Spanish and Japanese.
https://www.ldap-account-manager.org/
http://sourceforge.net/projects/lam/
Copyright (C) 2003 - 2020 Roland Gruber <post@rolandgruber.de>
Copyright (C) 2003 - 2006 Michael Duergner <michael@duergner.com>
Roland Gruber <post@rolandgruber.de>
Tilo Lutz <tilolutz@gmx.de>
Installation and documentation:
Please see the LAM manual in docs/manual/index.html.
Requirements:
PHP4/5
Openldap (2.0 or greater)
A web-browser that supports CSS
Default password:
Summary:
With LAM you can easily manage user, group and machine accounts stored in
an LDAP directory over a web interface. At the moment it supports:
- managing user/group/host/domain entries
- filtering and sorting
- account profiles
- multiple configuration profiles
- tree viwer
- schema browser
- OU Editor
- account creation via file upload
- PDF export for all accounts
- manage user/group Quota and create home directories
Important:
The default password to edit the configuration options is "lam".
Installation:
Please see the INSTALL file.
Documentation:
Basic documentation is available in the directory "docs".
Upgrade from older versions:
See docs/README.upgrade.txt for upgrade instructions.
Internationalisation:
If you want to use a translated version of LAM be sure to install the
needed locales. See locale/ for a list of supported locales and languages.
Debian users can add locales with "dpkg-reconfigure locales".
Security:
It is strongly recommended to use a SSL connection to your web server.
LAM needs to store your LDAP user name + password in the session. The session
files are saved in sess/ and are accessible only by the web server. To increase
security username and password are encrypted with MCrypt/AES if available.
The key and IV are generated at random when you log in. They are stored in two
cookies.
Download:
You can get the newest version at https://www.ldap-account-manager.org/.
You can get the newest version at http://lam.sourceforge.net/.
License:
LAM is published under the GNU General Public License.
@ -29,4 +73,4 @@ LAM - Readme
Have fun!
The LAM development team
The LAM devel team

9
lam/TODO Normal file
View File

@ -0,0 +1,9 @@
1.0 and later
- lamdaemon without Perl
1.1
- full integration of phpLDAPadmin

View File

@ -1 +1 @@
7.3.RC1
1.0.3

View File

@ -1,3 +0,0 @@
#!/bin/bash
~/.local/bin/codespell --skip '*3rdParty*,*/ckeditor/*,*/po/*,*/locale/*,tmp,sess,config,graphics,*/style/images/*,*/style/*.gif,*/style/*.png,*/docs/manual-onePage/*,*/docs/manual-sources/images/*,*/templates/lib/*jquery*,*~,*/docs/phpdoc/*,*/docs/manual/*,*/docs/devel/images/*,*/docs/manual-pdf/*,*.sh,*/cropper.js,*/lib/extra/duo/*' --ignore-words-list "tim,te,pres,files'"

View File

@ -1,18 +0,0 @@
{
"config": {
"vendor-dir": "lib/3rdParty/composer"
},
"repositories": [
{
"type": "pear",
"url": "https://pear.horde.org"
}
],
"require" : {
"web-auth/webauthn-lib" : "2.1.7",
"symfony/http-foundation" : "5.0.7",
"symfony/psr-http-message-bridge" : "1.3.0",
"pear-pear.horde.org/Horde_Imap_Client" : "2.30.1",
"phpmailer/phpmailer": "~6.1"
}
}

1804
lam/composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +0,0 @@
d_*
config.cfg
/serverCerts.pem
/pdf/
/profiles/
*.sqlite

View File

@ -1,3 +1,4 @@
<Files *>
Require all denied
<Files ~ *>
Order allow,deny
Deny from all
</Files>

View File

@ -1,206 +0,0 @@
# LDAP Account Manager configuration
#
# Please do not modify this file manually. The configuration can be done completely by the LAM GUI.
#
###################################################################################################
# server address (e.g. ldap://localhost:389 or ldaps://localhost:636)
ServerURL: ldap://localhost:389
# list of users who are allowed to use LDAP Account Manager
# names have to be seperated by semicolons
# e.g. admins: cn=admin,dc=yourdomain,dc=org;cn=root,dc=yourdomain,dc=org
Admins: cn=Manager,dc=my-domain,dc=com
# password to change these preferences via webfrontend (default: lam)
Passwd: lam
# suffix of tree view
# e.g. dc=yourdomain,dc=org
treesuffix: dc=yourdomain,dc=org
# default language (a line from config/language)
defaultLanguage: en_GB.utf8
# Path to external Script
scriptPath:
# Server of external Script
scriptServer:
# Access rights for home directories
scriptRights: 750
# Number of minutes LAM caches LDAP searches.
cachetimeout: 5
# LDAP search limit.
searchLimit: 0
# Module settings
modules: posixAccount_user_minUID: 10000
modules: posixAccount_user_maxUID: 30000
modules: posixAccount_host_minMachine: 50000
modules: posixAccount_host_maxMachine: 60000
modules: posixGroup_group_minGID: 10000
modules: posixGroup_group_maxGID: 20000
modules: posixGroup_pwdHash: SSHA
modules: posixAccount_pwdHash: SSHA
# List of active account types.
activeTypes: user
types: suffix_user: ou=People,dc=my-domain,dc=com
types: attr_user: #uid;#givenName;#sn;#mail
types: modules_user: inetOrgPerson
types: suffix_group: ou=group,dc=my-domain,dc=com
types: attr_group: #cn;#gidNumber;#memberUID;#description
types: modules_group: posixGroup
# Password mail subject
lamProMailSubject: Your password was reset
# Password mail text
lamProMailText: Dear @@givenName@@ @@sn@@,+::++::+your password was reset to: @@newPassword@@+::++::++::+Best regards+::++::+deskside support+::+
# enable TLS encryption
useTLS: yes
# follow referrals
followReferrals: false
# paged results
pagedResults: false
# Access level for this profile.
accessLevel: 100
# Login method.
loginMethod: list
# Search suffix for LAM login.
loginSearchSuffix: dc=yourdomain,dc=org
# Search filter for LAM login.
loginSearchFilter: uid=%USER%
# Bind DN for login search.
loginSearchDN:
# Bind password for login search.
loginSearchPassword:
# HTTP authentication for LAM login.
httpAuthentication: false
# Password mail from
lamProMailFrom:
# Password mail reply-to
lamProMailReplyTo:
# Password mail is HTML
lamProMailIsHTML: false
# Allow alternate address
lamProMailAllowAlternateAddress: true
modules: inetOrgPerson_hideDescription: false
modules: inetOrgPerson_hideStreet: false
modules: inetOrgPerson_hidePostOfficeBox: false
modules: inetOrgPerson_hidePostalCode: false
modules: inetOrgPerson_hideLocation: false
modules: inetOrgPerson_hideState: false
modules: inetOrgPerson_hidePostalAddress: false
modules: inetOrgPerson_hideRegisteredAddress: false
modules: inetOrgPerson_hideOfficeName: false
modules: inetOrgPerson_hideRoomNumber: false
modules: inetOrgPerson_hideTelephoneNumber: false
modules: inetOrgPerson_hideHomeTelephoneNumber: false
modules: inetOrgPerson_hideMobileNumber: false
modules: inetOrgPerson_hideFaxNumber: false
modules: inetOrgPerson_hidePager: true
modules: inetOrgPerson_hideEMailAddress: false
modules: inetOrgPerson_hideJobTitle: false
modules: inetOrgPerson_hideCarLicense: false
modules: inetOrgPerson_hideEmployeeType: false
modules: inetOrgPerson_hideBusinessCategory: false
modules: inetOrgPerson_hideDepartments: false
modules: inetOrgPerson_hideManager: false
modules: inetOrgPerson_hideOu: false
modules: inetOrgPerson_hideO: false
modules: inetOrgPerson_hideEmployeeNumber: false
modules: inetOrgPerson_hideInitials: false
modules: inetOrgPerson_hideLabeledURI: false
modules: inetOrgPerson_hideuserCertificate: false
modules: inetOrgPerson_hidejpegPhoto: false
modules: inetOrgPerson_hideUID: false
modules: inetOrgPerson_readOnly_businessCategory: false
modules: inetOrgPerson_readOnly_cn: false
modules: inetOrgPerson_readOnly_employeeType: false
modules: inetOrgPerson_readOnly_postalAddress: false
modules: inetOrgPerson_readOnly_uid: false
modules: inetOrgPerson_readOnly_title: false
modules: inetOrgPerson_readOnly_description: false
modules: inetOrgPerson_readOnly_st: false
modules: inetOrgPerson_readOnly_physicalDeliveryOfficeName: false
modules: inetOrgPerson_readOnly_mail: false
modules: inetOrgPerson_readOnly_facsimileTelephoneNumber: false
modules: inetOrgPerson_readOnly_jpegPhoto: false
modules: inetOrgPerson_readOnly_carLicense: false
modules: inetOrgPerson_readOnly_labeledURI: false
modules: inetOrgPerson_readOnly_initials: false
modules: inetOrgPerson_readOnly_registeredAddress: false
modules: inetOrgPerson_readOnly_mobile: false
modules: inetOrgPerson_readOnly_sn: false
modules: inetOrgPerson_readOnly_o: false
modules: inetOrgPerson_readOnly_ou: false
modules: inetOrgPerson_readOnly_l: false
modules: inetOrgPerson_readOnly_pager: false
modules: inetOrgPerson_readOnly_userPassword: false
modules: inetOrgPerson_readOnly_employeeNumber: false
modules: inetOrgPerson_readOnly_postOfficeBox: false
modules: inetOrgPerson_readOnly_postalCode: false
modules: inetOrgPerson_readOnly_roomNumber: false
modules: inetOrgPerson_readOnly_street: false
modules: inetOrgPerson_readOnly_homePhone: false
modules: inetOrgPerson_readOnly_telephoneNumber: false
modules: inetOrgPerson_readOnly_departmentNumber: false
modules: inetOrgPerson_readOnly_manager: false
modules: inetOrgPerson_readOnly_givenName: false
modules: inetOrgPerson_jpegPhoto_maxWidth:
modules: inetOrgPerson_jpegPhoto_maxHeight:
modules: inetOrgPerson_jpegPhoto_maxSize:
types: filter_user:
types: customLabel_user:
types: filter_group:
types: customLabel_group:
types: hidden_user:
types: hideNewButton_user:
types: hideDeleteButton_user:
types: readOnly_user:
tools: tool_hide_toolServerInformation: false
tools: tool_hide_toolFileUpload: false
tools: tool_hide_toolMultiEdit: false
tools: tool_hide_toolPDFEditor: false
tools: tool_hide_toolOUEditor: false
tools: tool_hide_toolProfileEditor: false
tools: tool_hide_toolTests: false
tools: tool_hide_toolSchemaBrowser: false

View File

@ -1,12 +0,0 @@
# password to add/delete/rename configuration profiles (default: lam)
password: {SSHA}D6AaX93kPmck9wAxNlq3GF93S7A= R7gkjQ==
# default profile, without ".conf"
default: lam
# log level
logLevel: 4
# log destination
logDestination: SYSLOG

View File

@ -0,0 +1,5 @@
# password to add/delete/rename configuration profiles
password: lam
# default profile, without ".conf"
default: lam

View File

@ -0,0 +1,63 @@
# LDAP Account Manager configuration
# server address (e.g. ldap://localhost:389 or ldaps://localhost:636)
serverURL: ldap://localhost:389
# list of users who are allowed to use LDAP Account Manager
# names have to be seperated by semicolons
# e.g. admins: cn=admin,dc=yourdomain,dc=org;cn=root,dc=yourdomain,dc=org
admins: cn=Manager,dc=my-domain,dc=com
# password to change these preferences via webfrontend
passwd: lam
# suffix of tree view
# e.g. dc=yourdomain,dc=org
treesuffix: dc=yourdomain,dc=org
# maximum number of rows to show in user/group/host lists
maxlistentries: 30
# default language (a line from config/language)
defaultLanguage: en_GB.utf8:UTF-8:English (Great Britain)
# Path to external Script
scriptPath:
# Server of external Script
scriptServer:
# Number of minutes LAM caches LDAP searches.
cachetimeout: 5
# Module settings
modules: posixAccount_minUID: 10000
modules: posixAccount_maxUID: 30000
modules: posixAccount_minMachine: 50000
modules: posixAccount_maxMachine: 60000
modules: posixGroup_minGID: 10000
modules: posixGroup_maxGID: 20000
modules: posixGroup_pwdHash: SSHA
modules: posixAccount_pwdHash: SSHA
# List of active account types.
activeTypes: user,group,host,smbDomain
types: suffix_user: ou=People,dc=my-domain,dc=com
types: attr_user: #uid;#givenName;#sn;#uidNumber;#gidNumber
types: modules_user: inetOrgPerson,posixAccount,shadowAccount,sambaSamAccount
types: suffix_group: ou=group,dc=my-domain,dc=com
types: attr_group: #cn;#gidNumber;#memberUID;#description
types: modules_group: posixGroup,sambaGroupMapping
types: suffix_host: ou=machines,dc=my-domain,dc=com
types: attr_host: #cn;#description;#uidNumber;#gidNumber
types: modules_host: account,posixAccount,sambaSamAccount
types: suffix_smbDomain: ou=domains,dc=my-domain,dc=com
types: attr_smbDomain: sambaDomainName:Domain name;sambaSID:Domain SID
types: modules_smbDomain: sambaDomain

View File

@ -6,19 +6,16 @@
# the second is the character encoding and the third the language name.
# Catalan
# ca_ES.utf8:UTF-8:Català (Catalunya)
# Czech
# cs_CZ.utf8:UTF-8:Čeština (Česko)
ca_ES.utf8:UTF-8:Català (Catalunya)
# German
de_DE.utf8:UTF-8:Deutsch (Deutschland)
# GB English
en_GB.utf8:UTF-8:English (Great Britain)
# Dutch
nl_NL.utf8:UTF-8:Nederlands (Nederland)
# US English
en_US.utf8:UTF-8:English (USA)
# English
en_GB.utf8:UTF-8:English (Great Britain)
# Spanish
es_ES.utf8:UTF-8:Español (España)
@ -30,34 +27,10 @@ fr_FR.utf8:UTF-8:Français (France)
it_IT.utf8:UTF-8:Italiano (Italia)
# Hungarian
# hu_HU.utf8:UTF-8:Magyar (Magyarország)
# Dutch
nl_NL.utf8:UTF-8:Nederlands (Nederland)
# Polish
pl_PL.utf8:UTF-8:Polski (Polska)
# Portuguese
pt_BR.utf8:UTF-8:Português (Brasil)
# Russian
ru_RU.utf8:UTF-8:Русский (Россия)
# Slovakian
sk_SK.utf8:UTF-8:Slovenčina (Slovensko)
# Turkish
# tr_TR.utf8:UTF-8:Türkçe (Türkiye)
# Ukrainian
uk_UA.utf8:UTF-8:Українська (Україна)
hu_HU.utf8:UTF-8:Magyar (Magyarország)
# Japanese
ja_JP.utf8:UTF-8:日本語 (日本)
# Chinese (Traditional)
zh_TW.utf8:UTF-8:繁體中文 (台灣)
# Chinese (Simplified)
zh_CN.utf8:UTF-8:简体中文 (中国)
zh_TW.utf8:UTF-8:繁體中文(台灣)

View File

@ -0,0 +1,9 @@
<pdf type="host" headline="Host information">
<section name="_posixAccount_uid">
<entry name="main_dn" />
<entry name="posixAccount_description" />
<entry name="posixAccount_uidNumber" />
<entry name="posixAccount_primaryGroup" />
<entry name="sambaAccount_domain" />
</section>
</pdf>

View File

@ -0,0 +1,5 @@
<pdf type="mailAlias" filename="printLogo.jpg" headline="Mail alias information" margin-top="10.0" margin-bottom="20.0" margin-left="10.0" margin-right="10.0">
<section name="_nisMailAlias_alias">
<entry name="nisMailAlias_recipients" />
</section>
</pdf>

View File

@ -0,0 +1,6 @@
<pdf type="smbDomain" filename="printLogo.jpg" headline="Samba domain information" margin-top="10.0" margin-bottom="20.0" margin-left="10.0" margin-right="10.0">
<section name="_sambaDomain_domainName">
<entry name="sambaDomain_domainSID" />
<entry name="sambaDomain_RIDbase" />
</section>
</pdf>

View File

@ -0,0 +1,38 @@
<pdf type="user" headline="User information">
<text name="user" />
<section name="Personal user information">
<entry name="inetOrgPerson_title" />
<entry name="inetOrgPerson_givenName" />
<entry name="inetOrgPerson_sn" />
<entry name="inetOrgPerson_street" />
<entry name="inetOrgPerson_postalCode" />
<entry name="inetOrgPerson_postalAddress" />
<entry name="inetOrgPerson_mail" />
<entry name="inetOrgPerson_telephoneNumber" />
<entry name="inetOrgPerson_mobileTelephoneNumber" />
<entry name="inetOrgPerson_facsimileTelephoneNumber" />
</section>
<section name="Unix settings">
<entry name="posixAccount_uid" />
<entry name="posixAccount_userPassword" />
<entry name="posixAccount_primaryGroup" />
<entry name="posixAccount_additionalGroups" />
<entry name="posixAccount_homeDirectory" />
<entry name="posixAccount_loginShell" />
<entry name="shadowAccount_shadowExpire" />
<entry name="inetOrgPerson_host" />
</section>
<section name="Windows settings">
<entry name="sambaAccount_displayName" />
<entry name="sambaAccount_password" />
<entry name="sambaAccount_homeDrive" />
<entry name="sambaAccount_scriptPath" />
<entry name="sambaAccount_smbHome" />
<entry name="sambaAccount_userWorkstations" />
<entry name="sambaAccount_homePath" />
<entry name="sambaAccount_domain" />
</section>
<section name="Quota Settings">
<entry name="quota_quotas" />
</section>
</pdf>

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

View File

@ -0,0 +1,19 @@
shadowAccount_shadowWarning: 10
shadowAccount_shadowInactive: 10
shadowAccount_shadowMin: 1
shadowAccount_shadowMax: 365
sambaAccount_useunixpwd: true
sambaAccount_acctFlagsN: false
sambaAccount_acctFlagsX: true
sambaAccount_acctFlagsD: false
sambaAccount_homeDrive: U:
sambaSamAccount_useunixpwd: true
sambaSamAccount_sambaAcctFlagsN: false
sambaSamAccount_sambaAcctFlagsX: true
sambaSamAccount_sambaAcctFlagsD: false
sambaSamAccount_sambaHomeDrive: U:
sambaSamAccount_group: 513
posixAccount_homeDirectory: /home/$user
posixAccount_loginShell: /bin/bash
posixAccount_userPassword_no: false
posixAccount_userPassword_lock: false

View File

@ -1,251 +0,0 @@
# LDAP Account Manager configuration
#
# Please do not modify this file manually. The configuration can be done completely by the LAM GUI.
#
###################################################################################################
# server address (e.g. ldap://localhost:389 or ldaps://localhost:636)
ServerURL: ldap://localhost:389
# list of users who are allowed to use LDAP Account Manager
# names have to be seperated by semicolons
# e.g. admins: cn=admin,dc=yourdomain,dc=org;cn=root,dc=yourdomain,dc=org
Admins: cn=Manager,dc=my-domain,dc=com
# password to change these preferences via webfrontend (default: lam)
Passwd: lam
# suffix of tree view
# e.g. dc=yourdomain,dc=org
treesuffix: dc=yourdomain,dc=org
# default language (a line from config/language)
defaultLanguage: en_GB.utf8
# Path to external Script
scriptPath:
# Server of external Script
scriptServer:
# Access rights for home directories
scriptRights: 750
# Number of minutes LAM caches LDAP searches.
cachetimeout: 5
# LDAP search limit.
searchLimit: 0
# Module settings
modules: posixAccount_user_minUID: 10000
modules: posixAccount_user_maxUID: 30000
modules: posixAccount_host_minMachine: 50000
modules: posixAccount_host_maxMachine: 60000
modules: posixGroup_group_minGID: 10000
modules: posixGroup_group_maxGID: 20000
modules: posixGroup_pwdHash: SSHA
modules: posixAccount_pwdHash: SSHA
# List of active account types.
activeTypes: user,group,host,smbDomain
types: suffix_user: ou=People,dc=my-domain,dc=com
types: attr_user: #uid;#givenName;#sn;#uidNumber;#gidNumber
types: modules_user: inetOrgPerson,posixAccount,shadowAccount,sambaSamAccount
types: suffix_group: ou=group,dc=my-domain,dc=com
types: attr_group: #cn;#gidNumber;#memberUID;#description
types: modules_group: posixGroup,sambaGroupMapping
# Password mail subject
lamProMailSubject: Your password was reset
# Password mail text
lamProMailText: Dear @@givenName@@ @@sn@@,+::++::+your password was reset to: @@newPassword@@+::++::++::+Best regards+::++::+deskside support+::+
# enable TLS encryption
useTLS: yes
# follow referrals
followReferrals: false
# paged results
pagedResults: false
# Access level for this profile.
accessLevel: 100
# Login method.
loginMethod: list
# Search suffix for LAM login.
loginSearchSuffix: dc=yourdomain,dc=org
# Search filter for LAM login.
loginSearchFilter: uid=%USER%
# Bind DN for login search.
loginSearchDN:
# Bind password for login search.
loginSearchPassword:
# HTTP authentication for LAM login.
httpAuthentication: false
# Password mail from
lamProMailFrom:
# Password mail reply-to
lamProMailReplyTo:
# Password mail is HTML
lamProMailIsHTML: false
# Allow alternate address
lamProMailAllowAlternateAddress: true
modules: posixGroup_group_gidGenerator: range
modules: posixGroup_group_sambaIDPoolDN:
modules: posixGroup_group_gidCheckSuffix:
modules: posixGroup_group_hidememberUid: false
modules: sambaSamAccount_timeZone: 0
modules: sambaSamAccount_lmHash: yes
modules: sambaSamAccount_hideHomeDrive: false
modules: sambaSamAccount_hideHomePath: false
modules: sambaSamAccount_hideProfilePath: false
modules: sambaSamAccount_hideLogonScript: false
modules: sambaSamAccount_hideSambaPwdLastSet: false
modules: sambaSamAccount_hideWorkstations: false
modules: sambaSamAccount_hideLogonHours: false
modules: sambaSamAccount_hideTerminalServer: false
modules: posixAccount_user_uidGeneratorUsers: range
modules: posixAccount_user_sambaIDPoolDNUsers:
modules: posixAccount_user_uidCheckSuffixUser:
modules: posixAccount_host_uidGeneratorHosts: range
modules: posixAccount_host_sambaIDPoolDNHosts:
modules: posixAccount_host_uidCheckSuffixHost:
modules: posixAccount_shells: /bin/bash+::+/bin/csh+::+/bin/dash+::+/bin/false+::+/bin/ksh+::+/bin/sh
modules: posixAccount_user_hidegecos: false
modules: posixAccount_primaryGroupAsSecondary: false
modules: posixAccount_user_userNameSuggestion: @givenname@%sn%
modules: inetOrgPerson_hideDescription: false
modules: inetOrgPerson_hideStreet: false
modules: inetOrgPerson_hidePostOfficeBox: false
modules: inetOrgPerson_hidePostalCode: false
modules: inetOrgPerson_hideLocation: false
modules: inetOrgPerson_hideState: false
modules: inetOrgPerson_hidePostalAddress: false
modules: inetOrgPerson_hideRegisteredAddress: false
modules: inetOrgPerson_hideOfficeName: false
modules: inetOrgPerson_hideRoomNumber: false
modules: inetOrgPerson_hideTelephoneNumber: false
modules: inetOrgPerson_hideHomeTelephoneNumber: false
modules: inetOrgPerson_hideMobileNumber: false
modules: inetOrgPerson_hideFaxNumber: false
modules: inetOrgPerson_hidePager: true
modules: inetOrgPerson_hideEMailAddress: false
modules: inetOrgPerson_hideJobTitle: false
modules: inetOrgPerson_hideCarLicense: false
modules: inetOrgPerson_hideEmployeeType: false
modules: inetOrgPerson_hideBusinessCategory: false
modules: inetOrgPerson_hideDepartments: false
modules: inetOrgPerson_hideManager: false
modules: inetOrgPerson_hideOu: false
modules: inetOrgPerson_hideO: false
modules: inetOrgPerson_hideEmployeeNumber: false
modules: inetOrgPerson_hideInitials: false
modules: inetOrgPerson_hideLabeledURI: false
modules: inetOrgPerson_hideuserCertificate: false
modules: inetOrgPerson_hidejpegPhoto: false
modules: inetOrgPerson_readOnly_businessCategory: false
modules: inetOrgPerson_readOnly_cn: false
modules: inetOrgPerson_readOnly_employeeType: false
modules: inetOrgPerson_readOnly_postalAddress: false
modules: inetOrgPerson_readOnly_uid: false
modules: inetOrgPerson_readOnly_title: false
modules: inetOrgPerson_readOnly_description: false
modules: inetOrgPerson_readOnly_st: false
modules: inetOrgPerson_readOnly_physicalDeliveryOfficeName: false
modules: inetOrgPerson_readOnly_mail: false
modules: inetOrgPerson_readOnly_facsimileTelephoneNumber: false
modules: inetOrgPerson_readOnly_jpegPhoto: false
modules: inetOrgPerson_readOnly_carLicense: false
modules: inetOrgPerson_readOnly_labeledURI: false
modules: inetOrgPerson_readOnly_initials: false
modules: inetOrgPerson_readOnly_registeredAddress: false
modules: inetOrgPerson_readOnly_mobile: false
modules: inetOrgPerson_readOnly_sn: false
modules: inetOrgPerson_readOnly_o: false
modules: inetOrgPerson_readOnly_ou: false
modules: inetOrgPerson_readOnly_l: false
modules: inetOrgPerson_readOnly_pager: false
modules: inetOrgPerson_readOnly_userPassword: false
modules: inetOrgPerson_readOnly_employeeNumber: false
modules: inetOrgPerson_readOnly_postOfficeBox: false
modules: inetOrgPerson_readOnly_postalCode: false
modules: inetOrgPerson_readOnly_roomNumber: false
modules: inetOrgPerson_readOnly_street: false
modules: inetOrgPerson_readOnly_homePhone: false
modules: inetOrgPerson_readOnly_telephoneNumber: false
modules: inetOrgPerson_readOnly_departmentNumber: false
modules: inetOrgPerson_readOnly_manager: false
modules: inetOrgPerson_readOnly_givenName: false
modules: inetOrgPerson_jpegPhoto_maxWidth:
modules: inetOrgPerson_jpegPhoto_maxHeight:
modules: inetOrgPerson_jpegPhoto_maxSize:
types: filter_user:
types: customLabel_user:
types: filter_group:
types: customLabel_group:
types: hidden_user:
types: hideNewButton_user:
types: hideDeleteButton_user:
types: readOnly_user:
types: hidden_group:
types: hideNewButton_group:
types: hideDeleteButton_group:
types: readOnly_group:
types: hidden_host:
types: hideNewButton_host:
types: hideDeleteButton_host:
types: readOnly_host:
types: suffix_host: ou=machines,dc=my-domain,dc=com
types: attr_host: #cn;#description;#uidNumber;#gidNumber
types: filter_host:
types: customLabel_host:
types: hidden_smbDomain:
types: hideNewButton_smbDomain:
types: hideDeleteButton_smbDomain:
types: readOnly_smbDomain:
types: suffix_smbDomain: dc=my-domain,dc=com
types: attr_smbDomain: #sambaDomainName;#sambaSID
types: filter_smbDomain:
types: customLabel_smbDomain:
types: modules_host: account,posixAccount,sambaSamAccount
types: modules_smbDomain: sambaDomain
tools: tool_hide_toolServerInformation: false
tools: tool_hide_toolFileUpload: false
tools: tool_hide_toolMultiEdit: false
tools: tool_hide_toolPDFEditor: false
tools: tool_hide_toolOUEditor: false
tools: tool_hide_toolProfileEditor: false
tools: tool_hide_toolTests: false
tools: tool_hide_toolSchemaBrowser: false

View File

@ -1 +0,0 @@
d_*

View File

@ -1 +0,0 @@

17
lam/config/shells Normal file
View File

@ -0,0 +1,17 @@
/bin/ash
/bin/bash
/bin/bash1
/bin/csh
/bin/false
/bin/ksh
/bin/sh
/bin/tcsh
/bin/true
/bin/zsh
/usr/bin/csh
/usr/bin/ksh
/usr/bin/passwd
/usr/bin/bash
/usr/bin/rbash
/usr/bin/tcsh
/usr/bin/zsh

View File

@ -1 +0,0 @@
/default.publicationType.xml

View File

@ -1,6 +0,0 @@
<pdf type="alias" filename="printLogo.jpg" headline="Alias information">
<section name="_uidObject_uid">
<entry name="aliasEntry_entry" />
<entry name="main_dn" />
</section>
</pdf>

View File

@ -1,7 +0,0 @@
<pdf type="asteriskExt" filename="printLogo.jpg" headline="LDAP Account Manager">
<section name="_asteriskExtension_AstExtension">
<entry name="asteriskExtension_AstContext" />
<entry name="asteriskExtension_owners" />
<entry name="asteriskExtension_rules" />
</section>
</pdf>

View File

@ -1,6 +0,0 @@
<pdf type="automountType" filename="printLogo.jpg" headline="Automount information">
<section name="_automount_cn">
<entry name="automount_description" />
<entry name="automount_automountInformation" />
</section>
</pdf>

View File

@ -1,7 +0,0 @@
<pdf type="bind" filename="printLogo.jpg" headline="DNS information" foldingmarks="no">
<section name="_bindDLZ_dlzHostName">
<entry name="bindDLZ_aRecord" />
<entry name="bindDLZ_ptrRecord" />
<entry name="bindDLZ_mxRecord" />
</section>
</pdf>

View File

@ -1,4 +0,0 @@
<pdf type="bind" filename="printLogo.jpg" headline="Custom entry" foldingmarks="no">
<section name="_main_dn">
</section>
</pdf>

View File

@ -1,20 +0,0 @@
<pdf type="dhcp" filename="printLogo.jpg" headline="LDAP Account Manager">
<section name="_dhcp_settings_subnet">
<entry name="dhcp_settings_domainName" />
<entry name="dhcp_settings_leaseTime" />
<entry name="dhcp_settings_maxLeaseTime" />
<entry name="dhcp_settings_DNSserver" />
<entry name="dhcp_settings_gateway" />
<entry name="dhcp_settings_netbiosServer" />
<entry name="dhcp_settings_netbiosType" />
<entry name="dhcp_settings_subnetMask" />
<entry name="dhcp_settings_netMask" />
<entry name="ddns_DNSserver" />
<entry name="ddns_zone" />
<entry name="ddns_reverseZone" />
<entry name="range_ranges" />
</section>
<section name="Fixed IPs">
<entry name="fixed_ip_IPlist" />
</section>
</pdf>

View File

@ -1,8 +0,0 @@
<pdf type="gon" headline="Group information">
<section name="_groupOfNames_name">
<entry name="main_dn" />
<entry name="groupOfNames_description" />
<entry name="groupOfNames_owner" />
<entry name="groupOfNames_members" />
</section>
</pdf>

View File

@ -1,9 +0,0 @@
<pdf type="host" filename="printLogo.jpg" headline="Host information">
<section name="_posixAccount_uid">
<entry name="main_dn" />
<entry name="posixAccount_description" />
<entry name="posixAccount_uidNumber" />
<entry name="posixAccount_primaryGroup" />
<entry name="sambaSamAccount_sambaDomainName" />
</section>
</pdf>

View File

@ -1,11 +0,0 @@
<pdf type="kolabSharedFolderType" filename="printLogo.jpg" headline="Shared folder information" foldingmarks="no">
<section name="_kolabSharedFolder_cn">
<entry name="kolabSharedFolder_mailHost" />
<entry name="kolabSharedFolder_kolabTargetFolder" />
<entry name="kolabSharedFolder_kolabFolderType" />
<entry name="kolabSharedFolder_delegate" />
<entry name="kolabSharedFolder_aliases" />
<entry name="kolabSharedFolder_kolabAllowSMTPSender" />
<entry name="kolabSharedFolder_kolabAllowSMTPRecipient" />
</section>
</pdf>

Some files were not shown because too many files have changed in this diff Show More