Skip to content

Commit 9e196b2

Browse files
author
Paul J Stevens
committedAug 23, 2014
bump version 3.2.0
add some UPGRADING documentation
1 parent 861bb5e commit 9e196b2

File tree

10 files changed

+2032
-3636
lines changed

10 files changed

+2032
-3636
lines changed
 

‎Makefile.in

+228-381
Large diffs are not rendered by default.

‎UPGRADING

+26
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,29 @@
1+
Upgrading from DBMail 3.0 to DBMail 3.2
2+
=======================================
3+
4+
Dependencies
5+
------------
6+
7+
* Database: MySQL 5.0 or better, PostgreSQL 8.3+, Sqlite3, Oracle
8+
* Glib: (>= 2.16.0)
9+
* GMime: (>= 2.6.20)
10+
* OpenSSL
11+
* libmhash
12+
* libzdb
13+
* libevent: (>= 2.0.21)
14+
15+
Schema Changes
16+
--------------
17+
18+
* As of dbmail-3.2 auto-migrations are supported, so no manual migrations
19+
are required.
20+
21+
122
Upgrading from DBMail 2.2 to DBMail 3.0
23+
=======================================
224

325
Dependencies
26+
------------
427

528
* Database: MySQL 5.0, PostgreSQL 8.3+, or SQLite3
629
* Glib: (>= 2.16.0)
@@ -13,6 +36,7 @@ Dependencies
1336
* libevent
1437

1538
Config Changes
39+
--------------
1640

1741
* MySQL: notice!
1842

@@ -75,6 +99,7 @@ FILE_LOGGING_LEVELS = 7
7599
SYSLOG_LOGGING_LEVELS = 31
76100

77101
Schema Changes
102+
--------------
78103

79104
Migration scripts from the previous stable releases are provided in
80105
sql/mysql, sql/postgresql and sql/sqlite. Please test them first
@@ -93,6 +118,7 @@ will have to be dropped, re-created, and re-filled using:
93118
dbmail-util -by
94119

95120
Server Changes
121+
--------------
96122

97123
Dbmail until 2.2 used a pre-forking server design with a dedicated
98124
connection to the database backend for each forked process. Even with

‎aclocal.m4

+349-562
Large diffs are not rendered by default.

‎configure

+303-476
Large diffs are not rendered by default.

‎configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 1999-2004 IC & S dbmail@ic-s.nl
22
# Copyright (C) 2004-2013 NFG Net Facilities Group support@nfg.nl
33

4-
AC_INIT([dbmail], [3.2.0-pre], [dbmail@dbmail.org])
4+
AC_INIT([dbmail], [3.2.0], [dbmail@dbmail.org])
55
AC_CONFIG_AUX_DIR(config)
66
AM_CONFIG_HEADER(config.h:config.in)
77
AC_CONFIG_MACRO_DIR([m4])

‎man/Makefile.in

+200-297
Large diffs are not rendered by default.

‎src/Makefile.in

+400-584
Large diffs are not rendered by default.

‎src/modules/Makefile.in

+160-312
Large diffs are not rendered by default.

‎systemd/Makefile.in

+75-180
Large diffs are not rendered by default.

‎test/Makefile.in

+290-843
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.