~ubuntu-branches/ubuntu/precise/dspam/precise

« back to all changes in this revision

Viewing changes to src/decode.c

  • Committer: Bazaar Package Importer
  • Author(s): Julien Valroff, Julien Valroff, Thomas Preud'homme
  • Date: 2011-08-13 08:12:05 UTC
  • mfrom: (1.2.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: james.westby@ubuntu.com-20110813081205-cron89122k4fs2xe
Tags: 3.10.1+dfsg-1
[ Julien Valroff ]
* New upstream release:
  + Update copyright information following to upstream license switch from
    GPL-2 to AGPL-3+
  + Drop patches merged upstream
* Ensures system user is actually locked on purge, and unlocked in case
  the package is reinstalled
* Demote various MDA's from Depends to Recommends
* Add multiarch support:
  + Move the hash driver to as dedicated package
  + Clean .install files
  + Split debugging symbols into independent debug packages
  + Move dspam_pg2int8 to dspam (which introduces a new dependency on
  libpq5)
* Remove useless 001_drivers-in-usr_lib_dspam patch
* Remove useless calls to ucf in libdspam7-drv-{mysql,pgsql}.postinst
  scripts

[ Thomas Preud'homme ]
* Set build flags (CPPFLAGS, CFLAGS and LDFLAGS) using dpkg-buildflags.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: decode.c,v 1.391 2010/08/26 07:27:33 sbajic Exp $ */
 
1
/* $Id: decode.c,v 1.393 2011/06/28 00:13:48 sbajic Exp $ */
2
2
 
3
3
/*
4
4
 DSPAM
5
 
 COPYRIGHT (C) 2002-2010 DSPAM PROJECT
 
5
 COPYRIGHT (C) 2002-2011 DSPAM PROJECT
6
6
 
7
 
 This program is free software; you can redistribute it and/or
8
 
 modify it under the terms of the GNU General Public License
9
 
 as published by the Free Software Foundation; version 2
10
 
 of the License.
 
7
 This program is free software: you can redistribute it and/or modify
 
8
 it under the terms of the GNU Affero General Public License as
 
9
 published by the Free Software Foundation, either version 3 of the
 
10
 License, or (at your option) any later version.
11
11
 
12
12
 This program is distributed in the hope that it will be useful,
13
13
 but WITHOUT ANY WARRANTY; without even the implied warranty of
14
14
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
 GNU General Public License for more details.
 
15
 GNU Affero General Public License for more details.
16
16
 
17
 
 You should have received a copy of the GNU General Public License
18
 
 along with this program; if not, write to the Free Software
19
 
 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
17
 You should have received a copy of the GNU Affero General Public License
 
18
 along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
19
 
21
20
*/
22
21