summaryrefslogtreecommitdiff
path: root/mail/popper (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use LATEST_LINK = popper to stop confusing with qpopperAndrey A. Chernov2001-11-071-0/+2
| | | | Submitted by: "Akinori MUSHA" <knu@iDaemons.org>
* Use ${SH} to run pkg-install. It seems that CTM not preserve x-bitAndrey A. Chernov2001-11-021-1/+1
|
* Move user adding into pkg-installAndrey A. Chernov2001-10-193-18/+15
|
* Add pop:mail automaticallyAndrey A. Chernov2001-10-171-8/+24
|
* Fix auth for non-OPIE usersAndrey A. Chernov2001-10-022-13/+12
|
* Rename variables using WITH_POPPER_ prefixAndrey A. Chernov2001-08-121-6/+6
|
* Switch to OPIEAndrey A. Chernov2001-07-306-138/+186
|
* Bump PORTREVISION I forgetAndrey A. Chernov2001-02-191-0/+1
|
* Remove wrong uidl_found incrementAndrey A. Chernov2001-02-181-135/+94
| | | | | PR: 19038 Submitted by: "Aaron D.Gifford" <agifford@infowest.com>
* Massive style enforcement - use ^I instead of spaces for variables identation.Maxim Sobolev2001-01-161-14/+14
|
* Add "@dirrm etc/popper" to make bento happy.Maxim Sobolev2000-06-051-0/+1
| | | | Submitted by: bento
* unFORBID this port by closing the overflowKris Kennaway2000-05-252-4/+20
|
* Mark FORBIDDEN due to Yet Another Qpopper OverflowKris Kennaway2000-05-241-0/+2
|
* Add a WWW.Maxim Sobolev2000-05-231-0/+2
|
* Distfile has been moved into different directory, so update MASTER_SITES.Maxim Sobolev2000-05-231-1/+1
| | | | | PR: 18746 Submitted by: Jeff Palmer <jeff@isni.net>
* 1) Popper always assume that fgets got whole line, so it is easy to makeAndrey A. Chernov2000-04-172-19/+47
| | | | | | | | | fake headers by special long lines aligned to buffer boundary - popper treat them as separate lines. Whole code needs rewriting. As workaround increase MAXLINE to the value sendmail use, hoping sendmail itself not makes longer lines. 2) Fix EUIDL responses not properly \n terminated.
* Update to use PORTNAME/PORTVERSIONChris Piazza2000-04-131-3/+3
|
* Better error message when the connecting client's IP address isSteve Price1999-12-291-0/+34
| | | | | | | unresolvable. PR: 12618 Submitted by: Mikhail Teterin <mi@aldan.algebra.com>
* $Id$ -> $FreeBSD$Peter Wemm1999-08-301-3/+3
|
* Change Id->FreeBSD.David E. O'Brien1999-08-251-1/+1
|
* Commit #3/4 to enforce caps, no period.Tim Vanderhoek1999-06-261-1/+1
| | | | | | | | | | | | FWIW, checkout of these things took 5+hrs, staying on the local .freebsd.org net w/o hitting the 'net at all. As promised, $ time cvs ci real 67m51.701s user 0m1.250s sys 0m5.345s
* Add a notation about user restriction.SADA Kenji1999-02-261-4/+5
| | | | | PR: ports/10114 Submitted by: Issei Suzuki <issei@jp.FreeBSD.ORG>
* Remove more manpages, as part of the great manpage removal project.Tim Vanderhoek1998-08-171-2/+0
|
* add optional youbin supportAndrey A. Chernov1998-08-044-5/+246
|
* Make full pop debugging optionalAndrey A. Chernov1998-08-021-2/+5
|
* Upgrade to 2.53Andrey A. Chernov1998-07-185-47/+47
|
* Upgrade to 2.52Andrey A. Chernov1998-07-025-56/+68
|
* path changed backAndrey A. Chernov1998-07-011-2/+2
|
* eudora goes oldAndrey A. Chernov1998-06-301-2/+2
|
* Fix longstanding bug with Content-Length counted in messages sizeAndrey A. Chernov1998-06-301-5/+54
|
* Upgrade to 2.5Andrey A. Chernov1998-06-304-192/+42
|
* Enable debugging codeAndrey A. Chernov1998-06-301-2/+2
|
* Fix another place with UIDL check tooAndrey A. Chernov1998-06-301-7/+117
| | | | Calculate UIDL size and lines number properly now
* Fix two longstanding bugs with Return-Path patchAndrey A. Chernov1998-06-301-42/+87
| | | | | 1) wrong mbox size calculation 2) Return-Path was _never_ sent out
* Check password length tooAndrey A. Chernov1998-06-292-53/+82
| | | | Submitted by: idea from "Aaron D. Gifford" <agifford@infowest.com>
* Add check for max parameter lengthAndrey A. Chernov1998-06-281-0/+72
| | | | Submitted by: "Aaron D. Gifford" <agifford@infowest.com>
* Use snprintf nowAndrey A. Chernov1998-06-281-5/+80
|
* oops, forget to add 1 for newline for max UIDL checkAndrey A. Chernov1998-06-281-1/+1
|
* Increase allowed UIDL length to 70 chars per rfc1939Andrey A. Chernov1998-06-281-1/+1
|
* Prevent overflow on too long From:Andrey A. Chernov1998-06-281-0/+20
| | | | | Do not return stack buffer Submitted by: "Aaron D. Gifford" <agifford@infowest.com>
* Reject too long X-UIDLAndrey A. Chernov1998-06-281-0/+31
|
* Fix broken code that people tries to commit again and again despite theAndrey A. Chernov1998-06-282-51/+61
| | | | fact that I am this port maintainer and still alive.
* DOH! Correct stupid brain-o with strcat() in my last commit. NowJordan K. Hubbard1998-06-281-20/+20
| | | | popper should get a bit further without dumping core now. :-)
* Well, it's always a bad idea to introduce new bugs when trying to fixJoerg Wunsch1998-06-281-1/+1
| | | | | | | one... strncat(3) takes a string as its second arg, and a len as its third one, not the other way round. =:-) The ``consistency'' of the C library sucks, of course.
* Close a missing overflow with strcat() in my original changeJordan K. Hubbard1998-06-271-4/+32
| | | | | and add an extra overflow fix to pop_log.c. This is just a place-holder until Peter comes along with a more comprehensive set of patches.
* Add -3 to len as room for \n\r\0Andrey A. Chernov1998-06-271-3/+3
|
* Deal with a potential buffer overflow problem.Jordan K. Hubbard1998-06-271-0/+41
| | | | | [also, there is a problem in the repo - patch-af is marked as removed but it's not in the Attic!]
* No need to use += on first appearance of variables.Alexander Langer1997-12-241-3/+3
|
* Upgrade to 2.41beta1Andrey A. Chernov1997-11-205-70/+60
|
* Add 'exit 0'Andrey A. Chernov1997-10-101-0/+1
|