Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
e1dfa316
...
e1dfa31617308c3ad41912dd5857c419bd388cc5
authored
2005-01-05 16:07:21 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Updated
1 parent
025f2ed6
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
47 additions
and
5 deletions
ChangeLog
NEWS
README
ChangeLog
View file @
e1dfa31
2005-01-05 Sergey Poznyakoff
* configure.ac (AUTHLIBS_DEPENDENCY,SQLLIB_DEPENDENCY): New
variables. I still hope to find a better solution, though
(see comment to imap4d_DEPENDENCIES in imap4d/Makefile.am).
New SQL driver: ODBC (--with-sql=odbc or --with-odbc)
Raised version number to 0.6.1
* NEWS: Updated
* README: Updated
* auth/Makefile.am: Use explicit PROG_DEPENDENCIES
* imap4d/Makefile.am: Likewise.
* pop3d/Makefile.am: Likewise.
* include/mailutils/sql.h (mu_sql_dispatch.errstr): Changed
return type to const char*
* sql/mysql.c: Likewise
* sql/postgres.c: Likewise
* sql/sql.c: Likewise
* sql/odbc.c: New file. ODBC SQL driver.
* sql/Makefile.am: Add odbc.c
* mail/testsuite/mail/read.exp: Updated to match recent changes
in diagnostic messages.
2005-01-04 Sergey Poznyakoff
* libsieve/extensions/vacation.c: New action. Based on
...
...
NEWS
View file @
e1dfa31
...
...
@@ -4,6 +4,13 @@ See the end of file for copying conditions.
Please send mailutils bug reports to <bug-mailutils@gnu.org>.
Version 0.6.1:
* libsieve: New action 'vacation'
* New SQL driver: odbc
Version 0.6:
* New features:
...
...
README
View file @
e1dfa31
...
...
@@ -60,14 +60,14 @@ specific configuration options:
Enable support for authentication using given SQL modules. MODLIST
is a colon-separated list of SQL modules to use. Available modules
are 'mysql'
and 'postgres'. E.g.
:
are 'mysql'
, 'postgres' and 'odbc'. E.g., to enable all modules
:
--with-sql=mysql:postgres
--with-sql=mysql:postgres
:odbc
Note that depending
on how your SQL systems are installed, this may require adding
appropriate directories to the library
and include paths, e.g.
Note that depending
on how your SQL systems are installed,
this may require adding appropriate directories to the library
and include paths, e.g.
./configure LIBS='-L/usr/local/mysql/lib -L/usr/local/pgsql/lib' \
...
...
@@ -93,6 +93,16 @@ specific configuration options:
You may have to explicitly specify LIBS and CPPFLAGS (see above).
--with-odbc[={odbc|iodbc}]
Without arguments or with 'odbc' as its argument it is equivalent
to --with-sql=odbc.
--with-odbc=iodbc enables ODBC support via libiodbc.
You may have to explicitly specify LIBS and CPPFLAGS (see above).
--enable-mh-utils
Build a suite of MH utilities. The GNU implementation of MH is
...
...
Please
register
or
sign in
to post a comment