CVS log for ports/mail/exim/Makefile
Up to [FreeBSD] / ports / mail / exim
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.260: download - view: text, markup, annotated - select for diffs
Tue Oct 18 08:55:43 2011 UTC (3 months, 3 weeks ago) by rea
Branches: MAIN
CVS tags: RELEASE_9_0_0, HEAD
Diff to: previous 1.259: preferred, colored
Changes since revision 1.259: +21 -6 lines
mail/exim: upgrade to 4.77 New stuff (from ftp://exim.inode.at/exim/ChangeLogs/NewStuff-4.77): 1. New options for the ratelimit ACL condition: /count= and /unique=. The /noupdate option has been replaced by a /readonly option. 2. The SMTP transport's protocol option may now be set to "smtps", to use SSL-on-connect outbound. 3. New variable $av_failed, set true if the AV scanner deferred; ie, when there is a problem talking to the AV scanner, or the AV scanner running. 4. New expansion conditions, "inlist" and "inlisti", which take simple lists and check if the search item is a member of the list. This does not support named lists, but does subject the list part to string expansion. 5. Unless the new EXPAND_LISTMATCH_RHS build option is set when Exim was built, Exim no longer performs string expansion on the second string of the match_* expansion conditions: "match_address", "match_domain", "match_ip" & "match_local_part". Named lists can still be used. Relevant entries from ChangeLog at ftp://exim.inode.at/exim/ChangeLogs/ChangeLog-4.77: TK/01 DKIM Verification: Fix relaxed canon for empty headers w/o whitespace trailer TF/02 Fix a couple more cases where we did not log the error message when unlink() failed. See also change 4.74-TF/03. TF/03 Make the exiwhat support code safe for signals. Previously Exim might lock up or crash if it happened to be inside a call to libc when it got a SIGUSR1 from exiwhat. The SIGUSR1 handler appends the current process status to the process log which is later printed by exiwhat. It used to use the general purpose logging code to do this, but several functions it calls are not safe for signals. The new output code in the SIGUSR1 handler is specific to the process log, and simple enough that it's easy to inspect for signal safety. Removing some special cases also simplifies the general logging code. Removing the spurious timestamps from the process log simplifies exiwhat. PP/02 Raise smtp_cmd_buffer_size to 16kB. Bugzilla 879. Patch from Paul Fisher. PP/07 Make maildir_use_size_file an _expandable_ boolean. Bugzilla 1089. Patch from Heiko Schlittermann. PP/08 Handle ${run} returning more data than OS pipe buffer size. Bugzilla 1131. Patch from Holger Weitz. PP/09 Handle IPv6 addresses with SPF. Bugzilla 860. Patch from Wolfgang Breyha. PP/10 GnuTLS: support TLS 1.2 & 1.1. Bugzilla 1156. Use gnutls_certificate_verify_peers2() [patch from Andreas Metzler]. Bugzilla 1095. PP/12 fix uninitialised greeting string from PP/03 (smtps client support). PP/13 shell and compiler warnings fixes for RC1-RC4 changes. PP/14 fix log_write() format string regression from TF/03. Bugzilla 1152. Patch from Dmitry Isaikin. Other changes: - the patch for XCLIENT was updated to match the latest Exim sources; - removed already incorporated patch for exiqgrep; - removed Makefile.options and simplified OPTIONS handling. PR: ports/161095, ports/161482, ports/157180
Revision 1.259: download - view: text, markup, annotated - select for diffs
Wed May 11 11:30:17 2011 UTC (9 months ago) by rea
Branches: MAIN
Diff to: previous 1.258: preferred, colored
Changes since revision 1.258: +1 -1 lines
mail/exim: upgrade to 4.76 4.76 is the security release that fixes CVE-2011-1764, format string attack and information leak, both inside the DKIM code. List of changes (ftp://exim.inode.at/exim/ChangeLogs/ChangeLog-4.76): PP/01 The new ldap_require_cert option would segfault if used. Fixed. PP/02 Harmonised TLS library version reporting; only show if debugging. Layout now matches that introduced for other libraries in 4.74 PP/03. PP/03 New openssl_options items: no_sslv2 no_sslv3 no_ticket no_tlsv1 PP/04 New "dns_use_edns0" global option. PP/05 Don't segfault on misconfiguration of ref:name exim-user as uid. Bugzilla 1098. PP/06 Extra paranoia around buffer usage at the STARTTLS transition. nb: Exim is not vulnerable to http://www.kb.cert.org/vuls/id/555316 TK/01 Updated PolarSSL code to 0.14.2. Bugzilla 1097. Patch from Andreas Metzler. PP/07 Catch divide-by-zero in ${eval:...}. Fixes bugzilla 1102. PP/08 Condition negation of bool{}/bool_lax{} did not negate. Fixed. Bugzilla 1104. TK/02 Bugzilla 1106: CVE-2011-1764 - DKIM log line was subject to a format-string attack -- SECURITY: remote arbitrary code execution. TK/03 SECURITY - DKIM signature header parsing was double-expanded, second time unintentionally subject to list matching rules, letting the header cause arbitrary Exim lookups (of items which can occur in lists, *not* arbitrary string expansion). This allowed for information disclosure. PP/09 Fix another SIGFPE (x86) in ${eval:...} expansion, this time related to INT_MIN/-1 -- value coerced to INT_MAX. New stuff (ftp://exim.inode.at/exim/ChangeLogs/NewStuff-4.76): 1. The global option "dns_use_edns0" may be set to coerce EDNS0 usage on or off in the resolver library. And I am also adding patch for exiqgrep that was taken from http://bugs.exim.org/show_bug.cgi?id=1103 [1]. PR: ports/156903 [2], ports/156872 [3] Reported-by: Oliver Brandmueller <ob@e-gitt.net> [1], admin@anes.su [2], Alexander Wittig <alexander@wittig.name> [3] Approved-by: erwin (mentor) Feature-safe: yes
Revision 1.258: download - view: text, markup, annotated - select for diffs
Mon Mar 28 13:50:19 2011 UTC (10 months, 2 weeks ago) by rea
Branches: MAIN
Diff to: previous 1.257: preferred, colored
Changes since revision 1.257: +19 -3 lines
mail/exim: upgrade to 4.75
From NewStuff-4.75:
1. In addition to the existing LDAP and LDAP/SSL ("ldaps") support,
there is now LDAP/TLS support, given sufficiently modern OpenLDAP
client libraries. The following global options have been added in
support of this: ldap_ca_cert_dir, ldap_ca_cert_file, ldap_cert_file,
ldap_cert_key, ldap_cipher_suite, ldap_require_cert, ldap_start_tls.
2. The pipe transport now takes a boolean option, "freeze_signal",
default false. When true, if the external delivery command exits on
a signal then Exim will freeze the message in the queue, instead of
generating a bounce.
3. Log filenames may now use %M as an escape, instead of %D (still
available). The %M pattern expands to yyyymm, providing month-level
resolution.
4. The $message_linecount variable is now updated for the maildir_tag
option, in the same way as $message_size, to reflect the real number
of lines, including any header additions or removals from transport.
5. When contacting a pool of SpamAssassin servers configured in
spamd_address, Exim now selects entries randomly, to better scale in
a cluster setup.
Full changelog and new stuff files:
- ftp://exim.inode.at/exim/ChangeLogs/ChangeLog-4.75
- ftp://exim.inode.at/exim/ChangeLogs/NewStuff-4.75
Added two configurable knobs (based on ports/154956):
- CONFIG_FILE_PATH: location of the main configuration file
- ALT_CONFIG_PREFIX: prefix for alternative configuration files.
PR: 154956
Feature safe: yes
Approved by: garga (mentor)
Revision 1.257: download - view: text, markup, annotated - select for diffs
Thu Jan 27 21:23:32 2011 UTC (12 months, 1 week ago) by rea
Branches: MAIN
CVS tags: RELEASE_8_2_0, RELEASE_7_4_0
Diff to: previous 1.256: preferred, colored
Changes since revision 1.256: +10 -3 lines
mail/exim: update to 4.74 Changelog is at http://ftp.exim.org/pub/exim/ChangeLogs/ChangeLog-4.74 Please, note that CVE-2011-0017 is not applicable to FreeBSD, because setuid() doesn't check RLIMIT_NPROC. Also fixed the periodic script for tidying the databases: now it won't produce errors if the lockfile is here, but the actual database file is gone. [2] And finally, synced the mirror list to the current one and pruned old unusable mirrors: - ftp.csx.cam.ac.uk: not synced anymore; - www.no.exim.org: no DNS record; - ftp.demon.nl: no longer mirrors Exim; - ftp.freenet.de: mirror of ftp.csx.cam.ac.uk; - ftp.esat.net: not synced anymore; - ftp.mirrorservice.org: mirror of ftp.csx.cam.ac.uk. Feature safe: yes PR: 154323 [1] Submitted by: Geraint Edwards <gedge@yadn.org> [2], Alexander Wittig <alexander@wittig.name> [1] Approved by: erwin (mentor), renato (mentor)
Revision 1.256: download - view: text, markup, annotated - select for diffs
Mon Jan 10 10:53:13 2011 UTC (13 months ago) by rea
Branches: MAIN
Diff to: previous 1.255: preferred, colored
Changes since revision 1.255: +2 -2 lines
mail/exim: fix variable substitution There was an extra '=' sign at the sed substitution pattern that affected users of make-only options TRUSTED_CONFIG_LIST and WHITELIST_D_MACROS: Exim binary won't build if any of these options is set. Spotted by: tdb Pointyhat to: rea Approved by: erwin (mentor)
Revision 1.255: download - view: text, markup, annotated - select for diffs
Sun Jan 9 11:19:24 2011 UTC (13 months ago) by rea
Branches: MAIN
Diff to: previous 1.254: preferred, colored
Changes since revision 1.254: +25 -2 lines
mail/exim: update to 4.73 Most notably, this version fixes local exim -> root escalation, CVE-2010-4345. Port had also gained configurable knob for disabling -D option and make variables TRUSTED_CONFIG_LIST and WHITELIST_D_MACROS to fine tune the behaviour of options -C and -D. New items are documented at ftp://exim.inode.at/exim/ChangeLogs/NewStuff-4.73 Changelog is available at ftp://exim.inode.at/exim/ChangeLogs/ChangeLog-4.73 Security: e4fcf020-0447-11e0-becc-0022156e8794 / CVE-2010-4345 PR: 152963 [1], 153711 [2] Submitted by: Alexander Wittig <alexander@wittig.name> [1] Approved by: garga (mentor)
Revision 1.254: download - view: text, markup, annotated - select for diffs
Tue Dec 28 09:16:39 2010 UTC (13 months, 1 week ago) by rea
Branches: MAIN
Diff to: previous 1.253: preferred, colored
Changes since revision 1.253: +1 -1 lines
Grab maintanership Approved by: erwin (mentor)
Revision 1.253: download - view: text, markup, annotated - select for diffs
Tue Dec 28 08:11:15 2010 UTC (13 months, 1 week ago) by linimon
Branches: MAIN
Diff to: previous 1.252: preferred, colored
Changes since revision 1.252: +1 -1 lines
Reset krion@FreeBSD.org due to 6 months of inactivity and maintainer- timeouts. Hat: portmgr
Revision 1.252: download - view: text, markup, annotated - select for diffs
Tue Sep 7 02:05:29 2010 UTC (17 months ago) by pgollucci
Branches: MAIN
CVS tags: RELEASE_6_EOL
Diff to: previous 1.251: preferred, colored
Changes since revision 1.251: +1 -1 lines
- Fix pcre lib linking if nothing adds ${LOCALBASE}/lib to LDFLAGS
PR: ports/141640
Submitted by: Artis Caune <Artis.Caune@gmail.com>
Approved by: maintainer timeout (krion ; 255 days)
Revision 1.251: download - view: text, markup, annotated - select for diffs
Wed Jun 9 08:53:32 2010 UTC (20 months ago) by krion
Branches: MAIN
CVS tags: RELEASE_8_1_0
Diff to: previous 1.250: preferred, colored
Changes since revision 1.250: +1 -1 lines
Update to 4.72
The changes from the previous release are:
1. TWO SECURITY FIXES: one relating to mail-spools which are
globally writable, the other to locking of MBX folders (not mbox).
These have CVE identifiers CVE-2010-2023 and CVE-2010-2024
2. MySQL stored procedures are now supported.
3. The dkim_domain transport option is now a list, not a single
string, and messages will be signed for each element in the list
(discarding duplicates).
4. The 4.70 release unexpectedly changed the behaviour of dnsdb TXT
lookups in the presence of multiple character strings within
the RR. Prior to 4.70, only the first string would be returned.
The dnsdb lookup now, by default, preserves the pre-4.70
semantics, but also now takes an extended output separator
specification. The separator can be followed by a semicolon, to
concatenate the individual text strings together with no join
character, or by a comma and a second separator character, in
which case the text strings within a TXT record are joined on
that second character. Administrators are reminded that DNS
provides no ordering guarantees between multiple records in an
RRset. For example:
foo.example. IN TXT "a" "b" "c"
foo.example. IN TXT "d" "e" "f"
${lookup dnsdb{>/ txt=foo.example}} -> "a/d"
${lookup dnsdb{>/; txt=foo.example}} -> "def/abc"
${lookup dnsdb{>/,+ txt=foo.example}} -> "a+b+c/d+e+f"
PR: ports/147686
Submitted by: Alexey V.Degtyarev <alexey@renatasystems.org>
Revision 1.250: download - view: text, markup, annotated - select for diffs
Wed May 5 18:08:18 2010 UTC (21 months, 1 week ago) by krion
Branches: MAIN
Diff to: previous 1.249: preferred, colored
Changes since revision 1.249: +40 -1 lines
"Spamooborona 1024" software by Yandex allows to filter up to 1024 good messages per day for any mailhost. It is to note: 1024 - it is not the total amount of messages scanned but the only good ones, which aren't considered as spam. Once 1024 good messages get passed through the filter, the rest of mail traffic will be passed without considering spam or ham until the end of the day. http://so.yandex.ru/companies/so1024.xml The patch allows use of "Spamooborona 1024" with Exim by using Local_scan()'s functionality provided by Yandex LLC. PR: ports/146215 Submitted by: Alexey V.Degtyarev <alexey@renatasystems.org>
Revision 1.249: download - view: text, markup, annotated - select for diffs
Thu Dec 3 12:07:05 2009 UTC (2 years, 2 months ago) by krion
Branches: MAIN
CVS tags: RELEASE_7_3_0
Diff to: previous 1.248: preferred, colored
Changes since revision 1.248: +3 -3 lines
Update to 4.71 ChangeLog: http://ftp.exim.org/pub/exim/ChangeLogs/ChangeLog-4.71 Submitted by: Alexey V. Degtyarev <alexey@renatasystems.org>
Revision 1.248: download - view: text, markup, annotated - select for diffs
Thu Nov 19 22:07:42 2009 UTC (2 years, 2 months ago) by pav
Branches: MAIN
Diff to: previous 1.247: preferred, colored
Changes since revision 1.247: +1 -0 lines
- Mark MAKE_JOBS_UNSAFE Reported by: pointyhat
Revision 1.247: download - view: text, markup, annotated - select for diffs
Sun Nov 15 18:18:19 2009 UTC (2 years, 2 months ago) by krion
Branches: MAIN
Diff to: previous 1.246: preferred, colored
Changes since revision 1.246: +13 -23 lines
Update to version 4.70 - Add devel/pcre dependency - Add option for checking ACL in DCC - Add WITH_DEBUG option - Remove Domain Keys option - Remove DKIM option Submitted by: "Alexey V. Degtyarev" <alexey@renatasystems.org>
Revision 1.246: download - view: text, markup, annotated - select for diffs
Tue Nov 10 06:51:13 2009 UTC (2 years, 3 months ago) by linimon
Branches: MAIN
Diff to: previous 1.245: preferred, colored
Changes since revision 1.245: +1 -0 lines
Since this port conditionally depends on perl, it needs WANT_PERL defined before the inclusion of bsd.port.pre.mk. Hat: portmgr
Revision 1.245: download - view: text, markup, annotated - select for diffs
Wed Oct 21 21:15:18 2009 UTC (2 years, 3 months ago) by krion
Branches: MAIN
Diff to: previous 1.244: preferred, colored
Changes since revision 1.244: +1 -0 lines
Fix build for exim/sqlite
Revision 1.244: download - view: text, markup, annotated - select for diffs
Wed Oct 21 19:59:14 2009 UTC (2 years, 3 months ago) by krion
Branches: MAIN
Diff to: previous 1.243: preferred, colored
Changes since revision 1.243: +17 -160 lines
- Convert existing infrastructure to OPTIONS - Remove deprecated RCORDER, required by FreeBSD-5.x - Remove deprecated WITH_PWCHECK - Add option WITH_KAS, which installs mail/libspamtest to use Kaspersky Antispam library Submitted by: Alexey V. Degtyarev <alexey@renatasystems.org>
Revision 1.243: download - view: text, markup, annotated - select for diffs
Wed Sep 2 15:01:43 2009 UTC (2 years, 5 months ago) by amdmi3
Branches: MAIN
CVS tags: RELEASE_8_0_0
Diff to: previous 1.242: preferred, colored
Changes since revision 1.242: +1 -1 lines
- Retire MASTER_SITE_SOURCEFORGE_EXTENDED, it's no longer needed - all mirrors actually have all distfiles - Merge all SF mirrors to MASTER_SITE_SOURCEFORGE, resort according to quick download speed survey - Fix MASTER_SITES for all port that have used SOURCEFORGE_EXTENTED Approved by: portmgr (pav)
Revision 1.242: download - view: text, markup, annotated - select for diffs
Tue Jun 2 09:44:30 2009 UTC (2 years, 8 months ago) by krion
Branches: MAIN
Diff to: previous 1.241: preferred, colored
Changes since revision 1.241: +9 -2 lines
Add support for XCLIENT command. More info - http://www.postfix.org/XCLIENT_README.html PR: ports/133891 Submitted by: Alexey V.Degtyarev <alexey@renatasystems.org>
Revision 1.241: download - view: text, markup, annotated - select for diffs
Fri Jan 23 16:27:44 2009 UTC (3 years ago) by flz
Branches: MAIN
CVS tags: RELEASE_7_2_0
Diff to: previous 1.240: preferred, colored
Changes since revision 1.240: +1 -1 lines
- Update X.org ports to 7.4+ (few ports are more recent than the katamari). - Bump PORTREVISION for all ports depending on libglut since the shlib version number went from 4 to 3. - Bump PORTREVISION for all ports depending on libXaw as libXaw.so.8 isn't installed anymore. - Couple of ports fixes (mostly missing xorg components added to USE_XORG).
Revision 1.240: download - view: text, markup, annotated - select for diffs
Fri Dec 12 17:34:28 2008 UTC (3 years, 1 month ago) by skv
Branches: MAIN
Diff to: previous 1.239: preferred, colored
Changes since revision 1.239: +1 -1 lines
Bugfix: reinitialize len before calling accept(). PR: ports/129260 Submitted by: Maxim Dounin <mdounin xx mdounin.ru> Bug: http://bugs.exim.org/show_bug.cgi?id=770
Revision 1.239: download - view: text, markup, annotated - select for diffs
Wed Oct 29 12:50:04 2008 UTC (3 years, 3 months ago) by mnag
Branches: MAIN
CVS tags: RELEASE_7_1_0, RELEASE_6_4_0
Diff to: previous 1.238: preferred, colored
Changes since revision 1.238: +2 -1 lines
- Bump PORTREVISION due to libspf2 update - Change lib dependency
Revision 1.238: download - view: text, markup, annotated - select for diffs
Sat Oct 4 16:04:22 2008 UTC (3 years, 4 months ago) by skv
Branches: MAIN
Diff to: previous 1.237: preferred, colored
Changes since revision 1.237: +12 -0 lines
Add support for DKIM (DomainKeys Identified Mail). PR: ports/127825 Submitted by: skv Approved by: maintainer (krion)
Revision 1.237: download - view: text, markup, annotated - select for diffs
Sat Apr 19 17:51:39 2008 UTC (3 years, 9 months ago) by miwi
Branches: MAIN
CVS tags: RELEASE_5_EOL
Diff to: previous 1.236: preferred, colored
Changes since revision 1.236: +1 -1 lines
- Remove unneeded dependency from gtk12/gtk20 [1] - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
Revision 1.236: download - view: text, markup, annotated - select for diffs
Mon Apr 7 02:11:43 2008 UTC (3 years, 10 months ago) by mnag
Branches: MAIN
Diff to: previous 1.235: preferred, colored
Changes since revision 1.235: +3 -2 lines
- Use pkg-config to determinate if sqlite3 are compiled with threads - Add USE_GNOME=pkgconfig Reported by: pav
Revision 1.235: download - view: text, markup, annotated - select for diffs
Thu Dec 20 23:38:57 2007 UTC (4 years, 1 month ago) by krion
Branches: MAIN
Diff to: previous 1.234: preferred, colored
Changes since revision 1.234: +1 -1 lines
Update to 4.69
Revision 1.234: download - view: text, markup, annotated - select for diffs
Wed Oct 3 23:34:15 2007 UTC (4 years, 4 months ago) by edwin
Branches: MAIN
CVS tags: RELEASE_7_0_0, RELEASE_6_3_0
Diff to: previous 1.233: preferred, colored
Changes since revision 1.233: +0 -4 lines
Remove support for OSVERSION < 5
Revision 1.233: download - view: text, markup, annotated - select for diffs
Tue Sep 4 22:11:58 2007 UTC (4 years, 5 months ago) by krion
Branches: MAIN
Diff to: previous 1.232: preferred, colored
Changes since revision 1.232: +1 -1 lines
Update to 4.68
Revision 1.232: download - view: text, markup, annotated - select for diffs
Tue Aug 21 18:24:25 2007 UTC (4 years, 5 months ago) by sobomax
Branches: MAIN
Diff to: previous 1.231: preferred, colored
Changes since revision 1.231: +1 -1 lines
Fix wrong path to config file in previous commit.
Revision 1.231: download - view: text, markup, annotated - select for diffs
Tue Aug 21 18:21:26 2007 UTC (4 years, 5 months ago) by sobomax
Branches: MAIN
Diff to: previous 1.230: preferred, colored
Changes since revision 1.230: +4 -4 lines
Fix building with radiusclient. PR: 115687
Revision 1.230: download - view: text, markup, annotated - select for diffs
Sun Aug 12 14:58:23 2007 UTC (4 years, 6 months ago) by krion
Branches: MAIN
Diff to: previous 1.229: preferred, colored
Changes since revision 1.229: +1 -1 lines
Portlint'ing
Revision 1.229: download - view: text, markup, annotated - select for diffs
Sun Aug 12 14:54:54 2007 UTC (4 years, 6 months ago) by krion
Branches: MAIN
Diff to: previous 1.228: preferred, colored
Changes since revision 1.228: +20 -29 lines
Utilize USE_BDB in accordance with Mk/bsd.database.mk PR: ports/115427 Submitted by: Scot Hetzel <swhetzel@gmail.com>
Revision 1.228: download - view: text, markup, annotated - select for diffs
Sat Aug 4 11:41:00 2007 UTC (4 years, 6 months ago) by gabor
Branches: MAIN
Diff to: previous 1.227: preferred, colored
Changes since revision 1.227: +19 -19 lines
- Remove the DESTDIR modifications from individual ports as we have a new, fully chrooted DESTDIR, which does not need such any more. Sponsored by: Google Summer of Code 2007 Approved by: portmgr (pav)
Revision 1.227: download - view: text, markup, annotated - select for diffs
Thu May 31 06:48:14 2007 UTC (4 years, 8 months ago) by krion
Branches: MAIN
Diff to: previous 1.226: preferred, colored
Changes since revision 1.226: +1 -1 lines
Fix dovecot authentication.
Revision 1.226: download - view: text, markup, annotated - select for diffs
Mon May 28 20:52:13 2007 UTC (4 years, 8 months ago) by krion
Branches: MAIN
Diff to: previous 1.225: preferred, colored
Changes since revision 1.225: +14 -26 lines
Add mail/dovecot auth daemon for authentication. Use USE_RC_SUBR correctly. PR: ports/112784 Submitted by: Jan Srzednicki <w@wrzask.pl>
Revision 1.225: download - view: text, markup, annotated - select for diffs
Sun Apr 29 12:38:21 2007 UTC (4 years, 9 months ago) by krion
Branches: MAIN
CVS tags: PRE_XORG_7
Diff to: previous 1.224: preferred, colored
Changes since revision 1.224: +1 -1 lines
Update to 4.67
Revision 1.224: download - view: text, markup, annotated - select for diffs
Fri Mar 23 10:38:57 2007 UTC (4 years, 10 months ago) by krion
Branches: MAIN
Diff to: previous 1.223: preferred, colored
Changes since revision 1.223: +2 -5 lines
Remove FAQ since file was deleted from master sites. Fix build with gcc41.
Revision 1.223: download - view: text, markup, annotated - select for diffs
Wed Jan 10 11:44:29 2007 UTC (5 years, 1 month ago) by krion
Branches: MAIN
CVS tags: RELEASE_4_EOL
Diff to: previous 1.222: preferred, colored
Changes since revision 1.222: +1 -1 lines
Update to 4.66
Revision 1.222: download - view: text, markup, annotated - select for diffs
Fri Jan 5 16:01:48 2007 UTC (5 years, 1 month ago) by krion
Branches: MAIN
Diff to: previous 1.221: preferred, colored
Changes since revision 1.221: +1 -1 lines
Update to 4.65
Revision 1.221: download - view: text, markup, annotated - select for diffs
Sat Dec 23 21:05:35 2006 UTC (5 years, 1 month ago) by krion
Branches: MAIN
Diff to: previous 1.220: preferred, colored
Changes since revision 1.220: +1 -1 lines
Update to 4.64
Revision 1.220: download - view: text, markup, annotated - select for diffs
Thu Dec 21 13:43:58 2006 UTC (5 years, 1 month ago) by krion
Branches: MAIN
Diff to: previous 1.219: preferred, colored
Changes since revision 1.219: +1 -1 lines
Add "ipv6" category. PR: ports/106891 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu>
Revision 1.219: download - view: text, markup, annotated - select for diffs
Tue Aug 1 10:29:25 2006 UTC (5 years, 6 months ago) by krion
Branches: MAIN
CVS tags: RELEASE_6_2_0
Diff to: previous 1.218: preferred, colored
Changes since revision 1.218: +1 -1 lines
Update to 4.63
Revision 1.218: download - view: text, markup, annotated - select for diffs
Thu May 4 19:25:37 2006 UTC (5 years, 9 months ago) by krion
Branches: MAIN
Diff to: previous 1.217: preferred, colored
Changes since revision 1.217: +2 -2 lines
Update to 4.62.
Revision 1.217: download - view: text, markup, annotated - select for diffs
Wed Apr 5 21:29:11 2006 UTC (5 years, 10 months ago) by krion
Branches: MAIN
Diff to: previous 1.216: preferred, colored
Changes since revision 1.216: +1 -1 lines
Fix the order of the acl and add_header entries to fix ACL negation. Submitted by: Stanislaw Halik <sthalik@tehran.lain.pl>
Revision 1.216: download - view: text, markup, annotated - select for diffs
Tue Apr 4 22:27:36 2006 UTC (5 years, 10 months ago) by krion
Branches: MAIN
Diff to: previous 1.215: preferred, colored
Changes since revision 1.215: +1 -1 lines
Update to 4.61
Revision 1.215: download - view: text, markup, annotated - select for diffs
Sat Mar 25 23:12:17 2006 UTC (5 years, 10 months ago) by krion
Branches: MAIN
Diff to: previous 1.214: preferred, colored
Changes since revision 1.214: +11 -5 lines
Add libsrs_alt support. Some cleanups. Submitted by: Simon Dick <simond@irrelevant.org>
Revision 1.214: download - view: text, markup, annotated - select for diffs
Thu Jan 26 14:20:23 2006 UTC (6 years ago) by skv
Branches: MAIN
CVS tags: RELEASE_6_1_0, RELEASE_5_5_0
Diff to: previous 1.213: preferred, colored
Changes since revision 1.213: +5 -1 lines
Add support for databases/db44 PR: ports/92369 Submitted by: skv Approved by: maintainer (krion)
Revision 1.213: download - view: text, markup, annotated - select for diffs
Sat Jan 7 22:48:20 2006 UTC (6 years, 1 month ago) by krion
Branches: MAIN
Diff to: previous 1.212: preferred, colored
Changes since revision 1.212: +3 -0 lines
Allow to install exim with EXIM_USER=exim EXIM_GROUP=exim instead of mailnull:mail. PR: ports/89832 Submitted by: Artis Caune <Artis.Caune@latnet.lv>
Revision 1.212: download - view: text, markup, annotated - select for diffs
Tue Dec 27 22:40:25 2005 UTC (6 years, 1 month ago) by krion
Branches: MAIN
Diff to: previous 1.211: preferred, colored
Changes since revision 1.211: +2 -1 lines
Allow users specify saslauthd socket location with SASLAUTHD_SOCKET variable in case of non-default layouts. Point default location to /var/run/saslauthd PR: ports/90987 Submitted by: Alexander Wittig <alexander AT wittig DOT name>
Revision 1.211: download - view: text, markup, annotated - select for diffs
Fri Dec 2 10:06:31 2005 UTC (6 years, 2 months ago) by skv
Branches: MAIN
Diff to: previous 1.210: preferred, colored
Changes since revision 1.210: +11 -0 lines
Add DomainKeys support. PR: ports/89011 Submitted by: skv Approved by: maintainer timeout
Revision 1.210: download - view: text, markup, annotated - select for diffs
Tue Nov 29 19:43:53 2005 UTC (6 years, 2 months ago) by krion
Branches: MAIN
Diff to: previous 1.209: preferred, colored
Changes since revision 1.209: +1 -1 lines
Update to 4.60
Revision 1.209: download - view: text, markup, annotated - select for diffs
Sat Oct 8 22:02:37 2005 UTC (6 years, 4 months ago) by krion
Branches: MAIN
Diff to: previous 1.208: preferred, colored
Changes since revision 1.208: +1 -1 lines
Update to 4.54
Revision 1.208: download - view: text, markup, annotated - select for diffs
Wed Sep 28 10:12:53 2005 UTC (6 years, 4 months ago) by krion
Branches: MAIN
Diff to: previous 1.207: preferred, colored
Changes since revision 1.207: +21 -9 lines
Update to 4.53
Revision 1.207: download - view: text, markup, annotated - select for diffs
Sun Sep 11 21:40:21 2005 UTC (6 years, 5 months ago) by vsevolod
Branches: MAIN
Diff to: previous 1.206: preferred, colored
Changes since revision 1.206: +2 -2 lines
Update LIB_DEPENDS to spf2.2 Add ${PTHREAD_LIBS} when use mail/libspf2 PR: 85000 Submitted by: Marcus Grando <marcus@corp.grupos.com.br> No objections from: krion (maintaier)
Revision 1.206: download - view: text, markup, annotated - select for diffs
Wed Jul 27 09:17:29 2005 UTC (6 years, 6 months ago) by krion
Branches: MAIN
CVS tags: RELEASE_6_0_0
Diff to: previous 1.205: preferred, colored
Changes since revision 1.205: +1 -1 lines
Update to 4.52
Revision 1.205: download - view: text, markup, annotated - select for diffs
Thu May 5 13:30:38 2005 UTC (6 years, 9 months ago) by krion
Branches: MAIN
Diff to: previous 1.204: preferred, colored
Changes since revision 1.204: +5 -5 lines
Update to version 4.51
Revision 1.204: download - view: text, markup, annotated - select for diffs
Wed Apr 20 18:24:08 2005 UTC (6 years, 9 months ago) by krion
Branches: MAIN
Diff to: previous 1.203: preferred, colored
Changes since revision 1.203: +1 -1 lines
Do not reject files like /etc/group etc as input files. Submitted by: Jan-Peter Koopmann <Jan-Peter.Koopmann at seceidos.de> Patched by: Philip Hazel <ph10 at cus dot cam.ac.uk>
Revision 1.203: download - view: text, markup, annotated - select for diffs
Wed Apr 6 14:08:31 2005 UTC (6 years, 10 months ago) by krion
Branches: MAIN
Diff to: previous 1.202: preferred, colored
Changes since revision 1.202: +4 -1 lines
Use customized DUMMY_LDFLAGS in enviroment instead of LDFLAGS to fix run on 4.x with lang/perl5.8 and WITH_OPENSSL_PORT. Suggested by: tobez Submitted by: Patrick Eisenacher <eisenacher at s3-solutions dot de>
Revision 1.202: download - view: text, markup, annotated - select for diffs
Sun Mar 20 17:52:48 2005 UTC (6 years, 10 months ago) by krion
Branches: MAIN
CVS tags: RELEASE_5_4_0
Diff to: previous 1.201: preferred, colored
Changes since revision 1.201: +1 -1 lines
Fix bug in ACL "allow" matrix if only WITH_CONTENT_SCAN is specified.
Revision 1.201: download - view: text, markup, annotated - select for diffs
Thu Mar 10 09:10:59 2005 UTC (6 years, 11 months ago) by krion
Branches: MAIN
Diff to: previous 1.200: preferred, colored
Changes since revision 1.200: +1 -1 lines
Since maintainer (eik@) is MIA for undefined time, take maintainership for further updates.
Revision 1.200: download - view: text, markup, annotated - select for diffs
Mon Mar 7 19:20:21 2005 UTC (6 years, 11 months ago) by krion
Branches: MAIN
Diff to: previous 1.199: preferred, colored
Changes since revision 1.199: +2 -1 lines
Fix mail/libspf2 support. PR: ports/78542 Submitted by: thorolf at grid dot einherjar.de
Revision 1.199: download - view: text, markup, annotated - select for diffs
Thu Mar 3 18:43:13 2005 UTC (6 years, 11 months ago) by krion
Branches: MAIN
Diff to: previous 1.198: preferred, colored
Changes since revision 1.198: +1 -0 lines
Fix build if WITH_SA_EXIM is defined. Reported by: Mike Sturdee <sturdee at pathwaynet.com>
Revision 1.198: download - view: text, markup, annotated - select for diffs
Wed Mar 2 21:50:48 2005 UTC (6 years, 11 months ago) by krion
Branches: MAIN
Diff to: previous 1.197: preferred, colored
Changes since revision 1.197: +24 -33 lines
Update to 4.50 * Remove WITH/WITHOUT_EXISCAN variable, since exiscan code was merged into exim-4.50 * Introduce two new variables: WITH_CONTENT_SCAN and WITH_OLD_DEMIME. * Enable WITH_OLD_DEMIME by default to preserve backward compatibility with deprecated "demime" ACL condition. For Exim itself, setting WITH_OLD_DEMIME forces WITH_CONTENT_SCAN to be set. * Remove POST-INSTALL-NOTES.exiscan-acl and xpatch-exiscan2 patches. * Add experimental-spec.txt into docs, to inform about experimental features. PR: ports/78168 Submitted by: krion Approved by: maintainer is currently MIA
Revision 1.197: download - view: text, markup, annotated - select for diffs
Thu Feb 3 03:55:00 2005 UTC (7 years ago) by eik
Branches: MAIN
Diff to: previous 1.196: preferred, colored
Changes since revision 1.196: +9 -6 lines
- update SA-Exim to 4.2 - add support for Berkeley DB 4.3 Thanks to Sergey Matveychuk <sem@FreeBSD.org> for committing PR 76273.
Revision 1.196: download - view: text, markup, annotated - select for diffs
Mon Jan 31 00:35:49 2005 UTC (7 years ago) by girgen
Branches: MAIN
Diff to: previous 1.195: preferred, colored
Changes since revision 1.195: +1 -7 lines
Split the postgresql ports into a server and a client part. All ports depending on postgresql shall use the USE_PGSQL=yes knob defined in Mk/bsd.ports.mk. Bumping portrevisions where needed. PR: 75344 Approved by: portmgr@ (kris), ade & sean (mentors)
Revision 1.195: download - view: text, markup, annotated - select for diffs
Sun Jan 30 22:12:09 2005 UTC (7 years ago) by krion
Branches: MAIN
Diff to: previous 1.194: preferred, colored
Changes since revision 1.194: +1 -1 lines
Fix build. Reported by: ceri
Revision 1.194: download - view: text, markup, annotated - select for diffs
Sun Jan 30 15:27:36 2005 UTC (7 years ago) by sem
Branches: MAIN
Diff to: previous 1.193: preferred, colored
Changes since revision 1.193: +2 -2 lines
- Update to 4.44 Mostly bugfix release PR: ports/76273 Submitted by: self Approved by: eik (timeout: 2 weeks)
Revision 1.193: download - view: text, markup, annotated - select for diffs
Wed Jan 5 09:02:28 2005 UTC (7 years, 1 month ago) by sem
Branches: MAIN
CVS tags: RELEASE_4_11_0
Diff to: previous 1.192: preferred, colored
Changes since revision 1.192: +1 -1 lines
- Fix two possible security vulnerabilities. Approved by: portmgr (marcus)
Revision 1.192: download - view: text, markup, annotated - select for diffs
Sun Oct 24 01:34:36 2004 UTC (7 years, 3 months ago) by eik
Branches: MAIN
Diff to: previous 1.191: preferred, colored
Changes since revision 1.191: +9 -0 lines
Add WITH_FIXED_NEVER_USERS, a colon-separated list of users that cannot be overridden by "never_users"
Revision 1.191: download - view: text, markup, annotated - select for diffs
Sun Oct 17 12:05:20 2004 UTC (7 years, 3 months ago) by eik
Branches: MAIN
Diff to: previous 1.190: preferred, colored
Changes since revision 1.190: +30 -11 lines
Fix location of radiusclient.conf when RADIUS_TYPE=RADIUSCLIENT Make some more options tunable Noted by: Jan-Peter Koopmann <Jan-Peter.Koopmann@seceidos.de>
Revision 1.190: download - view: text, markup, annotated - select for diffs
Mon Oct 11 23:48:25 2004 UTC (7 years, 4 months ago) by eik
Branches: MAIN
Diff to: previous 1.189: preferred, colored
Changes since revision 1.189: +124 -46 lines
- update to Exim 4.43 and exiscan 28 - add support for the SA-Exim local_scan function + http://marc.merlins.org/linux/exim/sa.html - new options WITH_SA_EXIM, WITH_AUTH_SASL, WITH_RADIUS_TYPE - fix 150.exim-tidydb.sh when Exim is installed, but not run [1] Submitted by: Brian Somers <brian@Awfulhak.org> [1]
Revision 1.189: download - view: text, markup, annotated - select for diffs
Fri Aug 27 11:35:26 2004 UTC (7 years, 5 months ago) by eik
Branches: MAIN
CVS tags: RELEASE_5_3_0
Diff to: previous 1.188: preferred, colored
Changes since revision 1.188: +2 -2 lines
update to version 4.42+27
Revision 1.188: download - view: text, markup, annotated - select for diffs
Fri Aug 20 06:53:11 2004 UTC (7 years, 5 months ago) by eik
Branches: MAIN
Diff to: previous 1.187: preferred, colored
Changes since revision 1.187: +2 -0 lines
Grrrr... bsd.port.mk checks the value of WITH_MYSQL_VER. Noticed by: pointyhat via linimon
Revision 1.187: download - view: text, markup, annotated - select for diffs
Thu Aug 19 12:17:57 2004 UTC (7 years, 5 months ago) by eik
Branches: MAIN
Diff to: previous 1.186: preferred, colored
Changes since revision 1.186: +4 -2 lines
Respect CC Reminded by: krion
Revision 1.186: download - view: text, markup, annotated - select for diffs
Thu Aug 19 09:52:22 2004 UTC (7 years, 5 months ago) by eik
Branches: MAIN
Diff to: previous 1.185: preferred, colored
Changes since revision 1.185: +8 -6 lines
make a little more robust against CFLAGS that are accidentially overwritten by make.conf(5)
Revision 1.185: download - view: text, markup, annotated - select for diffs
Wed Aug 18 16:02:59 2004 UTC (7 years, 5 months ago) by eik
Branches: MAIN
Diff to: previous 1.184: preferred, colored
Changes since revision 1.184: +1 -1 lines
update to exiscan-acl 25 - Added expansion of av_scanner global variable when it starts with a dollar sign. This is useful for implementing multiple malware scanners. - Added support for adding ACL headers at the beginning and in the "middle" of the message header block. (This is a preliminary solution, see comment in SPF section of exiscan-acl-spec).
Revision 1.184: download - view: text, markup, annotated - select for diffs
Thu Jul 22 15:39:30 2004 UTC (7 years, 6 months ago) by eik
Branches: MAIN
Diff to: previous 1.183: preferred, colored
Changes since revision 1.183: +2 -2 lines
Update to Exim 4.41 + exiscan-acl 24 Note that this port uses libsrs2, not libsrs_alt as documented in exiscan-acl-spec
Revision 1.183: download - view: text, markup, annotated - select for diffs
Sat Jul 17 14:21:13 2004 UTC (7 years, 6 months ago) by eik
Branches: MAIN
Diff to: previous 1.182: preferred, colored
Changes since revision 1.182: +55 -35 lines
- Update to version 4.40 - Support for WITH_SPF and WITH_SRS via libspf2/libsrs2, needs exiscan - Note for 5.x users: the default location of the start/stop file has changed. Build WITH_RCORDER=yes when you depend on the old behaviour - WITH_OPENLDAP_VER and WITH_MYSQL_VER does no longer imply the corresponding WITH_ variable. - experimental support for optionsng from devel/portmk
Revision 1.182: download - view: text, markup, annotated - select for diffs
Mon Jun 7 10:53:10 2004 UTC (7 years, 8 months ago) by eik
Branches: MAIN
Diff to: previous 1.181: preferred, colored
Changes since revision 1.181: +17 -1 lines
make LOGDIR and LOG_FILE_PATH tunable [1] add WITH_AUTH_RADIUS support [2] Requested by: Lonnie Santella <lonniesantella@hotmail.com> [1] Jan-Peter Koopmann <Jan-Peter.Koopmann@seceidos.de> [2]
Revision 1.181: download - view: text, markup, annotated - select for diffs
Fri May 28 16:29:48 2004 UTC (7 years, 8 months ago) by eik
Branches: MAIN
Diff to: previous 1.180: preferred, colored
Changes since revision 1.180: +1 -1 lines
work around an Outlook bug, which assumes that after the after the first semicolon in the Received: header is a date, even in a comment. Submitted by: Lanny Godsey <lannygodsey@yahoo.com>
Revision 1.180: download - view: text, markup, annotated - select for diffs
Wed May 26 10:46:37 2004 UTC (7 years, 8 months ago) by eik
Branches: MAIN
Diff to: previous 1.179: preferred, colored
Changes since revision 1.179: +13 -1 lines
- update exiscan-acl to version 22, with SPF support. enabled when build with WITH_SPF=yes - fix connection drop handling in a data-acl
Revision 1.179: download - view: text, markup, annotated - select for diffs
Mon May 10 15:07:58 2004 UTC (7 years, 9 months ago) by eik
Branches: MAIN
Diff to: previous 1.178: preferred, colored
Changes since revision 1.178: +3 -3 lines
Upgrade to exim 4.34 + exiscan-acl 21
Revision 1.178: download - view: text, markup, annotated - select for diffs
Thu May 6 14:21:51 2004 UTC (7 years, 9 months ago) by eik
Branches: MAIN
Diff to: previous 1.177: preferred, colored
Changes since revision 1.177: +1 -1 lines
Fix potential SEGV on long header when verify = header_syntax is used this is not set not in the default configuration, check with grep 'verify.*=.*header_syntax' /usr/local/etc/exim/configure <http://www.guninski.com/exim1.html>
Revision 1.177: download - view: text, markup, annotated - select for diffs
Thu May 6 10:53:58 2004 UTC (7 years, 9 months ago) by eik
Branches: MAIN
Diff to: previous 1.176: preferred, colored
Changes since revision 1.176: +4 -1 lines
don't depend on perl when build WITHOUT_PERL. Note that without perl the following utilities won't work, even though they are installed: exigrep eximstats exipick exiqgrep exiqsumm
Revision 1.176: download - view: text, markup, annotated - select for diffs
Wed May 5 13:23:14 2004 UTC (7 years, 9 months ago) by eik
Branches: MAIN
Diff to: previous 1.175: preferred, colored
Changes since revision 1.175: +2 -2 lines
update to exim 4.33 + exiscan 20 /usr/local/share/doc/exim/ChangeLog /usr/local/share/doc/exim/NewStuff http://duncanthrax.net/exiscan-acl/CHANGELOG
Revision 1.175: download - view: text, markup, annotated - select for diffs
Fri Apr 30 21:08:24 2004 UTC (7 years, 9 months ago) by eik
Branches: MAIN
Diff to: previous 1.174: preferred, colored
Changes since revision 1.174: +2 -6 lines
upgrade to exiscan-acl version 19: <http://duncanthrax.net/exiscan-acl/CHANGELOG> nuke OpenLDAP 1.2 while I'm here.
Revision 1.174: download - view: text, markup, annotated - select for diffs
Wed Apr 28 17:08:06 2004 UTC (7 years, 9 months ago) by eik
Branches: MAIN
Diff to: previous 1.173: preferred, colored
Changes since revision 1.173: +74 -31 lines
- update to exiscan-acl version 18 - change `WITH_EXIMON' to include exim-monitor in this package - remove WITHOUT_WILDLSEARCH, it was non-functional - add fix for race condition in MBX locking - add fix for rewrite bug - add iplsearch wishlist patch
Revision 1.173: download - view: text, markup, annotated - select for diffs
Thu Apr 15 14:11:20 2004 UTC (7 years, 9 months ago) by eik
Branches: MAIN
CVS tags: RELEASE_4_10_0
Diff to: previous 1.172: preferred, colored
Changes since revision 1.172: +2 -2 lines
Update to Exim release 4.32 + exiscan 17 - ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/ChangeLogs/ChangeLog-4.32 - http://duncanthrax.net/exiscan-acl/CHANGELOG
Revision 1.172: download - view: text, markup, annotated - select for diffs
Wed Mar 31 22:33:42 2004 UTC (7 years, 10 months ago) by eik
Branches: MAIN
Diff to: previous 1.171: preferred, colored
Changes since revision 1.171: +6 -2 lines
- update to Exim 4.31: A surprisingly large number of minor bugs have been fixed. Support for maildirsize files has been completely rewritten. A limited number of feature enhancements are included. For instance, TLS now supports Certificate Revocation Lists (CRL), and the dnslookup router now (optionally) supports the use of SRV records (see RFC 2782) in addition to MX and address records. - /usr/local/share/doc/exim/NewStuff - /usr/local/share/doc/exim/ChangeLog - /usr/local/share/doc/exim/README.UPDATING
Revision 1.171: download - view: text, markup, annotated - select for diffs
Tue Mar 9 18:35:55 2004 UTC (7 years, 11 months ago) by eik
Branches: MAIN
Diff to: previous 1.170: preferred, colored
Changes since revision 1.170: +2 -2 lines
- update exiscan-acl to version -16 Read /usr/local/share/doc/exim/exiscan-acl-spec.txt for information about the new MIME ACL.
Revision 1.170: download - view: text, markup, annotated - select for diffs
Tue Mar 9 12:38:49 2004 UTC (7 years, 11 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.169: preferred, colored
Changes since revision 1.169: +1 -1 lines
Hand over to eik, who will give the port the attention it deserves. If you check the CVS history for this port for the last few months, you'll see that more changes have originated from him than from anyone else.
Revision 1.169: download - view: text, markup, annotated - select for diffs
Wed Feb 18 08:48:00 2004 UTC (7 years, 11 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.168: preferred, colored
Changes since revision 1.168: +9 -3 lines
Enabled passwd lookups by default; while the world is moving away from real users for mail, there are still plenty of mail servers that use real users, and the lookup costs 292 bytes in the executable. The feature can be disabled with WITHOUT_PASSWD. Bump PORTREVISION accordingly.
Revision 1.168: download - view: text, markup, annotated - select for diffs
Wed Feb 4 07:49:48 2004 UTC (8 years ago) by sheldonh
Branches: MAIN
Diff to: previous 1.167: preferred, colored
Changes since revision 1.167: +1 -1 lines
USE_ICONV.
Revision 1.167: download - view: text, markup, annotated - select for diffs
Sat Jan 31 15:27:22 2004 UTC (8 years ago) by sheldonh
Branches: MAIN
Diff to: previous 1.166: preferred, colored
Changes since revision 1.166: +7 -7 lines
Fix creation of /var/log/exim, which I botched when making EXIM_USER and EXIM_GROUP operator-overidable. Submitted by: eik
Revision 1.166: download - view: text, markup, annotated - select for diffs
Wed Jan 21 09:49:42 2004 UTC (8 years ago) by sheldonh
Branches: MAIN
Diff to: previous 1.165: preferred, colored
Changes since revision 1.165: +7 -3 lines
Provide support for Berkeley DB 4.2, through WITH_BDB_VER=42. Submitted by: eik
Revision 1.165: download - view: text, markup, annotated - select for diffs
Mon Jan 12 11:49:42 2004 UTC (8 years, 1 month ago) by sheldonh
Branches: MAIN
Diff to: previous 1.164: preferred, colored
Changes since revision 1.164: +5 -6 lines
Silence two portlint warnings.
Revision 1.164: download - view: text, markup, annotated - select for diffs
Mon Jan 12 10:56:41 2004 UTC (8 years, 1 month ago) by sheldonh
Branches: MAIN
Diff to: previous 1.163: preferred, colored
Changes since revision 1.163: +14 -1 lines
1) Fix build for the WITHOUT_ALT_CONFIG_PREFIX case. 2) Allow the operator to override exim user and group with EXIM_USER and EXIM_GROUP. This was made possible by the introduction of runtime resolution of the exim_user UID and the exim_group GID, new in exim-4.30. Reported by: Phil Pennock <pdp@nl.demon.net>
Revision 1.163: download - view: text, markup, annotated - select for diffs
Wed Jan 7 11:05:26 2004 UTC (8 years, 1 month ago) by sheldonh
Branches: MAIN
Diff to: previous 1.162: preferred, colored
Changes since revision 1.162: +1 -1 lines
Look for WITHOUT_DNSDB as advertised, not WITH_DNSDB. Submitted by: ade
Revision 1.162: download - view: text, markup, annotated - select for diffs
Tue Jan 6 10:18:13 2004 UTC (8 years, 1 month ago) by sheldonh
Branches: MAIN
Diff to: previous 1.161: preferred, colored
Changes since revision 1.161: +2 -3 lines
Update to 4.30. This release includes bugfixes and new features, but should be backward compatible with 4.2x.
Revision 1.161: download - view: text, markup, annotated - select for diffs
Wed Nov 12 09:57:12 2003 UTC (8 years, 3 months ago) by sheldonh
Branches: MAIN
CVS tags: RELEASE_5_2_1, RELEASE_5_2_0
Diff to: previous 1.160: preferred, colored
Changes since revision 1.160: +2 -2 lines
Don't disclose FreeBSD version in Received headers; just disclose that
the OS is some version of FreeBSD.
1) krion was unhappy about disclosure for security reasons.
2) Oliver Eikemeier and I think that having at least "FreeBSD" in
the headers is useful for support.
3) Oliver and I don't think the security issue is a big deal.
4) However, the previous implementation for including the OS version
used the version of the package builder, which could lead to
confusion in support.
So a reasonable compromise is to include just ${OPSYS} but not ${OSREL}.
Bump PORTREVISION accordingly.
Revision 1.160: download - view: text, markup, annotated - select for diffs
Tue Nov 4 13:28:40 2003 UTC (8 years, 3 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.159: preferred, colored
Changes since revision 1.159: +1 -1 lines
Suggest uncommenting ScanMail in POST-INSTALL-NOTES.clamd. I'm bumping PORTREVISION for this, because it allowed Mimail.C to slip through. :-( Submitted by: Phil White <exim@radagast.itmagic.ltd.uk>
Revision 1.159: download - view: text, markup, annotated - select for diffs
Wed Oct 29 11:56:02 2003 UTC (8 years, 3 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.158: preferred, colored
Changes since revision 1.158: +1 -1 lines
* Remove old saslauthd bugfix, included in 4.24. * Add bugfix for numeric overflow. * Update clamav installation instructions for changes to the clamav port. Bump PORTREVISION accordingly. Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
Revision 1.158: download - view: text, markup, annotated - select for diffs
Wed Oct 22 14:32:55 2003 UTC (8 years, 3 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.157: preferred, colored
Changes since revision 1.157: +2 -1 lines
Update to exiscan-acl-4.24-13, which is a bugfix release. Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
Revision 1.157: download - view: text, markup, annotated - select for diffs
Tue Oct 14 12:44:55 2003 UTC (8 years, 3 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.156: preferred, colored
Changes since revision 1.156: +1 -1 lines
Correct misspelt exim-postgresql conflict. PR: ports/57963 Reported by: Christian Ullrich <chris@chrullrich.de>
Revision 1.156: download - view: text, markup, annotated - select for diffs
Mon Sep 29 11:42:45 2003 UTC (8 years, 4 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.155: preferred, colored
Changes since revision 1.155: +125 -86 lines
WARNING: See caution at the end of this bullet list.
* Update to exim-4.24 (bugfix release).
* Wishlist patch for "eqi" incorporated.
* Mark exim-{ldap2,mysql,postgresql,} as conflicting.
* Substitute PORTREVISION for build number so that the version string
hints at which version of the port the binary comes from.
* Clean up POST-INSTALL-NOTES.
* Install example scripts, especially upgrade converters, now that exim-old
has been retired.
* Enable DNSDB-style lookup support by default; it can be disabled with
WITHOUT_DNSDB.
* Simplify LDAP support, using various versions of OpenLDAP only.
The old WITH_OPENLDAP[0-9][0-9] options are now invalid; use
WITH_OPENLDAP and/or WITH_OPENLDAP_VER instead.
* Retired exim-ldap port; OpenLDAP 1.2 is ancient.
* Allow the operator to specify preferred MySql version with
WITH_MYSQL_VER.
* Allow the operator to specify preferred Berkeley DB version with
WITH_BDB_VER; the old DB_LIB_VERSION option is now invalid.
* Respect bsd.ports.mk defaults of MySQL 4.0 and OpenLDAP 2.1.
* Allow the operator to specify default charset for header conversions,
with WITH_DEFAULT_CHARSET.
* Limit configure files to ${PREFIX}/etc/exim by default for security
reasons; the operator may override this behaviour with
WITHOUT_ALT_CONFIG_PREFIX.
!!!WARNING!!!
Some of these changes may cause trouble for folks who have a bunch of
exim port tweaks in make.conf and pkgtools.conf. The ALT_CONFIG_PREFIX
change may break existing deployments.
PR: ports/57098
Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
PR: ports/56117
Submitted by: Pat Lashley <patl+freebsd@volant.org>
PR: ports/57099
Reported by: Mark Foster <mark@foster.cc>
Revision 1.155: download - view: text, markup, annotated - select for diffs
Wed Sep 10 13:49:08 2003 UTC (8 years, 5 months ago) by sheldonh
Branches: MAIN
CVS tags: RELEASE_4_9_0
Diff to: previous 1.154: preferred, colored
Changes since revision 1.154: +48 -13 lines
Bring the Exim port closer to use as an install-time sendmail replacement for FreeBSD: * Use an rc.subr start/stop script. * Include contributed periodic scripts. * Replace $PREFIX with the build-time value of PREFIX. * Generate a default configure file if it doesn't exist at install-time. * Remove the default configure file if it hasn't been modified at deinstall-time. * Install additional documentation. * Move creation and removal of /var/log/exim to pkg-plist. Bump PORTREVISION accordingly. This paves the way for ports/56458, which teaches sysinstall about Exim. Bug trhodes about that PR. :-) PR: ports/56450 Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
Revision 1.154: download - view: text, markup, annotated - select for diffs
Thu Sep 4 14:56:00 2003 UTC (8 years, 5 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.153: preferred, colored
Changes since revision 1.153: +2 -2 lines
Update to exiscan-acl patch -12: When discard is the last verb for an ACL, ensure that cleanup occurs. Failure to reach cleanup was introduced in -11. Bump PORTREVISION accordingly.
Revision 1.153: download - view: text, markup, annotated - select for diffs
Tue Sep 2 14:40:30 2003 UTC (8 years, 5 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.152: preferred, colored
Changes since revision 1.152: +10 -20 lines
Exim updates: 1) Update to exiscan-acl patch revision 11. 2) Spin info files off into their own port, exim-doc-info. 3) Pet portlint. PR: ports/56291 Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
Revision 1.152: download - view: text, markup, annotated - select for diffs
Fri Aug 29 20:21:22 2003 UTC (8 years, 5 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.151: preferred, colored
Changes since revision 1.151: +1 -0 lines
Don't core dump on saslauthd lookups without service and realm. Submitted by: Thomas Hager <thomas.hager@1012surf.net>
Revision 1.151: download - view: text, markup, annotated - select for diffs
Mon Aug 25 06:57:39 2003 UTC (8 years, 5 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.150: preferred, colored
Changes since revision 1.150: +3 -0 lines
Import my exiscan-acl clamd virus scanner integration notes. I can't say enough good things about clamd.
Revision 1.150: download - view: text, markup, annotated - select for diffs
Sun Aug 24 10:26:41 2003 UTC (8 years, 5 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.149: preferred, colored
Changes since revision 1.149: +14 -2 lines
Add support for Cyrus SASL authentication daemon, enabled if WITH_SASLAUTHD is defined. Add a note indicating that Cyrus pwcheck authentication daemon support (enabled with WITH_PWCHECK) is deprecated. Submitted by: Jez Hancock <jez.hancock@munk.nu>
Revision 1.149: download - view: text, markup, annotated - select for diffs
Mon Aug 18 17:19:57 2003 UTC (8 years, 5 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.148: preferred, colored
Changes since revision 1.148: +18 -19 lines
Update to exim-4.22: * IPv6 bug fix incorporated. * Catch up with changes in makefiles. * Make portlint happier with respect to DOCSDIR, INFO and spaces. * Use the new INFO macro. * Use PATCHFILES instead of patching by hand, now that we don't support the non-ACL exiscan patch. This release fixes a few last minute release mistakes from 4.21. PR: ports/55701 Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
Revision 1.148: download - view: text, markup, annotated - select for diffs
Thu Aug 14 22:12:21 2003 UTC (8 years, 5 months ago) by kuriyama
Branches: MAIN
Diff to: previous 1.147: preferred, colored
Changes since revision 1.147: +3 -3 lines
Quick fix for INDEX build breakage by openldap2[012] split. We should use net/openldap20/bsd.openldap.mk later... Pointy hat to: kuriyama
Revision 1.147: download - view: text, markup, annotated - select for diffs
Thu Aug 14 15:46:26 2003 UTC (8 years, 5 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.146: preferred, colored
Changes since revision 1.146: +12 -30 lines
Roll forward over the last revision's backout. This reinstates exim-4.21, but with PORTREVISION bumped so that folks unlucky enough to get the bum version can easily upgrade. Include a patch to fix the reported IPv6 bug.
Revision 1.146: download - view: text, markup, annotated - select for diffs
Thu Aug 14 12:06:40 2003 UTC (8 years, 5 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.145: preferred, colored
Changes since revision 1.145: +30 -11 lines
Revert previous delta, which updated to exim-4.21. The update causes segfaults during remote delivery for at least one IPv6 user, and I don't have an IPv6 testbed to work with yet. Requested by: Suresh Ramasubramanian <suresh@outblaze.com>
Revision 1.145: download - view: text, markup, annotated - select for diffs
Thu Aug 14 10:25:15 2003 UTC (8 years, 5 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.144: preferred, colored
Changes since revision 1.144: +11 -30 lines
Update to exim-4.21: * This is a mostly maintenance release, although some new features have been added (including Sieve support). !!!WARNING!!! The non-ACL exiscan patch is no longer supported. The exiscan-acl patch is now used by default, unless WITHOUT_EXISCAN is given. This means that existing installations that rely on non-ACL exiscan CAN NOT be upgraded without changes to the configure file.
Revision 1.144: download - view: text, markup, annotated - select for diffs
Thu Aug 14 09:16:28 2003 UTC (8 years, 5 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.143: preferred, colored
Changes since revision 1.143: +0 -0 lines
(null delta) The previous revision updated to patch-level 10 of the exiscan-acl patch, not the exiscan patch as advertised.
Revision 1.143: download - view: text, markup, annotated - select for diffs
Thu Aug 14 09:06:01 2003 UTC (8 years, 5 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.142: preferred, colored
Changes since revision 1.142: +1 -1 lines
Update to exiscan patch level 10. Submitted by: Jacques Marneweck <jm@ataris.co.za>
Revision 1.142: download - view: text, markup, annotated - select for diffs
Mon Jul 7 11:32:28 2003 UTC (8 years, 7 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.141: preferred, colored
Changes since revision 1.141: +1 -25 lines
Move Exim mirror sites to MASTER_SITE_EXIM in Mk/bsd.sites.mk. Add additional mirrors. PR: ports/53499 Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
Revision 1.141: download - view: text, markup, annotated - select for diffs
Mon Jun 30 11:46:43 2003 UTC (8 years, 7 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.140: preferred, colored
Changes since revision 1.140: +1 -1 lines
Recognize named lists in hosts_treat_as_local. Reported by: Oliver Eikemeier <eikemeier@fillmore-labs.com> Obtained from: author
Revision 1.140: download - view: text, markup, annotated - select for diffs
Wed Jun 18 03:26:24 2003 UTC (8 years, 7 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.139: preferred, colored
Changes since revision 1.139: +17 -1 lines
Instrument a facility for including wishlist patches if WITH_WISHLIST is defined. Kick off with Exim 4 wish list item #163, which allows suppression of the Received header if received_header_text is empty. PR: ports/53432 Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
Revision 1.139: download - view: text, markup, annotated - select for diffs
Fri Jun 13 13:20:56 2003 UTC (8 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.138: preferred, colored
Changes since revision 1.138: +12 -5 lines
1) Update exiscan-acl patch to -09: Improved clamd support. New FAQ/example documentation. 2) Enable wildlsearch lookups by default and add new WITHOUT_WILDLSEARCH knob for disabling them. 3) Issue a fat warning if 127.0.0.1 is found in the relay_from_hosts hostlist of an existing configure file on upgrade. This is important for IPv6 users and doesn't hurt IPv4-only users. 4) Attempt local deliveries as the owner of the mailbox (still group mail) and don't fail if the existing mailbox permissions are narrower than those with which we would have created it. This works around pw(8) creating mailboxes with 0600 permission (instead of 0660). Don't advertise Exim's configuration syntax as simple any more. This implies that you could leverage Exim's power with just a little reading, which is not the case. Bump PORTREVISION accordingly. Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com> (1) PR: ports/52952 (2) Submitted by: Tim Bishop <tim@bishnet.net> (2) Reported by: Yann Golanski <yann@kierun.org> (3) Reported by: "Simon L. Nielsen" <simon@nitro.dk> (4)
Revision 1.138: download - view: text, markup, annotated - select for diffs
Mon Jun 2 13:17:43 2003 UTC (8 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.137: preferred, colored
Changes since revision 1.137: +5 -6 lines
* Update to exiscan-acl patch 08, which fixes wrong defaults for sophie antivirus and adds clamd support. * Use the bz2 patch for exiscan-acl. * Add a CVS Id tag to exim.sh Add a reload command to exim.sh. Bump PORTREVISION accordingly. Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
Revision 1.137: download - view: text, markup, annotated - select for diffs
Wed May 21 12:57:33 2003 UTC (8 years, 8 months ago) by sheldonh
Branches: MAIN
CVS tags: RELEASE_5_1_0
Diff to: previous 1.136: preferred, colored
Changes since revision 1.136: +9 -2 lines
Enable client-side Microsoft "Secure Password Authentication" SMTP AUTH support by default and provide the WITHOUT_AUTH_SPA knob to turn it off. Adds 11KB to the installed binary and requires configuration changes to enable, so it seems a harmless addition to the default feature set. Bump PORTREVISION accordingly. Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
Revision 1.136: download - view: text, markup, annotated - select for diffs
Wed May 21 11:54:01 2003 UTC (8 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.135: preferred, colored
Changes since revision 1.135: +1 -1 lines
Update to exiscan-acl-4.20-07, which handles blank lines in reports from p5-Mail-SpamAssassin-2.54. Submitted: Oliver Eikemeier <eikemeier@fillmore-labs.com>
Revision 1.135: download - view: text, markup, annotated - select for diffs
Mon May 19 09:16:49 2003 UTC (8 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.134: preferred, colored
Changes since revision 1.134: +1 -1 lines
Update to exiscan-acl-4.20-06, which fixes a problem handling multiple messages on one SMTP connection. Again, no PORTREVISION bump, because WITH_EXISCAN_ACL is not the default. If I get hit by a bus, please hand this port over to the submitter. Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
Revision 1.134: download - view: text, markup, annotated - select for diffs
Fri May 16 11:41:56 2003 UTC (8 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.133: preferred, colored
Changes since revision 1.133: +1 -1 lines
Update to exiscan-acl-4.20-04. PORTREVISION has not been bumped, because WITH_EXISCAN_ACL is not the default case.
Revision 1.133: download - view: text, markup, annotated - select for diffs
Thu May 15 15:18:05 2003 UTC (8 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.132: preferred, colored
Changes since revision 1.132: +61 -17 lines
* Update to exim-4.20, featuring host of minor bugfixes and some feature enhancements. Non-critical upgrade. * Distribution site fixes and cleanups (somehow ommitted in prev delta). * Put distribution files in a subdirectory. * Optional support for exiscan-acl; exiscan is still the default. I think the submitter is doing a great job. PR: ports/52228 Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
Revision 1.132: download - view: text, markup, annotated - select for diffs
Mon May 12 09:44:01 2003 UTC (8 years, 9 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.131: preferred, colored
Changes since revision 1.131: +9 -5 lines
* Distribution site fixes and cleanups. * Add support for db41. * Fix bug in check_dir_size. * Fix obscure bug in address rewriting. * Rename patch-src::auths::plantext.c to ...::plaintext.c, without a repo-copy. * Fix for unqualified redirection addresses prefixed with '\'. Bump PORTREVISION accordingly. PR: ports/50984, ports/51279, ports/51300 Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
Revision 1.131: download - view: text, markup, annotated - select for diffs
Wed Apr 9 18:44:05 2003 UTC (8 years, 10 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.130: preferred, colored
Changes since revision 1.130: +1 -0 lines
1) Fix reproducible plaintext authentication crash. 2) In the sample configuration file, allow relaying from the IPv6 and IPv4 localhost addresses. This fixes relaying problems for folks using things like IPv6-enabled mailman. Bump PORTREVISION accordingly. Reported by: Alexander Sabourenkov <lxnt@caravan.ru> (1) Mark Edwards <mark@antsclimbtree.com> (2)
Revision 1.130: download - view: text, markup, annotated - select for diffs
Mon Mar 31 09:27:07 2003 UTC (8 years, 10 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.129: preferred, colored
Changes since revision 1.129: +41 -17 lines
* Update exim-4.12 -> exim-4.14: This is a maintenance release, but there are a few edge cases where backward compatibikity in the configure file was broken. While upgrading is recommended, administrators are encouraged to Update exim-4.12 -> exim-4.14: This is a maintenance release, but there are a few edge cases where backward compatibikity in the configure file was broken. While upgrading is recommended, administrators are encouraged to examine the README.UPDATING file in the distribution. * Catch up to changes in the ports tree with respect to available OpenLDAP releases. While backward compatibility is preserved, administrators may use WITH_OPENLDAP1, WITH_OPENLDAP20 and WITH_OPENLDAP21 for more fine-grained control of the OpenLDAP release on which to depend. Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
Revision 1.129: download - view: text, markup, annotated - select for diffs
Fri Mar 7 09:39:52 2003 UTC (8 years, 11 months ago) by sheldonh
Branches: MAIN
CVS tags: RELEASE_4_8_0
Diff to: previous 1.128: preferred, colored
Changes since revision 1.128: +6 -2 lines
Fix the DB_LIB_VERSION=4 case. Reported by: Andrew Filonov <aef@antar.bryansk.ru> Approved by: portmgr
Revision 1.128: download - view: text, markup, annotated - select for diffs
Fri Mar 7 06:05:50 2003 UTC (8 years, 11 months ago) by ade
Branches: MAIN
Diff to: previous 1.127: preferred, colored
Changes since revision 1.127: +1 -0 lines
Clear moonlight beckons. Requiem mors pacem pkg-comment, And be calm ports tree. E Nomini Patri, E Fili, E Spiritu Sancti.
Revision 1.127: download - view: text, markup, annotated - select for diffs
Tue Mar 4 07:56:11 2003 UTC (8 years, 11 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.126: preferred, colored
Changes since revision 1.126: +2 -2 lines
Update to exiscan patch -25, which fixes a crash bug handling single-part base64 mime messages, introduced in patch -24. Bump PORTREVISION accordingly.
Revision 1.126: download - view: text, markup, annotated - select for diffs
Wed Feb 26 08:36:24 2003 UTC (8 years, 11 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.125: preferred, colored
Changes since revision 1.125: +2 -2 lines
Update exiscan patch to -24, to catch up with the protocol change in p5-Mail-SpamAssassin-2.50. That port update may have been ill-advised so close to a ports freeze, but this new version of the exiscan patch is backward compatible to the original protocol, so if the maintainer of p5-Mail-SpamAssassin rolls back, this port will not require a change. Bump PORTREVISION accordingly. Requested by: "David Haworth" <dave@fyonn.net>
Revision 1.125: download - view: text, markup, annotated - select for diffs
Mon Feb 24 02:56:33 2003 UTC (8 years, 11 months ago) by edwin
Branches: MAIN
Diff to: previous 1.124: preferred, colored
Changes since revision 1.124: +1 -1 lines
Point dependencies on net/openldap2 to net/openldap20
Revision 1.124: download - view: text, markup, annotated - select for diffs
Mon Feb 24 02:26:52 2003 UTC (8 years, 11 months ago) by edwin
Branches: MAIN
Diff to: previous 1.123: preferred, colored
Changes since revision 1.123: +1 -1 lines
Point dependencies on net/openldap to net/openldap12
Revision 1.123: download - view: text, markup, annotated - select for diffs
Tue Feb 18 10:29:46 2003 UTC (8 years, 11 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.122: preferred, colored
Changes since revision 1.122: +2 -2 lines
* Update to exiscan-4.12-23a:
+ Reverts non-backward compatible change in output handling of
CLI AV scanners.
+ Makes a number of options expandable, allowing lookups to determine
their values.
+ Fixes various edge case bugs.
+ Adds MKS AV daemon support.
* Bump PORTREVISION accordingly.
Revision 1.122: download - view: text, markup, annotated - select for diffs
Tue Feb 4 14:07:07 2003 UTC (9 years ago) by sheldonh
Branches: MAIN
Diff to: previous 1.121: preferred, colored
Changes since revision 1.121: +2 -2 lines
1) Update to exiscan-4.12-22, which closes a number of buffer overflows and incorporates a lot of fixes. WARNING, this version of exiscan is not entirely backward-compatible with the previous one: * The following configuration options have been replaced with compile-time definitions and thus must be removed from your Exim configure file if specified there: exiscan_spamd_buffer_max_chunks exiscan_spamd_buffer_init_chunk exiscan_av_buffer_max_chunks exiscan_av_buffer_init_chunk * Because of changes in the way MIME handling is implemented, the following should be added to the Exim configure file to maintain the original behaviour (which was to unpack MIME messages): exiscan_demime_condition = 1 2) Fix handling of SIGCHLD in redirection processes, which resulted in redirection processes vanishing. 3) Bump PORTREVISION accordingly.
Revision 1.121: download - view: text, markup, annotated - select for diffs
Tue Jan 21 10:23:37 2003 UTC (9 years ago) by sheldonh
Branches: MAIN
Diff to: previous 1.120: preferred, colored
Changes since revision 1.120: +1 -0 lines
Do not create missing DB hints files for read-only operations on them; simply fail the lookup. This prevents Exim from creating hints files that it can't use when its DBM method is DB 1.85 (the default). Obtained from: author
Revision 1.120: download - view: text, markup, annotated - select for diffs
Wed Jan 8 13:33:29 2003 UTC (9 years, 1 month ago) by sheldonh
Branches: MAIN
Diff to: previous 1.119: preferred, colored
Changes since revision 1.119: +2 -3 lines
Update 4.10 -> 4.12: For Exim, this includes an enormous number of fixes. Most of these are for esoteric configurations, although if you're bitten by them, you're bitten hard. The fixes also include closing up a buffer overflow that is not believed to be exploitable, and a format string vulnerability that was only exploitable by an Exim admin user, but then provided root access. For Eximon, this just rationalizes a patch we carried locally for ages.
Revision 1.119: download - view: text, markup, annotated - select for diffs
Sat Jan 4 15:53:38 2003 UTC (9 years, 1 month ago) by seanc
Branches: MAIN
Diff to: previous 1.118: preferred, colored
Changes since revision 1.118: +3 -1 lines
Chase libpq version bump.
Revision 1.118: download - view: text, markup, annotated - select for diffs
Mon Nov 4 05:46:31 2002 UTC (9 years, 3 months ago) by edwin
Branches: MAIN
CVS tags: RELEASE_5_0_0
Diff to: previous 1.117: preferred, colored
Changes since revision 1.117: +1 -0 lines
PERL -> REINPLACE And some ports have USE_PERL5=yes now.
Revision 1.117: download - view: text, markup, annotated - select for diffs
Wed Oct 16 10:00:17 2002 UTC (9 years, 3 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.116: preferred, colored
Changes since revision 1.116: +3 -10 lines
Update to rev 16 of the exiscan patch (exiscan-4.10-16). The maintainer has graciously agreed to make a bzip2 version of the exiscan distfile available, so use that instead of the gzip version. This allows us to remove the post-patch target and associated rubbish. Bump PORTREVISION accordingly.
Revision 1.116: download - view: text, markup, annotated - select for diffs
Sat Oct 5 12:18:29 2002 UTC (9 years, 4 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.115: preferred, colored
Changes since revision 1.115: +13 -2 lines
1) Enable directory-search lookups by default and provide WITHOUT_DSEARCH to disable them. 2) Enable NIS lookups by default and provide WITHOUT_NIS to disable them. 3) Bump PORTREVISION accordingly. Submitted by: Matthew Byng-Maddick <mbm+freebsd@colondot.net> (1) Requested by: Nicolas Kowalski <Nicolas.Kowalski@imag.fr> (2)
Revision 1.115: download - view: text, markup, annotated - select for diffs
Thu Sep 19 10:34:12 2002 UTC (9 years, 4 months ago) by sheldonh
Branches: MAIN
CVS tags: RELEASE_4_7_0
Diff to: previous 1.114: preferred, colored
Changes since revision 1.114: +40 -6 lines
Enable exiscan content scanning unless the new knob WITHOUT_EXISCAN is defined. Bump PORTREVISION accordingly.
Revision 1.114: download - view: text, markup, annotated - select for diffs
Mon Sep 16 09:35:40 2002 UTC (9 years, 4 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.113: preferred, colored
Changes since revision 1.113: +1 -0 lines
Enable IPV6 unless WITHOUT_IPV6 is defined.
Revision 1.113: download - view: text, markup, annotated - select for diffs
Thu Sep 12 10:08:58 2002 UTC (9 years, 5 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.112: preferred, colored
Changes since revision 1.112: +50 -11 lines
I agree with the Exim community that the exim-4.xx has reached production
quality.
Move exim to exim-old for folks who need exim-3.xx, because the
configuration file for exim-4.xx is not backward compatible. Move
exim-devel to exim, removing NO_LATEST_LINK:
repo-copy exim -> exim-old
copy over exim-devel -> exim
retire exim-devel
Slave ports are intended for use with the exim port, as before, so they
now build and install for exim-4.xx.
Revision 1.112: download - view: text, markup, annotated - select for diffs
Tue Jun 18 09:43:05 2002 UTC (9 years, 7 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.111: preferred, colored
Changes since revision 1.111: +5 -12 lines
Revert rev 1.109 of Makefile. Given the likelihood of future changes in the configuration affecting the base system's MTA, the management of multiple POST-INSTALL-NOTES files could easily become a nightmare. Instead, use a single POST-INSTALL-NOTES file that includes instructions that, at worst, suggest unnecessary but harmless changes. While here, use bullets instead of a numbered list for the notes, so that future deltas are easier to read. Also, mention the 'daily_status_include_submit_mailq' periodic.conf(5) knob, as reported in PR ports/38925. PR: ports/38925 Submitted by: Pat Lashley <patl+freebsd@phoenix.volant.org>
Revision 1.111: download - view: text, markup, annotated - select for diffs
Thu Apr 18 12:20:19 2002 UTC (9 years, 9 months ago) by sheldonh
Branches: MAIN
CVS tags: RELEASE_4_6_2, RELEASE_4_6_1, RELEASE_4_6_0
Diff to: previous 1.110: preferred, colored
Changes since revision 1.110: +2 -3 lines
Update to exim-3.36: * Incorporates some patches. * Fix pretty obscure queue handling bug. * Update exim-4 spool file format forward-compatibility.
Revision 1.110: download - view: text, markup, annotated - select for diffs
Wed Apr 3 16:15:30 2002 UTC (9 years, 10 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.109: preferred, colored
Changes since revision 1.109: +2 -1 lines
Fix pkg-list following the move from exim.sh.sample to exim.sh. Bump PORTREVISION to reflect the whole rc.d startup change and the "NULLs in message body as exposed to filters" patch.
Revision 1.109: download - view: text, markup, annotated - select for diffs
Wed Apr 3 15:52:32 2002 UTC (9 years, 10 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.108: preferred, colored
Changes since revision 1.108: +12 -5 lines
Cope with -CURRENT's new tri-state sendmail_enable rc.conf(5) variable by using an rc.d script to launch Exim, as was done before I took over this port. This seems to be the most popular approach, and is arguably the simplest. Folks like me who attach some aesthetic value to using rc(8) and mailer.conf(8) to launch Exim at startup time should know enough to blow away the rc.d script and do things any way they please. For now, use two versions of the POST-INSTALL-NOTES, the only difference being that the one given to -CURRENT users suggests setting sendmail_enable to 'NONE', while the one for -STABLE users suggests 'NO'.
Revision 1.108: download - view: text, markup, annotated - select for diffs
Mon Feb 25 12:51:33 2002 UTC (9 years, 11 months ago) by sheldonh
Branches: MAIN
CVS tags: RELEASE_5_0_DP1
Diff to: previous 1.107: preferred, colored
Changes since revision 1.107: +1 -0 lines
Cope with the fact that at least one 3rd-party package against which Exim may be linked (MySQL) uses a startup script to add its library path to the linker hints. Explain the problem in POST-INSTALL-NOTES and provide a sample startup script. I think such packages should do away with the script and provide POST-INSTALL-NOTES that encourage the operator to add the library path to ldconfig_paths in /etc/rc.conf, but provide this work-around anyway. Reported by: Oliver Brandmueller <ob@e-Gitt.NET>
Revision 1.107: download - view: text, markup, annotated - select for diffs
Tue Feb 19 18:35:30 2002 UTC (9 years, 11 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.106: preferred, colored
Changes since revision 1.106: +2 -3 lines
Update to exim-3.35: Most notable fixes include tightened string handling in a few pathalogical cases that some people suspect might be exploitable, at least in the form of a DoS. Requested by: Randy Bush <randy@psg.com>
Revision 1.106: download - view: text, markup, annotated - select for diffs
Mon Jan 28 13:46:25 2002 UTC (10 years ago) by sheldonh
Branches: MAIN
Diff to: previous 1.105: preferred, colored
Changes since revision 1.105: +9 -0 lines
Enable the LMTP transport by default and provide a knob for disabling it. There are just too many people who need this for "black box" POP3/IMAP services to justify the bytes saved in the default package.
Revision 1.105: download - view: text, markup, annotated - select for diffs
Mon Jan 7 12:06:08 2002 UTC (10 years, 1 month ago) by sheldonh
Branches: MAIN
CVS tags: RELEASE_4_5_0
Diff to: previous 1.104: preferred, colored
Changes since revision 1.104: +2 -3 lines
Update to exim-3.34: * Mostly incorporates patches already carried by the port. * Fixes a vulnerability in pipe handling, which was not exposed by the default configuration, but which could have been exposed if the configuration were altered appropriately.
Revision 1.104: download - view: text, markup, annotated - select for diffs
Tue Dec 11 12:42:29 2001 UTC (10 years, 2 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.103: preferred, colored
Changes since revision 1.103: +1 -1 lines
Bump PORTREVISION for this recent change: Build Exim with compile-time defaults for exim_user and exim_group. Use the newly added mailnull user, and the now well-established group mail. The use of compile-time defaults for these values is not required for many sites, but are important for more exotic applications. This ensures that the packages are useful to the widest audience possible.
Revision 1.103: download - view: text, markup, annotated - select for diffs
Fri Nov 30 14:31:11 2001 UTC (10 years, 2 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.102: preferred, colored
Changes since revision 1.102: +4 -1 lines
Stop people complaining about the absence of plain text versions of the documentation by installing them. Update the post-install notes to reflect the presence of the new exim-doc-* ports for alternative documentation formats. Bump PORTREVISION.
Revision 1.102: download - view: text, markup, annotated - select for diffs
Wed Nov 28 10:55:17 2001 UTC (10 years, 2 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.101: preferred, colored
Changes since revision 1.101: +3 -3 lines
Catch up with the location of the distfile on the master site and mirrors. The exim-3.x distribution has been moved into exim3 in preparation for the advent of exim-4.x. Reported by: wjv
Revision 1.101: download - view: text, markup, annotated - select for diffs
Wed Nov 14 11:25:42 2001 UTC (10 years, 2 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.100: preferred, colored
Changes since revision 1.100: +1 -1 lines
Add the author's patch to fix bad handling of a disk space shortage on pipeline input. Bump PORTREVISION to reflect the change. Obtained from: exim-users@exim.org Message-Id: <Pine.SOL.4.33.0111131315260.9828-100000@virgo.cus.cam.ac.uk>
Revision 1.100: download - view: text, markup, annotated - select for diffs
Fri Nov 2 17:11:14 2001 UTC (10 years, 3 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.99: preferred, colored
Changes since revision 1.99: +1 -1 lines
Add the author's patch to fix a failure to reap children on BSD systems, where SIG_IGN as the signal handler for SIGCHLD is bad. This is only an issue when a significant number of messages is received via pipe (e.g. with -bS) at a faster rate than they can be dealt with by parallel delivery agents (e.g. -odqs). Bump PORTREVISION to reflect the change. Obtained from: exim-users@exim.org Message-Id: Pine.SOL.4.33.0111021349170.19636-100000@virgo.cus.cam.ac.uk
Revision 1.99: download - view: text, markup, annotated - select for diffs
Fri Nov 2 10:24:52 2001 UTC (10 years, 3 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.98: preferred, colored
Changes since revision 1.98: +2 -2 lines
Add the author's patch to fix broken handling of queue_list_requires_admin and the -bpc flag. Bump PORTREVISION to reflect the change. Obtained from: exim-users@exim.org Message-Id: Pine.SOL.4.33.0110301326040.24148-100000@virgo.cus.cam.ac.uk
Revision 1.98: download - view: text, markup, annotated - select for diffs
Wed Sep 26 16:31:19 2001 UTC (10 years, 4 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.97: preferred, colored
Changes since revision 1.97: +2 -1 lines
Fix the message_body_size filter variable bug reported by Phil Chambers to the exim-users mailing list on 2001-09-19 using the patch posted to the list by the author on 2001-09-24. Bump PORTREVISION accordingly.
Revision 1.97: download - view: text, markup, annotated - select for diffs
Wed Sep 12 23:46:55 2001 UTC (10 years, 5 months ago) by sheldonh
Branches: MAIN
CVS tags: RELEASE_4_4_0
Diff to: previous 1.96: preferred, colored
Changes since revision 1.96: +2 -2 lines
Fix inversion in NOPORTDOCS test introduced in previous delta.
Revision 1.96: download - view: text, markup, annotated - select for diffs
Tue Sep 11 11:06:53 2001 UTC (10 years, 5 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.95: preferred, colored
Changes since revision 1.95: +9 -2 lines
* Drop deprecated USE_PERL5. * Move the contents of pkg-message into POST-INSTALL-NOTES, which gets installed in the !NOPORTDOCS case for future reference. * Refer to POST-INSTALL-NOTES from pkg-message in the !NOPORTDOCS case. In the NOPORTDOCS case, use POST-INSTALL-NOTES as the pkg-message.
Revision 1.95: download - view: text, markup, annotated - select for diffs
Mon Aug 27 13:23:52 2001 UTC (10 years, 5 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.94: preferred, colored
Changes since revision 1.94: +18 -28 lines
* Break eximon into its own port. The goal is to allow administrators to install and use Exim from the packages without having to install XFree86. * Remove a stale SEDLIST entry for BINOWN handling. * Use LOCALBASE instead of PREFIX when referring to already installed software. * Use more strict pattern matching in SEDLIST. Folks who want eximon (the Exim monitor) must now either build exim or one of its slave ports with WITH_EXIMON defined or install the standalone exim-monitor package.
Revision 1.94: download - view: text, markup, annotated - select for diffs
Thu Aug 16 09:54:51 2001 UTC (10 years, 5 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.93: preferred, colored
Changes since revision 1.93: +4 -3 lines
* Update to exim-3.33:
- Fixes bug where setting local part to /dev/null without setting
file_transport caused Exim to crash.
- Other fixes do not apply to FreeBSD.
* Now that RELENG_4 has bzip2 in the base system, use the bz2
distfiles.
Revision 1.93: download - view: text, markup, annotated - select for diffs
Mon Jul 30 10:03:30 2001 UTC (10 years, 6 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.92: preferred, colored
Changes since revision 1.92: +3 -5 lines
Update to exim-3.32: Incorporates the fixes for non-mapped IPv6 listening sockets. Fixes unclosed MySQL connection bug in delivery subprocesses. Better RFC compliance with respect to Resent-Subject and Resent-Reply-To. Fix handling of unset hostname for OpenLDAP2. Drop an unclosed connection if more than 5 uncrecognized commands are received. Handle \t in fail messages properly.
Revision 1.92: download - view: text, markup, annotated - select for diffs
Wed Jul 11 11:22:32 2001 UTC (10 years, 7 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.91: preferred, colored
Changes since revision 1.91: +2 -2 lines
Too many people have complained about my choice of MTA user (sendmail). Bite the bullet _now_ and use MTA user exim instead. This means that only early adopters of Exim-3.31 are affected, rather than lots more folks further down the line. I still think mailnull is better, but nobody in the Exim community agrees with me. :-) Bump PORTREVISION as appropriate.
Revision 1.91: download - view: text, markup, annotated - select for diffs
Tue Jul 10 10:48:42 2001 UTC (10 years, 7 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.90: preferred, colored
Changes since revision 1.90: +1 -1 lines
(forced commit) The previous delta bumped PORTREVISION in honour of changed IPv6 support.
Revision 1.90: download - view: text, markup, annotated - select for diffs
Tue Jul 10 10:47:29 2001 UTC (10 years, 7 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.89: preferred, colored
Changes since revision 1.89: +24 -13 lines
Make the purpose of WITHOUT_X11 clearer, based on feedback from several users. Fix the call to bind() in daemon.c so that the correct addrlen is passed for a IPv4 or IPv6 struct sockaddr. This fixes the problem where an exim binary compiled for IPv6 support won't bind() to any IPv4 addresses. The author approves of this patch. Now that exim+ipv6 works for non-ipv6 FreeBSD hosts, make IPv6 support default and provide a WITHOUT_IPV6 knob for folks who don't want it. Turn on WITHOUT_IPV6 for pre-KAME systems, to give RELENG_3 folks a fighting chance.
Revision 1.89: download - view: text, markup, annotated - select for diffs
Tue Jul 3 11:14:13 2001 UTC (10 years, 7 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.88: preferred, colored
Changes since revision 1.88: +12 -4 lines
Fixes for building with LDAP lookup support: * Define LDAP_LIB_TYPE conditionally so that the operator can override it. * Allow OPENLDAP1 (or UMICHIGAN) and OPENLDAP2 for LDAP_LIB_TYPE, depending on the correct ports for each. The default behaviour of the port is unchanged. However, this change allows for an exim-ldap2 slave port, if desired, and limits LDAP lookup types to those that can be supported by the FreeBSD ports tree.
Revision 1.88: download - view: text, markup, annotated - select for diffs
Mon Jul 2 14:48:10 2001 UTC (10 years, 7 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.87: preferred, colored
Changes since revision 1.87: +3 -3 lines
Update to exim-3.31: * Incorporates two patches previously supplied with the port. * Fixes obscure bug affecting return_path transport option under certain conditions.
Revision 1.87: download - view: text, markup, annotated - select for diffs
Wed Jun 27 10:33:38 2001 UTC (10 years, 7 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.86: preferred, colored
Changes since revision 1.86: +3 -3 lines
Catch up with the new postgresql7 layout scheme introduced in rev 1.75 of ports/databases/postgresql7 in April this year. This unbreaks the mysql-postgresql7 slave port.
Revision 1.86: download - view: text, markup, annotated - select for diffs
Mon Jun 18 15:41:37 2001 UTC (10 years, 7 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.85: preferred, colored
Changes since revision 1.85: +4 -5 lines
Update 3.22 -> 3.30: This is primarily a maintenance release, though there are a very small number of functional additions. This release does not address the "orphaned -D spool files" problem, but to date this problem has not been observed on FreeBSD systems.
Revision 1.85: download - view: text, markup, annotated - select for diffs
Fri Jun 15 14:39:48 2001 UTC (10 years, 7 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.84: preferred, colored
Changes since revision 1.84: +2 -2 lines
Bump PORTREVISION to reflect the change made in rev 1.84 (exim.sh retired, use mailwrapper(8) instead).
Revision 1.84: download - view: text, markup, annotated - select for diffs
Fri Jun 15 13:16:38 2001 UTC (10 years, 7 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.83: preferred, colored
Changes since revision 1.83: +1 -2 lines
Exim is a drop-in replacement for sendmail. FreeBSD ships with
mailwrapper, which facilitates drop-in replacements for sendmail.
Retire the exim.sh that was installed into ${PREFIX}/etc/rc.d/ to
start Exim, in favour of the mailwrapper approach.
Revision 1.83: download - view: text, markup, annotated - select for diffs
Thu Jun 14 18:43:04 2001 UTC (10 years, 7 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.82: preferred, colored
Changes since revision 1.82: +1 -3 lines
Retire our local copy of configure.default, which is a maintenance pain. Replace it with a patch against the distribution configure.default, which changes as little as possible so that folks who are accustomed to Exim on other platforms will not be astonished. Install the file as configure.default instead of configure.sample, since it's as close as damnit to the default Exim configuration file. The only arguably unnecessary deviation from the default is: * Accept SMTP relay from the loopback IP address. Too many applications require this, and the window of abuse is arguably negligible.
Revision 1.82: download - view: text, markup, annotated - select for diffs
Thu Jun 14 17:37:58 2001 UTC (10 years, 7 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.81: preferred, colored
Changes since revision 1.81: +3 -1 lines
Install the Exim info files with more useful names. Before, the command ``info exim'' would fail to descend into any of the 3 Exim info files from the dir top branch. While we're at it, add a pkg-message that 1) Points to the documentation 2) Explains how to get Exim started
Revision 1.81: download - view: text, markup, annotated - select for diffs
Tue Jun 12 18:05:54 2001 UTC (10 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.80: preferred, colored
Changes since revision 1.80: +12 -3 lines
* Add a WITH_IPV6 knob. Exim breaks if compiled with IPv6 support and run with a kernel that has had IPv6 ommitted from its configuration, so I can't make this a default (yet). * Remove crazy handling of exim.sh and replace it with something much simpler and more sane. This allows non-root users to build, even if they can't install (properly).
Revision 1.80: download - view: text, markup, annotated - select for diffs
Mon Jun 11 15:07:47 2001 UTC (10 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.79: preferred, colored
Changes since revision 1.79: +2 -2 lines
Apply officially sanctioned patch to close a format string vulnerability in exim batch SMTP mode. The vulnerability is _not_ exploitable by external SMTP callers.
Revision 1.79: download - view: text, markup, annotated - select for diffs
Mon Jun 11 13:56:11 2001 UTC (10 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.78: preferred, colored
Changes since revision 1.78: +2 -2 lines
Retire the local copy of exim_monitor/EDITME from the port, since it is simply the original with the defaults uncommented and unchanged.
Revision 1.78: download - view: text, markup, annotated - select for diffs
Mon Jun 11 09:40:24 2001 UTC (10 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.77: preferred, colored
Changes since revision 1.77: +11 -4 lines
Enable CDB-style lookups by default and provide a knob for disabling this support. Fix the SEDLIST-building logic for disabling mbx and mailstore alternative mailbox formats. Bump PORTREVISION accordingly.
Revision 1.77: download - view: text, markup, annotated - select for diffs
Mon Jun 11 09:20:19 2001 UTC (10 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.76: preferred, colored
Changes since revision 1.76: +5 -2 lines
Sandbox Exim. Since BSD UNIX still doesn't offer a user for running an MTA in a sandbox the way many Linux distributions do, the Exim port uses the traditional sandbox user for sendmail, called 'sendmail'. Bump PORTREVISION accordingly.
Revision 1.76: download - view: text, markup, annotated - select for diffs
Mon Jun 11 07:54:45 2001 UTC (10 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.75: preferred, colored
Changes since revision 1.75: +2 -2 lines
The previous revision should have bumped PORTREVISION. Do so now.
Revision 1.75: download - view: text, markup, annotated - select for diffs
Mon Jun 11 07:53:55 2001 UTC (10 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.74: preferred, colored
Changes since revision 1.74: +3 -1 lines
Don't link against libssl and libcrypto when TLS support is disabled.
Revision 1.74: download - view: text, markup, annotated - select for diffs
Mon Jun 11 07:49:52 2001 UTC (10 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.73: preferred, colored
Changes since revision 1.73: +3 -6 lines
Finally remove the bastardized local copy of EDITME (called files/Makefile) that's been a maintenance PITA for too long. Replace it with a patch against EDITME, now that the sed rules that operate on it are mostly sensible.
Revision 1.73: download - view: text, markup, annotated - select for diffs
Mon Jun 11 07:22:50 2001 UTC (10 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.72: preferred, colored
Changes since revision 1.72: +2 -2 lines
Fix sed expression in previous (untested) commit.
Revision 1.72: download - view: text, markup, annotated - select for diffs
Mon Jun 11 07:21:46 2001 UTC (10 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.71: preferred, colored
Changes since revision 1.71: +3 -1 lines
When WITH_TCP_WRAPPERS is not defined, actually remove the XX_ cruft from EXTRALIBS.
Revision 1.71: download - view: text, markup, annotated - select for diffs
Mon Jun 11 07:20:07 2001 UTC (10 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.70: preferred, colored
Changes since revision 1.70: +30 -29 lines
Use the standard ports mechanism for enabling and disabling features: * Features enabled by default are disabled by defining WITHOUT_FEATURE. * Features disabled by default are enabled by defining WITH_FEATURE. Requested by: alex
Revision 1.70: download - view: text, markup, annotated - select for diffs
Mon Jun 11 07:07:07 2001 UTC (10 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.69: preferred, colored
Changes since revision 1.69: +13 -13 lines
Prevent sed rules from messing with real comments, instead of the commented out make values that they are supposed to operate on. Reported by: Marc Silver <marcs@draenor.org>
Revision 1.69: download - view: text, markup, annotated - select for diffs
Sun Jun 10 14:04:09 2001 UTC (10 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.68: preferred, colored
Changes since revision 1.68: +2 -2 lines
Bump PORTREVISION to reflect the significant changes made in the default feature set today.
Revision 1.68: download - view: text, markup, annotated - select for diffs
Sun Jun 10 14:02:48 2001 UTC (10 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.67: preferred, colored
Changes since revision 1.67: +3 -3 lines
Fix the embedded Perl interpreter hook.
Revision 1.67: download - view: text, markup, annotated - select for diffs
Sun Jun 10 13:59:43 2001 UTC (10 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.66: preferred, colored
Changes since revision 1.66: +13 -6 lines
Disable TCP Wrappers support by default, but provide a hook to enable it. TCP Wrappers support surprises too many novices.
Revision 1.66: download - view: text, markup, annotated - select for diffs
Sun Jun 10 13:50:22 2001 UTC (10 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.65: preferred, colored
Changes since revision 1.65: +1 -2 lines
Remove stale comment.
Revision 1.65: download - view: text, markup, annotated - select for diffs
Sun Jun 10 13:43:49 2001 UTC (10 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.64: preferred, colored
Changes since revision 1.64: +17 -16 lines
Untangle the mess I made of SMTP AUTH authentication mechanisms. AUTH_CRAM_MD5 and AUTH_PLAINTEXT support have nothing to do with PAM, other than that all three can be used as authentication mechanisms for SMTP AUTH. Enable all three by default, so that the package includes them.
Revision 1.64: download - view: text, markup, annotated - select for diffs
Sun Jun 10 13:17:09 2001 UTC (10 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.63: preferred, colored
Changes since revision 1.63: +5 -5 lines
Enable TLS by default so that it's included in the package. Allow the operator to disable the embedded Perl interpreter in the port build.
Revision 1.63: download - view: text, markup, annotated - select for diffs
Sun Jun 10 13:10:33 2001 UTC (10 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.62: preferred, colored
Changes since revision 1.62: +5 -3 lines
Fix the comment about WITHOUT_X11.
Revision 1.62: download - view: text, markup, annotated - select for diffs
Sun Jun 10 13:01:45 2001 UTC (10 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.61: preferred, colored
Changes since revision 1.61: +9 -8 lines
Enable maildir, mailstore and mbx support by default so that they're included in the package. Folks who don't want them can build Exim as follows: cd /path/to/ports/mail/exim make WITH_MAILDIR=no WITH_MAILSTORE=no WITH_MBX=no
Revision 1.61: download - view: text, markup, annotated - select for diffs
Tue May 8 11:20:24 2001 UTC (10 years, 9 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.60: preferred, colored
Changes since revision 1.60: +2 -1 lines
Bump PORTREVISION in honour of rev 1.6 of files/configure.default.
Revision 1.60: download - view: text, markup, annotated - select for diffs
Mon Apr 30 10:38:00 2001 UTC (10 years, 9 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.59: preferred, colored
Changes since revision 1.59: +2 -2 lines
Update master site. Reported by: Peter Radcliffe <pir@pir.net>
Revision 1.59: download - view: text, markup, annotated - select for diffs
Mon Mar 5 10:32:14 2001 UTC (10 years, 11 months ago) by sheldonh
Branches: MAIN
CVS tags: RELEASE_4_3_0
Diff to: previous 1.58: preferred, colored
Changes since revision 1.58: +3 -3 lines
Update 3.20 -> 3.22, which fixes a number of bugs.
Revision 1.58: download - view: text, markup, annotated - select for diffs
Mon Feb 5 15:10:35 2001 UTC (11 years ago) by olgeni
Branches: MAIN
Diff to: previous 1.57: preferred, colored
Changes since revision 1.57: +2 -2 lines
Spaces->tabs in the mail category. (I know, I look boring and pedant :o)
Revision 1.57: download - view: text, markup, annotated - select for diffs
Sun Jan 21 15:40:40 2001 UTC (11 years ago) by dirk
Branches: MAIN
Diff to: previous 1.56: preferred, colored
Changes since revision 1.56: +2 -2 lines
Switch from mysql322-{client,server} to mysql323-{client,server}.
mysql323-client installs libmysqlclient.so.10 (instead of
libmysqlclient.so.6).
mysql323-{client,server} are production quality, now (according to
MySQL AB at least).
Revision 1.56: download - view: text, markup, annotated - select for diffs
Thu Dec 21 08:56:52 2000 UTC (11 years, 1 month ago) by sheldonh
Branches: MAIN
Diff to: previous 1.55: preferred, colored
Changes since revision 1.55: +11 -1 lines
Sync up our copy of EDITME (files/Makefile) and add hooks for enabling STARTTLS support. The hooks are disabled by default and do not support RELENG_3.
Revision 1.55: download - view: text, markup, annotated - select for diffs
Thu Dec 21 08:02:23 2000 UTC (11 years, 1 month ago) by sheldonh
Branches: MAIN
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +4 -4 lines
Update to exim-3.20.
Revision 1.54: download - view: text, markup, annotated - select for diffs
Sat Aug 26 16:34:15 2000 UTC (11 years, 5 months ago) by andreas
Branches: MAIN
CVS tags: RELEASE_4_2_0, RELEASE_4_1_1
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +2 -2 lines
old postgresql port has been removed. use postgresql7, which has proven stability now.
Revision 1.53: download - view: text, markup, annotated - select for diffs
Mon Jul 24 10:37:08 2000 UTC (11 years, 6 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +3 -5 lines
Update to 3.16: Bugfix release, featuring a fix for one critical bug in the handling of messages frozen by system filters for manual thawing.
Revision 1.52: download - view: text, markup, annotated - select for diffs
Fri Jul 21 18:09:48 2000 UTC (11 years, 6 months ago) by asami
Branches: MAIN
CVS tags: RELEASE_4_1_0
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +3 -1 lines
Mark FORBIDDEN, there is a pretty bad bug that was just fixed in a new version. Submitted by: maintainer
Revision 1.51: download - view: text, markup, annotated - select for diffs
Tue Jun 27 14:24:29 2000 UTC (11 years, 7 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +3 -3 lines
Update 3.14 -> 4.15: Allow admins to start migrating to the new nomenclature for failing addresses: fail_soft -> pass fail_hard -> fail The queryprogram router should use the word decline instead of fail. New keyword timezone used to manipulate the TZ variable.
Revision 1.50: download - view: text, markup, annotated - select for diffs
Wed May 31 07:27:49 2000 UTC (11 years, 8 months ago) by sheldonh
Branches: MAIN
CVS tags: RELEASE_3_5_0
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +2 -2 lines
Fix the LIB_DEPENDS line for the WITH_PGSQL case. Reported by: "Jason J. Horton" <jason@intercom.com>
Revision 1.49: download - view: text, markup, annotated - select for diffs
Tue May 23 09:23:44 2000 UTC (11 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +41 -24 lines
Update 3.13 -> 3.14: New pgsql lookup! Bugfixes. Port-related changes: Conditionalize embedded Perl interpreter on WITH_PERL. Fix SMTP AUTH support. Sync up files/Makefile.
Revision 1.48: download - view: text, markup, annotated - select for diffs
Thu May 18 13:59:30 2000 UTC (11 years, 8 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +10 -4 lines
Provide visual cues to frob the ldap knobs, after receiving user feedback that they work. Reported by: rip@itouch.co.za (R.I.Pienaar)
Revision 1.47: download - view: text, markup, annotated - select for diffs
Mon Apr 17 00:18:08 2000 UTC (11 years, 9 months ago) by reg
Branches: MAIN
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +27 -27 lines
Standardize all user defined options to the booleans WITH_FOO and WITHOUT_FOO. Begin the process of reserving these prefixes for user defined options. No comment by: ports
Revision 1.46: download - view: text, markup, annotated - select for diffs
Thu Apr 13 19:59:35 2000 UTC (11 years, 10 months ago) by cpiazza
Branches: MAIN
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +3 -3 lines
Update to use PORTNAME/PORTVERSION
Revision 1.45: download - view: text, markup, annotated - select for diffs
Tue Apr 4 11:51:19 2000 UTC (11 years, 10 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +17 -2 lines
Fix mysql lookups and add experimental glue for ldap lookups. Reported by: Peter Lockhart <peter@key.co.za>
Revision 1.44: download - view: text, markup, annotated - select for diffs
Mon Mar 13 08:03:41 2000 UTC (11 years, 11 months ago) by asami
Branches: MAIN
CVS tags: RELEASE_4_0_0
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +4 -19 lines
Fix ldap handling. Submitted by: sheldonh
Revision 1.43: download - view: text, markup, annotated - select for diffs
Sat Feb 19 17:18:27 2000 UTC (11 years, 11 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +18 -1 lines
Add knobs (turned off by default) for non-standard mailbox formats. Submitted by: Johann Visagie <wjv@sunesi.net>
Revision 1.42: download - view: text, markup, annotated - select for diffs
Fri Jan 28 15:57:44 2000 UTC (12 years ago) by sheldonh
Branches: MAIN
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +28 -10 lines
Update to 3.13: Bugfix release. IPv6 support is compiled in. I can't test to see whether it works, and got no feedback from a request for testing on the exim-users mailing list. Also added hooks for SMTP AUTH and PAM support, disabled by default for now.
Revision 1.41: download - view: text, markup, annotated - select for diffs
Thu Dec 9 08:25:21 1999 UTC (12 years, 2 months ago) by sheldonh
Branches: MAIN
CVS tags: RELEASE_3_4_0
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +3 -3 lines
Update to 3.12: Fix a problem where themessage log file is fclosed twice. Fix a long-standing bug in the ``contains'' operation in filter files.
Revision 1.40: download - view: text, markup, annotated - select for diffs
Thu Dec 2 15:41:49 1999 UTC (12 years, 2 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +5 -5 lines
Update to 3.11: * This is small bugfix release over the last major release, 3.10. * Exim 3.10 contains numerous bugfixes and new features, described at: ftp://ftp.exim.org/pub/exim/ChangeLogs/NewStuff-3.10.gz Note that the new PAM support is _not_ enabled in this port yet.
Revision 1.39: download - view: text, markup, annotated - select for diffs
Tue Aug 31 06:47:19 1999 UTC (12 years, 5 months ago) by mharo
Branches: MAIN
CVS tags: RELEASE_3_3_0
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +2 -2 lines
FreeBSD.ORG -> FreeBSD.org Prompted by PR: 13476, 13477 Submitted by: KATO Tsuguru
Revision 1.38: download - view: text, markup, annotated - select for diffs
Sat Aug 28 01:57:35 1999 UTC (12 years, 5 months ago) by mharo
Branches: MAIN
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +2 -2 lines
ln -> ${LN}
Revision 1.37: download - view: text, markup, annotated - select for diffs
Thu Aug 26 08:29:04 1999 UTC (12 years, 5 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +2 -2 lines
Fix install error for users who comment out USE_XLIB. While I'm here, bump "Version required:". Reported by: Mike Freislich <mikef@korbitec.com>
Revision 1.36: download - view: text, markup, annotated - select for diffs
Wed Aug 25 06:50:08 1999 UTC (12 years, 5 months ago) by obrien
Branches: MAIN
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +1 -1 lines
Change Id->FreeBSD.
Revision 1.35: download - view: text, markup, annotated - select for diffs
Tue Aug 3 17:01:37 1999 UTC (12 years, 6 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +48 -16 lines
Update 3.02 -> 3.03: Added Makefile knob for the new MySQL support within lookups. Added Makefile knob for the improved LDAP support. Turn TCP Wrappers support as default behaviour. Turn on embedded perl. See doc/NewStuff in the distfile for bugfixes and enhancements.
Revision 1.34: download - view: text, markup, annotated - select for diffs
Mon Jun 21 11:07:07 1999 UTC (12 years, 7 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +2 -2 lines
Update maintainer's e-mail address.
Revision 1.33: download - view: text, markup, annotated - select for diffs
Thu Jun 17 08:53:10 1999 UTC (12 years, 7 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +2 -2 lines
Bump "Version required". Sync our customized files/Makefile with exim's src/EDITME, whence it comes.
Revision 1.32: download - view: text, markup, annotated - select for diffs
Thu Jun 17 08:46:27 1999 UTC (12 years, 7 months ago) by sheldonh
Branches: MAIN
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +3 -1 lines
Work around the way odd shells sabotage exim's arch-type script. Reported by: Martti Kuparinen <martti@research.zopps.fi>
Revision 1.31: download - view: text, markup, annotated - select for diffs
Wed Jun 16 02:55:31 1999 UTC (12 years, 7 months ago) by simokawa
Branches: MAIN
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +5 -4 lines
Replace `FreeBSD-i386` with `${OPSYS}-${MACHINE_ARCH}'.
Revision 1.30: download - view: text, markup, annotated - select for diffs
Wed Jun 9 11:09:56 1999 UTC (12 years, 8 months ago) by steve
Branches: MAIN
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +1 -1 lines
Here's a appropriate commit message for the last commit. Upgrade to version 3.02, featuring: Simplified handling of domain/host/net/address lists. Regex handling bugfixes and improvements. Bugfixes. Logical improvements. Documentation improvements. WARNING: backward compatability issues. See README.UPDATING in the distribution tarball for details. Change maintainer's address.
Revision 1.29: download - view: text, markup, annotated - select for diffs
Tue Jun 8 23:27:48 1999 UTC (12 years, 8 months ago) by steve
Branches: MAIN
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +5 -5 lines
Update to version 3.02. PR: 12004 Submitted by: maintainer
Revision 1.28: download - view: text, markup, annotated - select for diffs
Sat Jun 5 22:31:01 1999 UTC (12 years, 8 months ago) by mharo
Branches: MAIN
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +1 -6 lines
Remove the test to create ${PREFIX}/share/info/dir as it is now
in bsd.port.mk and this helps to unify the check and install.
Revision 1.27: download - view: text, markup, annotated - select for diffs
Wed Feb 10 16:09:48 1999 UTC (13 years ago) by markm
Branches: MAIN
CVS tags: RELEASE_3_2_0, RELEASE_3_1_0
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +5 -5 lines
Explicit use of Berkeley DB (careful, DBM users!). Fixed use of $local_part in router configurations. Fixed "unseen" on router or director on deferment of delivery. Other minor fixes. Fixed handling of USE_XLIB to deal with =NO correctly. Submitted by: maintainer
Revision 1.26: download - view: text, markup, annotated - select for diffs
Wed Jan 27 14:07:07 1999 UTC (13 years ago) by markm
Branches: MAIN
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +4 -4 lines
Upgrade to version 2.11, featuring minor bug-fixes and some new features. New features are backward compatible. Submitted by: maintainer
Revision 1.25: download - view: text, markup, annotated - select for diffs
Thu Dec 17 10:54:23 1998 UTC (13 years, 1 month ago) by markm
Branches: MAIN
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +9 -9 lines
Upgrade to 2.10 release. Bugfixes and some minor wishlist items added, documentation upgraded. Fixed nit in configure.default file. Requested by: maintainer
Revision 1.24: download - view: text, markup, annotated - select for diffs
Tue Dec 8 15:23:42 1998 UTC (13 years, 2 months ago) by markm
Branches: MAIN
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +24 -21 lines
Upgrade to 2.054 (Testing release!). Patches incorporated by the author were removed. One new patch created to prevent core dumps when running non-listening queue-runners. Handle the difference in BINOWN between stable (bin) and current (root), obviating the need for an INSTALL script. Don't install shell script "place-holders" for eximon when built without USE_XLIB, just touch the files for package-friendliness. Graceful. Improve out-of-the-box relay handling; localhost symoblic name was weak, use private subnet numerical net instead. Submitted by: maintainer
Revision 1.23: download - view: text, markup, annotated - select for diffs
Sun Nov 29 12:21:58 1998 UTC (13 years, 2 months ago) by asami
Branches: MAIN
CVS tags: RELEASE_2_2_8
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +6 -1 lines
Create info/dir before attempting install-info.
Revision 1.22: download - view: text, markup, annotated - select for diffs
Sat Nov 28 05:38:56 1998 UTC (13 years, 2 months ago) by asami
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +2 -1 lines
More USE_XLIBs.
Revision 1.21: download - view: text, markup, annotated - select for diffs
Tue Nov 17 11:05:15 1998 UTC (13 years, 2 months ago) by markm
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +5 -4 lines
Unbreak. Added some more reliable mirrors (well-spread across earth masses).
Revision 1.20: download - view: text, markup, annotated - select for diffs
Tue Nov 17 04:12:10 1998 UTC (13 years, 2 months ago) by asami
Branches: MAIN
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +3 -1 lines
Mark broken, can't fetch from single master site.
Revision 1.19: download - view: text, markup, annotated - select for diffs
Mon Nov 16 09:45:23 1998 UTC (13 years, 2 months ago) by markm
Branches: MAIN
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +10 -12 lines
Upgrade to version 2.053 (test release), which includes embedded perl support and incorporates some FreeBSD-specific patches.
Revision 1.18: download - view: text, markup, annotated - select for diffs
Tue Oct 13 04:16:21 1998 UTC (13 years, 4 months ago) by jseger
Branches: MAIN
CVS tags: RELEASE_3_0_0
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +1 -3 lines
Unbreak for ELF. Submitted by: steve
Revision 1.17: download - view: text, markup, annotated - select for diffs
Mon Oct 12 18:48:52 1998 UTC (13 years, 4 months ago) by jseger
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +3 -1 lines
Mark BROKEN for ELF: gcc -o eximon.bin -L/usr/X11R6/lib dummies.o os.o spool_in.o store.o string.o tree.o em_StripChart.o em_TextPop.o em_globals.o em_init.o em_log.o em_main.o em_menu.o em_queue.o em_strip.o em_text.o em_xs.o em_version.o -lXaw -lXmu -lXt -lXext -lX11 pcre/libpcre.a -lc /usr/libexec/elf/ld: warning: libSM.so.6, needed by /usr/X11R6/lib/libXaw.so, not found (try using --rpath) /usr/libexec/elf/ld: warning: libICE.so.6, needed by /usr/X11R6/lib/libXaw.so, not found (try using --rpath) /usr/X11R6/lib/libXt.so: undefined reference to `SmcSaveYourselfDone' /usr/X11R6/lib/libXt.so: undefined reference to `IceConnectionNumber'
Revision 1.16: download - view: text, markup, annotated - select for diffs
Sat Oct 10 04:12:51 1998 UTC (13 years, 4 months ago) by steve
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +2 -2 lines
Update version required to 2.05. PR: 8209 Submitted by: maintainer
Revision 1.15: download - view: text, markup, annotated - select for diffs
Thu Oct 8 14:31:03 1998 UTC (13 years, 4 months ago) by markm
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +3 -3 lines
Update to 2.05: Major bugfixes
Revision 1.14: download - view: text, markup, annotated - select for diffs
Wed Oct 7 10:49:31 1998 UTC (13 years, 4 months ago) by markm
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +31 -12 lines
Update to 2.02; set Sheldon Hearn as maintainer. *NOTE* Configure file is not backward compatible!! The new configure file is installed as configure.sample.
Revision 1.13: download - view: text, markup, annotated - select for diffs
Mon May 25 12:13:35 1998 UTC (13 years, 8 months ago) by markm
Branches: MAIN
CVS tags: RELEASE_2_2_7
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +7 -5 lines
Ugrade to v1.92.
Revision 1.12: download - view: text, markup, annotated - select for diffs
Mon Feb 9 14:32:28 1998 UTC (14 years ago) by markm
Branches: MAIN
CVS tags: RELEASE_2_2_6
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +5 -5 lines
Upgrade to 1.82 - (Many bug fixes, improved spam filtering, RBL)
Revision 1.11: download - view: text, markup, annotated - select for diffs
Wed Oct 15 20:49:46 1997 UTC (14 years, 3 months ago) by markm
Branches: MAIN
CVS tags: RELEASE_2_2_5
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +4 -4 lines
Update to 1.73. Bug fixes.
Revision 1.10: download - view: text, markup, annotated - select for diffs
Tue Sep 9 15:29:27 1997 UTC (14 years, 5 months ago) by markm
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +5 -8 lines
Upgrade to 1.71. Default in the config file is to forbid relaying. This will make the anti-spam camp happy...
Revision 1.9: download - view: text, markup, annotated - select for diffs
Mon Sep 8 11:18:56 1997 UTC (14 years, 5 months ago) by markm
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +12 -9 lines
Upgrade to 1.70. (Lotsa bug fixes, improved macros, improved filtering)
Revision 1.8: download - view: text, markup, annotated - select for diffs
Wed Feb 26 13:45:02 1997 UTC (14 years, 11 months ago) by markm
Branches: MAIN
CVS tags: RELEASE_2_2_2, RELEASE_2_2_1
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +8 -5 lines
Upgrade to version 1.60. Note! I have fixed a bogon from previous versions where I was putting the executables in $(PREFIX)/bin. They now go in $(PREFIX)/sbin, so make sure your previous binaries have been properly removed!
Revision 1.7: download - view: text, markup, annotated - select for diffs
Sun Dec 1 07:12:08 1996 UTC (15 years, 2 months ago) by markm
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +4 -4 lines
Umgrade to v1.59 - the same as the GNU CD release version.
Revision 1.6: download - view: text, markup, annotated - select for diffs
Sun Nov 17 07:42:27 1996 UTC (15 years, 2 months ago) by obrien
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +4 -4 lines
Convert to use MAN[1-8LN]
Revision 1.5: download - view: text, markup, annotated - select for diffs
Wed Nov 13 18:11:57 1996 UTC (15 years, 3 months ago) by markm
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +5 -5 lines
Upgrade to v1.58
Revision 1.4: download - view: text, markup, annotated - select for diffs
Sun Nov 10 21:31:17 1996 UTC (15 years, 3 months ago) by obrien
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +2 -2 lines
CATEGORIES+= --> CATEGORIES= And clean up variable ordering (as shown in the handbook) as little.
Revision 1.3: download - view: text, markup, annotated - select for diffs
Thu Oct 31 19:25:50 1996 UTC (15 years, 3 months ago) by markm
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +5 -14 lines
Ugrade to version 0.57
Revision 1.2: download - view: text, markup, annotated - select for diffs
Tue Jul 9 21:24:41 1996 UTC (15 years, 7 months ago) by asami
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +5 -1 lines
Author-supplied patch. Submitted by: markm
Revision 1.1.1.1 (vendor branch): download - view: text, markup, annotated - select for diffs
Sat Jul 6 11:13:57 1996 UTC (15 years, 7 months ago) by markm
Branches: PHAZEL
CVS tags: exim_0_53
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +0 -0 lines
Add Exim. Exim is a high performance sendmail replacement (except no UUCP) wiyh powerful retry/requeue and management features. Written by Philip Hazel of Cambridge University. OKed by: asami
Revision 1.1: download - view: text, markup, annotated - select for diffs
Sat Jul 6 11:13:57 1996 UTC (15 years, 7 months ago) by markm
Branches: MAIN
Initial revision
