Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Leap:42.1:Update
postfixadmin
postfixadmin.spec
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File postfixadmin.spec of Package postfixadmin
# # spec file for package postfixadmin # # Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via http://bugs.opensuse.org/ # Name: postfixadmin Version: 3.0.2 Release: 0 Url: http://postfixadmin.sourceforge.net/ Source0: http://sourceforge.net/projects/postfixadmin/files/postfixadmin/%{name}-%{version}/%{name}-%{version}.tar.gz BuildArch: noarch # Web interface %if 0%{?fedora} || 0%{?rhel_version} || 0%{?centos_ver} # Requires: mod_php_any # no idea in which fedora package mod_php5 is... Requires: php_database %else Requires: mod_php_any Requires: php_any_db Recommends: php-mysql %endif Requires: /usr/sbin/sendmail Requires: php-mbstring Requires: php-spl # test/*, xmlrpc.php, squirrelmail plugin # big dependency, not needed by all users - therefore no hard Requirement %if 0%{?suse_version} Recommends: php5-ZendFramework < 2.0 %endif # vacation.pl Requires: perl(DBI) Requires: perl(Email::Valid) Requires: perl(Encode) Requires: perl(Getopt::Std) Requires: perl(Log::Log4perl) Requires: perl(MIME::Base64) Requires: perl(MIME::EncWords) Requires: perl(Mail::Sender) Requires: perl(strict) # cleanupdirs.pl Requires: perl(File::Path) Requires: perl(Getopt::Long) # mkeveryone.pl Requires: perl(Fcntl) Requires: perl(IO) Requires: perl(IO::File) Requires: perl(POSIX) Requires: perl(Time::Local) # fetchmail.pl Requires: perl(File::Temp) Requires: perl(LockFile::Simple) Requires: perl(Sys::Syslog) %if 0%{?fedora} || 0%{?rhel_version} || 0%{?centos_ver} # create vacation user/group PreReq: shadow-utils BuildRequires: httpd-devel #define serverroot %(/usr/sbin/apxs -q datadir 2>/dev/null || /usr/sbin/apxs -q PREFIX)/htdocs/ %define serverroot /var/www/html/ %define apache_group apache %else # create vacation user/group PreReq: pwdutils BuildRequires: apache2-devel %define serverroot %(/usr/sbin/apxs2 -q datadir 2>/dev/null || /usr/sbin/apxs2 -q PREFIX)/htdocs/ %define apache_group www Recommends: postfix Suggests: php-pgsql %endif %if 0%{?fedora} || 0%{?rhel_version} || 0%{?centos_ver} # Do not check any files in ADDITIONS for Requires, see https://fedoraproject.org/wiki/Packaging:AutoProvidesAndRequiresFiltering %global __requires_exclude_from ^%{_prefix}/lib/%{name}/ADDITIONS/.*$ %endif BuildRoot: %{_tmppath}/%{name}-%{version}-build Summary: Web-based management tool for Postfix virtual domains, mailboxes and aliases License: GPL-2.0+ Group: Productivity/Networking/Web/Frontends %description PostfixAdmin is a PHP based application that handles Postfix Style Virtual Domains and Users that are stored in MySQL or PostgreSQL. Postfix Admin supports: - Virtual Mailboxes / Virtual Aliases / Forwarders - Alias domains (Domain to Domain forwarding with recipient validation) - Vacation (auto-response) for Virtual Mailboxes. - Quota / Alias & Mailbox limits per domain. - Fetchmail integration - Packaged with over 25 languages. %prep %setup -q %build echo "*** serverroot: %{serverroot} ***" %install mkdir -p -m0755 %{buildroot}%{_sysconfdir}/%{name} #mkdir -p -m0755 %{buildroot}%{_datadir}/%{name} mkdir -p -m0755 %{buildroot}%{serverroot}/%{name} mkdir -p -m0755 %{buildroot}%{_localstatedir}/spool/vacation mkdir -p -m0755 %{buildroot}/%{_prefix}/lib/%{name} # install the config files #install -m 0640 config.inc.php.sample %{buildroot}%{_sysconfdir}/%{name}/config.inc.php #ln -s ../../../..%{_sysconfdir}/%{name}/config.inc.php \ # %{buildroot}%{_datadir}/%{name}/config.inc.php install -m 0644 *.php *.js %{buildroot}%{serverroot}/%{name}/ mv VIRTUAL_VACATION/vacation.pl %{buildroot}%{_prefix}/lib/%{name}/ # compatibility symlink to match documentation ( cd %{buildroot}%{_localstatedir}/spool/vacation/ && ln -s ../../../usr/lib/%{name}/vacation.pl ) # copy over the rest for d in configs css images languages model scripts smarty templates users ; do cp -rp $d %{buildroot}%{serverroot}/%{name}/ done chmod 755 %{buildroot}%{serverroot}/%{name}/scripts/postfixadmin-cli install -d %{buildroot}%{serverroot}/%{name}/templates_c # remove files related to debian packaging (to avoid it's copied as %doc) rm -r ADDITIONS/squirrelmail-plugin/debian/ cp -rp ADDITIONS %{buildroot}%{_prefix}/lib//%{name}/ chmod 755 %{buildroot}%{_prefix}/lib/%{name}/ADDITIONS/*.{pl,sh,py} %{buildroot}%{_prefix}/lib/%{name}/ADDITIONS/squirrelmail-plugin/locale/build.sh # install the config file #mkdir -p %{buildroot}%{_sysconfdir}/apache2/conf.d #install -m 644 $RPM_SOURCE_DIR/%{name}.conf \ # %{buildroot}%{_sysconfdir}/apache2/conf.d/ %pre %{_sbindir}/groupadd -r vacation 2> /dev/null || : %{_sbindir}/useradd -c "Virtual Vacation" -d %{_localstatedir}/spool/vacation -s /sbin/nologin -M -r -g vacation vacation 2> /dev/null || : # fix group for vacation user (if created by older versions (< 2012-02-13) of this package, it was created with group users) %{_sbindir}/usermod -g vacation vacation 2> /dev/null || : #if [ -z "`grep vacation /etc/postfix/master.cf 2>/dev/null`" ]; then #cat <<'EOF' >>/etc/postfix/master.cf ## Postfix Admin Vacation #vacation unix - n n - - pipe # flags=Rq user=vacation argv=/usr/lib/postfixadmin/vacation.pl -f ${sender} -- ${recipient} #EOF #fi #%preun #if [ $1 = 0 ]; then # /usr/sbin/userdel vacation 2>/dev/null || : #fi %files %defattr(-,root,root) #%config %dir %{_sysconfdir}/%{name} #%attr(640,root,www) %config(noreplace) %{_sysconfdir}/%{name}/*.php #%config(noreplace) %{_sysconfdir}/apache2/conf.d/*.conf %doc DOCUMENTS/* *.TXT VIRTUAL_VACATION %{serverroot}/%{name}/ %attr(770,root,%{apache_group}) %dir %{serverroot}/%{name}/templates_c/ %dir %{_prefix}/lib/%{name}/ %{_prefix}/lib/%{name}/ADDITIONS/ %attr( 750,root,vacation) %{_prefix}/lib/%{name}/vacation.pl %attr(1770,root,vacation) %dir %{_localstatedir}/spool/vacation %{_localstatedir}/spool/vacation/vacation.pl %changelog
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor