mirror of
https://git.freebsd.org/ports.git
synced 2025-06-28 16:10:33 -04:00
OpenEMM is a feature-rich web-based enterprise application for email marketing, newsletters and service mails (transaction mails and event or time triggered mails). OpenEMM offers a great user interface, sophisticated bounce management, link tracking, lots of graphical realtime statistics, a CMS module and a scripting feature to implement individual tasks. OpenEMM is the first open source application for e-mail marketing. Its code base has been developed since 1999 and is used - as part of the commercial software product E-Marketing Manager (EMM) - by companies like IBM, Daimler, Siemens and Deutsche Telekom. OpenEMM offers already more than 95% of the functionality of most commercial products and some features most commercial products do not offer right now (for example MySQL support and CMS functionality). WWW: http://www.openemm.org PR: 196516 Submitted by: Horst Leitenmueller <horst.leitenmueller@liwest.at>
15 lines
279 B
C
15 lines
279 B
C
--- src/c/lib/agn.h.orig 2015-10-11 16:41:54 UTC
|
|
+++ src/c/lib/agn.h
|
|
@@ -135,9 +135,9 @@ typedef unsigned long hash_t;
|
|
/**
|
|
* Symbolic names for boolean values
|
|
*/
|
|
-typedef enum { /*{{{*/
|
|
- false,
|
|
- true
|
|
+typedef enum { /*{{{*/
|
|
+ false = 0,
|
|
+ true = 1
|
|
/*}}}*/
|
|
} bool_t;
|
|
|