/mail/assp/

b01902062/git/freebsd-ports-gnome' title='freebsd-ports-gnome Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/mail/popfile
Commit message (Collapse)AuthorAgeFilesLines
* Remove USE_REINPLACE from ports starting with Medwin2006-05-111-1/+0
|
* Update to 0.22.4 just released today. There are very few changes butmatusita2006-02-223-8/+11
| | | | | | | | | | | | | | | good bugfixes and improvements, so update it just now for 6.1-RELEASE. For those using SSL support (WITH_POPFILE_SSL is defined): According to the POPFile version 0.22.4 documentation, POPFile 0.22.4 doesn't work with IO::Socket::SSL version 0.97 that is in security/p5-IO-Socket-SSL. I set this ports as IGNORE if WITH_POPFILE_SSL is defined, to avoid unsupposed failure on SSL support. If systems that have IO::Socket::SSL version 0.96, don't update to 0.97, and make this ports with WITH_POPFILE_SSL *undefined*. POPFile will use IO::Socket::SSL if required by configuration even if WITH_POPFILE_SSL is defined or not during the build.
* Put SHA256 checksums.matusita2005-11-101-0/+2
| | | | | Fix long-standing typo in linux-vmware-toolbox5/distinfo (pass me a pointyhat to me...)
* Update to 0.22.3.matusita2005-11-103-5/+6
|
* Fix ECHO_CMD string, missing double-quote. Pointy hat to me...matusita2004-12-211-1/+1
| | | | | PR: ports/75325 Submitted by: Jin-Shan Tseng
* Update to 0.22.2, with minor updates including:matusita2004-12-204-35/+49
| | | | | | | | - Add WITH_POPFILE_XMLRPC option for XMLRPC module dependency. - Add WITH_POPFILE_SOCKS, but it's just a placeholder... (there's no IO::Socket::Socks module in our ports) - Minor comment cleanup. - Update patch-Bayes.pm for 0.22.2 (actually comments were changed).
* Add missing fileskris2004-11-251-0/+2
|
* Update to 0.22.1.matusita2004-10-242-6/+6
|
* Since popfile 0.22.0 doesn't work with DBD::SQLite 1.x, switch to SQLite2.matusita2004-10-242-3/+14
| | | | | | | | | | | | CAUTION: for existing users, edit your ${HOME}/.popfile/popfile.cfg (or whatever popfile configuration file) as follows: before: bayes_dbconnect dbi:SQLite:dbname=$dbname after: bayes_dbconnect dbi:SQLite2:dbname=$dbname (change the word "SQLite" to "SQLite2") files/patch-Bayes.pm also added, to use dbi:SQLite2 by default. Since the contents is changed, bump PORTREVISION.
* Update to 0.22.0.matusita2004-10-243-72/+175
| | | | | | | | | | | This commit also introduce a new option, WITH_POPFILE_SSL. Since 0.22.0, popfile supports SSL connection for clients. If WITH_POPFILE_SSL is defined (default not defined), add security/p5-IO-Socket-SSL to RUN_DEPENDS. Please note that this changes is based on PR: 71938, thank you Daniel. PR: 71938 Submitted by: daniel at dgrund.de (partly)