aboutsummaryrefslogtreecommitdiff
path: root/mail/qpopper
Commit message (Collapse)AuthorAgeFilesLines
* Whoa there, boy, that's a mighty big commit y'all have there...Ade Lovett2004-03-141-1/+1
| | | | | | | | | | | | | | | | | | Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed. Notes: svn path=/head/; revision=103963
* USE_SIZEifyMario Sergio Fujikawa Ferreira2004-02-082-0/+3
| | | | Notes: svn path=/head/; revision=100321
* Add a knob WITHOUT_APOP for configurations where the apop-feature is in the way.Mark Linimon2003-12-043-57/+57
| | | | | | | | | | | | | | | Update OpenSSL-support, include security/openssl/bsd.openssl.mk, remove usage of deprecated librsaref/libRSAglue, add a knob WITHOUT_SSL. Pacify portlint. Terminate all sentences in comments with a period. Replace spaces with tabs in pre-everything:: messages to print out an aligned table. PR: ports/53401 Submitted by: Marius Strobl <marius@alchemy.franken.de> (Committed on behalf of lioux@, who is having machine problems) Notes: svn path=/head/; revision=95081
* Add WITH_SHY_ENABLED knob which prevents qpopper from presentingMario Sergio Fujikawa Ferreira2003-10-011-0/+8
| | | | | | | | | its version number within the POP3 session Submitted by: Alessandro de Manzano <ale@unixmania.net> Notes: svn path=/head/; revision=89971
* o Prefer FreeBSD's strlcpy() function over qpopper's incorrectMario Sergio Fujikawa Ferreira2003-04-292-0/+19
| | | | | | | | | | implementation o Bump PORTREVISION Submitted by: nectar Notes: svn path=/head/; revision=79894
* 'chown user:group' constructs are preferred over 'chown user.group'Mario Sergio Fujikawa Ferreira2003-04-041-1/+1
| | | | | | | | | | for compatibility. For instance, the later does not work in 5.x branch anymore Submitted by: sanpei Notes: svn path=/head/; revision=78196
* Update to 4.0.5Mario Sergio Fujikawa Ferreira2003-03-153-7/+17
| | | | | | | | | | PR: 49988 Submitted by: Mike Tancsa <mike@sentex.net>, Xin LI delphij@frontfree.net <delphij@hotmail.com> Approved by: portmgr (kris, self) Notes: svn path=/head/; revision=77126
* De-pkg-commentMario Sergio Fujikawa Ferreira2003-02-232-1/+1
| | | | Notes: svn path=/head/; revision=76311
* Add WITH_Y_OPTION knob which enables command line option -y allowingMario Sergio Fujikawa Ferreira2002-12-172-10/+35
| | | | | | | | | | | the user to specify a different logging facility Submitted by: Christophe Labouisse <christophe@labouisse.org> Reviewed by: knu Approved by: portmgr (knu) Notes: svn path=/head/; revision=71688
* Deploy USE_REINPLACEMario Sergio Fujikawa Ferreira2002-11-031-3/+5
| | | | | | | Submitted by: marius@alchemy.franken.de Notes: svn path=/head/; revision=69329
* Sanitize MASTER_SITESMario Sergio Fujikawa Ferreira2002-07-081-2/+1
| | | | Notes: svn path=/head/; revision=62628
* Install pdf documnetation if WITH_DOCUMENTATION but unless NOPORTDOCSMario Sergio Fujikawa Ferreira2002-06-052-0/+13
| | | | Notes: svn path=/head/; revision=60633
* Make a message intelligibleMario Sergio Fujikawa Ferreira2002-05-261-2/+2
| | | | | | | Prompted by: ceri Notes: svn path=/head/; revision=60042
* Update ipv6 patch to version 20020502Mario Sergio Fujikawa Ferreira2002-05-202-2/+2
| | | | Notes: svn path=/head/; revision=59565
* Chase openssl shlib version increase.Maxim Sobolev2002-05-071-1/+1
| | | | | | | Pointy hat to: dinoex Notes: svn path=/head/; revision=58646
* o Update to 4.0.4Mario Sergio Fujikawa Ferreira2002-04-303-122/+33
| | | | | | | | | | | | | | | o Add options: - WITH_PAM and WITH_STANDALONE_MODE [1] - WITHOUT_IPV6 [2] - WITHOUT_U_OPTION [3] o Remove patch merged into distribution Submitted by: Sean Wal <sean0x77@yahoo.com> [1] Prompted by: too many [2], "Karsten W. Rohrbach" <karsten@rohrbach.de> [3] Notes: svn path=/head/; revision=58380
* Fix following security issue: "If a string of longer than approximatelyMario Sergio Fujikawa Ferreira2002-03-312-1/+117
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2048 characters is sent to the qpopper process, a denial of service condition will occur" Actually, this is caused by an incorrect assumption. qpopper uses the same buffer over and over when communicating. However, it never makes sure that the buffer has been updated if something goes wrong. Therefore, one can try to add to this buffer over and over; thus, consuming available resources. Solution, do not follow unofficial patch available in bugtraq mailing list since losing pointer references is not an option. Otherwise, change the way both getline and tgetline functions work. Just so that they resemble read(2) return codes as follows: 1) if < 0 problem 2) if >= 0 user typed something (enter without anything else is something) First patch sent by Isao SEKI <iseki@gongon.com> PR: 36326 Prompted by: Alessandro de Manzano <ale@unixmania.net>, Isao SEKI <iseki@gongon.com> Reviewed by: eivind, Alessandro de Manzano <ale@unixmania.net>, David Rufino <dr@soniq.net>, Isao SEKI <iseki@gongon.com> Notes: svn path=/head/; revision=57040
* - Restore POLA previous to rev 1.35 of this fileMario Sergio Fujikawa Ferreira2002-03-261-1/+9
| | | | | | | | | | | | * Install qpopauth setuid to pop user unless WITHOUT_QPOPAUTH_SETUID is set - bump PORTREVISION Prompted by: obrien Notes: svn path=/head/; revision=56703
* Add Dynamic Relay Authorization Control (DRAC) support. Can be enabled WITH_DRACMario Sergio Fujikawa Ferreira2001-12-211-1/+10
| | | | | | | | PR: 32790 Submitted by: Norikatsu Shigemura <nork@cityfujisawa.ne.jp> Notes: svn path=/head/; revision=51907
* 1) instead of "stealthly" installing a file with a user list thatMario Sergio Fujikawa Ferreira2001-10-053-6/+95
| | | | | | | | | | | | | | | | | cannot log in the popper daemon, let the users decide for either a default file (use a copy of the system's /etc/ftpusers file) or an empty file 2) also, make the installation of this file prefix safe and name it popusers (PREFIX/etc/qpopper/popusers). This changes expected behavior of the port 3) add a PKGINSTALL script to handle this file install/deinstall 4) style changes: use variables to make the port easier to maintain Prompted by: Dan Langille <dan@langille.org> Reviewed by: freebsd-ports (silence), kris, sobomax Notes: svn path=/head/; revision=48451
* Bump PORTREVISION due to addition of patch-popper::pop_pass.c (rev 1.1)Mario Sergio Fujikawa Ferreira2001-09-101-0/+1
| | | | Notes: svn path=/head/; revision=47587
* qpopper does not properly check for an expired account, fix it withMario Sergio Fujikawa Ferreira2001-09-101-0/+21
| | | | | | | | | | strategy both from src/usr.bin/login/login.c as of rev 1.51.2.12 and submitter Submitted by: Alan Batie <alan@batie.org> Notes: svn path=/head/; revision=47586
* user.group -> user:group in chown call(s).Dima Dorfman2001-07-261-1/+1
| | | | Notes: svn path=/head/; revision=45498
* Chase Makefile rev 1.58 update and update ipv6 patch in syncMario Sergio Fujikawa Ferreira2001-06-022-2/+2
| | | | Notes: svn path=/head/; revision=43454
* Jump back on the qpopper rollercoaster ride of doom and upgrade to 4.0.3,Kris Kennaway2001-06-022-4/+2
| | | | | | | fixing another buffer overflow. Notes: svn path=/head/; revision=43451
* Mark forbidden until updated to 4.0.3 (Qualcomm announced buffer overflow).Alexander Langer2001-06-021-0/+2
| | | | | | | Submitted by: Brett Glass <brett@lariat.org> Notes: svn path=/head/; revision=43446
* Update version number of ssl shared library from openssl port.Maxim Sobolev2001-05-281-1/+1
| | | | Notes: svn path=/head/; revision=43186
* - Update port to version 4.0.2:Mario Sergio Fujikawa Ferreira2001-05-113-18/+5
| | | | | | | | | | | | o Several fixes o Improvements to poppassd o Remove extra-patch since it has been merged into the distribution Prompted by: Brett Jackson <brett@modlogic.com>, sudz@ns3g.com, Mars G Miro <mars@cannoncreek.com> Notes: svn path=/head/; revision=42509
* Enable this port to be able to fetch even when Qualcomm releasesMario Sergio Fujikawa Ferreira2001-05-101-2/+3
| | | | | | | | | new versions. Submitted by: Brett Jackson <brett@modlogic.com> Notes: svn path=/head/; revision=42482
* Fix typo: update distinfo due to Makefile rev 1.52Mario Sergio Fujikawa Ferreira2001-05-061-1/+1
| | | | | | | Submitted by: Hajimu Umemoto <ume@FreeBSD.org> Notes: svn path=/head/; revision=42329
* Add support for WITH_POPPASSD in sync with Makefile rev 1.52Mario Sergio Fujikawa Ferreira2001-05-061-0/+1
| | | | Notes: svn path=/head/; revision=42305
* Bump PORTREVISION due to rev 1.52Mario Sergio Fujikawa Ferreira2001-05-061-0/+1
| | | | Notes: svn path=/head/; revision=42304
* o also, fix the gdbm issue, qpopper 4.0.1 breaks with installedMario Sergio Fujikawa Ferreira2001-05-061-6/+50
| | | | | | | | | | | | | | | | | gdbm port (--without-gdbm) o USE_AUTOCONF due to files/patch-configure.in rev 1.1 o update ipv6 patch to version 20010504 o move all options to WITH_* options, let the older options work for a while o advertise all WITH_* options o add WITH_POPPASSD support (Hajimu Umemoto contribution) PR: 27093 Submitted by: Hajimu Umemoto <ume@mahoroba.org>, K Karthik <kar_alerts@mglorysb.com> Notes: svn path=/head/; revision=42303
* o replace patch-configure with patch-configure.inMario Sergio Fujikawa Ferreira2001-05-062-14/+19
| | | | | | | | | | | | | o also, fix the gdbm issue, qpopper 4.0.1 breaks with installed gdbm port PR: 27093 Submitted by: Hajimu UMEMOTO <ume@mahoroba.org>, K Karthik <kar_alerts@mglorysb.com>, Mikhail Teterin <mi@aldan.algebra.com> Notes: svn path=/head/; revision=42302
* Conditional extra patches if WITH_POPPASSD is defined.Mario Sergio Fujikawa Ferreira2001-05-062-0/+39
| | | | | | | Submitted by: Hajimu Umemoto <ume@mahoroba.org> Notes: svn path=/head/; revision=42301
* - Update port to version 4.0.1 (bug fixes)Mario Sergio Fujikawa Ferreira2001-04-272-5/+4
| | | | | | | | | - Update ipv6 patch to snapshot 20010425 Submitted by: bento (sort of) Notes: svn path=/head/; revision=41960
* Check that librsaref actually exists before trying to link it in.Maxim Sobolev2001-04-181-1/+5
| | | | | | | | PR: 26679 Submitted by: Yoshisato YANAGISAWA <osho@pcc-software.org> Notes: svn path=/head/; revision=41653
* Re-enable ipv6 support.Maxim Sobolev2001-04-182-5/+7
| | | | | | | Submitted by: Hajimu UMEMOTO <ume@mahoroba.org> Notes: svn path=/head/; revision=41652
* Fix build on a systems with crypto bits from the /usr/src.Maxim Sobolev2001-04-172-2/+2
| | | | | | | | PR: 26645 Submitted by: Mike Buchanon <buchanon@mlss15.cl.msu.edu> Notes: svn path=/head/; revision=41563
* Update to 4.0. Unfortunately I have not heard from the maintainer, while 4.3Maxim Sobolev2001-04-175-55/+83
| | | | | | | | | freeze is coming today, so I decided to force things a little. Among other things this release supports TLS/SSL, previously available in the Qualcomms's commercial package "Qpopper LX". Notes: svn path=/head/; revision=41503
* Fix the qpopper path in pkg-message. It is now properly replacedMario Sergio Fujikawa Ferreira2001-03-301-1/+1
| | | | | | | | | with PREFIX. Submitted by: Dan Langille <dan@langille.org> (with changes) Notes: svn path=/head/; revision=40584
* Sanitize MASTER_SITES.Mario Sergio Fujikawa Ferreira2001-02-221-3/+1
| | | | Notes: svn path=/head/; revision=38576
* Assume maintainership. Somebody should.Mario Sergio Fujikawa Ferreira2001-02-201-1/+1
| | | | | | | Please, do not abuse me because I did. :) Notes: svn path=/head/; revision=38523
* Add patch file missing distinfo information.Mario Sergio Fujikawa Ferreira2001-02-201-0/+1
| | | | | | | | Submitted by: Mars G. Miro <zeitgheist@rocketmail.com>, Bennett Hui <bhui@mail.com> Notes: svn path=/head/; revision=38522
* Add IPv6 support from KAME, bump PORTREVISION, add ipv6 to categories,Kris Kennaway2001-02-101-3/+12
| | | | | | | and reset maintainer to ports@FreeBSD.org because mail is bouncing. Notes: svn path=/head/; revision=38167
* Spaces->tabs in the mail category.Jimmy Olgeni2001-02-051-1/+1
| | | | | | | (I know, I look boring and pedant :o) Notes: svn path=/head/; revision=37983
* Update to version 3.1.2.Steve Price2000-12-112-24/+20
| | | | | | | | PR: 23389 Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp> Notes: svn path=/head/; revision=35881
* Merge popper3 and qpopper into single qpopper and remove popper3.Maxim Sobolev2000-11-019-23/+193
| | | | | | | | Reminded by: knu Hall of shame entry: alex Notes: svn path=/head/; revision=34528
* Update to version 3.1Kevin Lo2000-10-113-24/+21
| | | | | | | | PR: 21895 Submitted by: Ports Fury Notes: svn path=/head/; revision=33708
* Update to 3.1fc1.Akinori MUSHA2000-10-055-53/+23
| | | | | | | | | | | | Preserve popauth's name on installation, as it looks up argv[0] and tries to change its default behavior according to it. Reported in: FreeBSD-users-jp@jp.FreeBSD.org mailing list Cleanup Makefile & patches a bit. Notes: svn path=/head/; revision=33436