Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (a4bd3b542a3ea799f69ac668aef6f3776ba74885)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (a4bd3b542a3ea799f69ac668aef6f3776ba74885)
  • Date: Wed, 14 Mar 2012 15:52:15 -0500

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

mail/dspam/DEPENDS | 25 +++++++++++++++----------
mail/dspam/HISTORY | 3 +++
2 files changed, 18 insertions(+), 10 deletions(-)

New commits:
commit a4bd3b542a3ea799f69ac668aef6f3776ba74885
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

dspam: better handling of daemon <-> sqlite interaction

diff --git a/mail/dspam/DEPENDS b/mail/dspam/DEPENDS
index 4d5da68..c244cf4 100755
--- a/mail/dspam/DEPENDS
+++ b/mail/dspam/DEPENDS
@@ -3,17 +3,22 @@ optional_depends MAIL-TRANSPORT-AGENT \
'' \
'Enable delivery agent support' &&

-if ! list_find "$DSPAM_OPTS" "--enable-daemon"; then
- optional_depends sqlite \
- '' \
- '' \
- 'Enable SQLite storage driver' &&
-
- optional_depends sqlite2 \
- '' \
- '' \
- 'Enable SQLite2 storage driver'
+if list_find "$DSPAM_OPTS" "--enable-daemon"; then
+ message "${MESSAGE_COLOR}NOTE:\n" \
+ "you've enabled daemon mode; if you're plannning to use SQLite\n" \
+ "storage drivers, it can be used only for SMTP/LMTP delivery,\n" \
+ "not for running standalone server. See README for more
info.${DEFAULT_COLOR}\n"
fi &&
+
+optional_depends sqlite \
+ '' \
+ '' \
+ 'Enable SQLite storage driver' &&
+
+optional_depends sqlite2 \
+ '' \
+ '' \
+ 'Enable SQLite2 storage driver (deprecated)' &&

optional_depends MYSQL \
'--with-mysql-includes=/usr/include/mysql' \
diff --git a/mail/dspam/HISTORY b/mail/dspam/HISTORY
index 96fb585..f90e720 100644
--- a/mail/dspam/HISTORY
+++ b/mail/dspam/HISTORY
@@ -1,3 +1,6 @@
+2012-03-15 Vlad Glagolev <stealth AT sourcemage.org>
+ * DEPENDS: better handling of daemon <-> sqlite interaction
+
2012-03-14 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: fixed scm build





Archive powered by MHonArc 2.6.24.

Top of Page