Compare commits

...

5 Commits

Author SHA1 Message Date
Daniel Berteaud aca8e04fc6 Automatic commit of package [ipasserelle-im] release [0.2.18-1]. 4 years ago
Daniel Berteaud f9bf55420e Adapt spec file for tito builds 4 years ago
Daniel Berteaud 980f68585c Configure builds with tito 4 years ago
Daniel Berteaud 2b13a9b707 Initialized to use tito. 4 years ago
Daniel Berteaud 3979996240 Add CORS headers 4 years ago
  1. 3
      .tito/packages/.readme
  2. 1
      .tito/packages/ipasserelle-im
  3. 1
      .tito/releasers.conf
  4. 6
      .tito/tito.props
  5. 29
      CHANGELOG
  6. 15
      ipasserelle-im.spec
  7. 2
      root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/Ejabberd/80Ejabberd

@ -0,0 +1,3 @@
the .tito/packages directory contains metadata files
named after their packages. Each file has the latest tagged
version and the project's relative directory.

@ -0,0 +1 @@
../../tito_libs/releasers.conf

@ -0,0 +1,6 @@
[buildconfig]
builder = tito.builder.Builder
tagger = tito.tagger.VersionTagger
changelog_do_not_remove_cherrypick = 0
changelog_format = %s (%ae)
lib_dir = ../tito_libs

@ -1,29 +0,0 @@
commit f95caac4a514eafe48984122de1243d7785255cf
Author: Daniel Berteaud <daniel@firewall-services.com>
Date: Thu May 24 09:52:29 2012 +0200
revert mod_muc to mnesia
commit 688069c291c754eb1cbeb6c75c0c821199c043a1
Author: Daniel Berteaud <daniel@firewall-services.com>
Date: Wed May 23 18:46:23 2012 +0200
Enable more ODBC modules available in Ejabberd 2.1.11
commit 6ae2143deecbba879b1bd5017eb8884c4fd38de2
Author: Daniel Berteaud <daniel@firewall-services.com>
Date: Tue Apr 24 12:31:29 2012 +0200
create log dir /var/log/ejabberd.run
commit 0841925c8e3847ac861dd1ff2c848059c7da69cb
Author: Daniel Berteaud <daniel@firewall-services.com>
Date: Fri Mar 30 10:49:57 2012 +0200
DisplayName in LDAP Roster
commit af6fdb290f8967f248670fbcfab2bb2553bbcb3e
Author: Daniel Berteaud <daniel@firewall-services.com>
Date: Wed Mar 14 22:30:54 2012 +0100
initial import

@ -1,12 +1,7 @@
%define version 0.2.17
%define release 1
%define name ipasserelle-im
Summary: Meta-Package to add Instant Messaging capabilities to your iPasserelle
Name: %{name}
Version: %{version}
Release: %{release}%{?dist}
Name: ipasserelle-im
Version: 0.2.18
Release: 1%{?dist}
Epoch: 9
License: GPL
Group: Networking/Daemons
@ -31,6 +26,9 @@ Meta package to configure Instant Messaging features
on your iPasserelle.
%changelog
* Tue Apr 14 2020 Daniel Berteaud <daniel@firewall-services.com> 0.2.18-1
- new package built with tito
- Add CORS headers for the im vhost
* Sat Jan 23 2016 Daniel Berteaud <daniel@firewall-services.com> 0.2.17-1
- Don't force SSL for acme challenges URI
- Reload during ssl-update
@ -136,7 +134,6 @@ perl createlinks
--dir '/var/log/ejabberd.run' 'attr(0750,smelog,root)' \
--dir '/var/service/ejabberd/ssl' 'attr(0750,root,ejabberd)' \
> %{name}-%{version}-filelist
echo "%doc CHANGELOG" >> %{name}-%{version}-filelist
%files -f %{name}-%{version}-filelist
%defattr(-,root,root)

@ -29,6 +29,8 @@ EOF
ProxyPass / http://localhost:5280/
ProxyPassReverse / http://localhost:5280/
Header set Access-Control-Allow-Origin "*"
<Location />
order deny,allow
deny from all

Loading…
Cancel
Save