--- lib/sshreadline/sshreadline.c.orig Wed Dec 3 14:17:20 2003 +++ lib/sshreadline/sshreadline.c Fri Aug 18 20:58:55 2006 @@ -500,8 +500,13 @@ new_term.c_lflag &= ~(ECHO | ICANON); new_term.c_cc[VMIN] = 1; new_term.c_cc[VTIME] = 1; - if (tcsetattr(fd, TCSAFLUSH, &new_term) < 0) + while (tcsetattr(fd, TCSAFLUSH, &new_term) < 0) { + if (errno == EINTR) + { + errno = 0; /* For Solaris; just to make sure. */ + continue; + } ssh_warning("tcsetattr failed in ssh_rl_set_tty_modes_for_fd: " "fd %d: %.200s", fd, strerror(errno)); return -1; @@ -561,8 +566,13 @@ { fcntl(fd, F_SETFL, fcntl_flags); - if (tcsetattr(fd, TCSAFLUSH, saved_tio) < 0) + while (tcsetattr(fd, TCSAFLUSH, saved_tio) < 0) { + if (errno == EINTR) + { + errno = 0; /* For Solaris; just to make sure. */ + continue; + } ssh_warning("tcsetattr failed in ssh_rl_restore_tty_modes_for_fd: " "fd %d: %.200s", fd, strerror(errno)); return -1; sd-ports-gnome' href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/'>freebsd-ports-gnome
FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
path: root/mail/dbmail21
Commit message (Collapse)AuthorAgeFilesLines
* - Add rc-script for dbmail-timsievedmiwi2006-12-163-7/+37
| | | | | | | | - Fix potential problem with LDFLAGS - Edit pkg-descr to make portlint a bit happier PR: ports/106762 Submitted by: Mark Starovoytov <mark_sf@kikg.ifmo.r (maintainer)
* - Fix duplicate LATEST_LINK, as reported by krispav2006-12-021-2/+2
| | | | - Remove non-existent USE_PTHREAD, replace -pthread with PTHREAD_LIBS
* Add a patch to fix compilation on big endian systems.stefan2006-09-171-0/+20
| | | | | Noticed by: kris Approved by: maintainer
* - Fix build by adjust library search path in CFLAGS. [1]stefan2006-08-172-17/+14
| | | | | | | | - Fix plist and use DATADIR. PR: 101770 [1] Submitted by: Chris Wasser <flatline@majestik12.ca> [1] Approved by: maintainer, arved (mentor)
* - Fix build on 4.xgarga2006-08-092-5/+6
| | | | | PR: ports/101576 Submitted by: Mark Starovoytov <mark_sf at kikg.ifmo.ru> (maintainer)
* New port: mail/dbmail21 -current branch of DBMailedwin2006-08-0615-100/+735
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Dbmail is the name of a group of programs that enable the possiblilty of storing and retrieving mail messages from a database (currently MySQL, PostgreSQL or SQLite). What are the advantages? * Scalability. Dbmail is as scalable as the database that is used for the mail storage. * Manageability. Dbmail is based upon a database. Dbmail can be managed by changing settings in the database (f.e. using PHP/Perl/SQL). * Speed. Dbmail uses very efficient, database specific queries for retrieving mail information. This is much faster then parsing a filesystem. * Security. Dbmail has got nothing to do with the filesystem or interaction with other programs in the Unix environment which need special permissions. Dbmail is as secure as the database it's based upon. * Flexibility. Changes on a Dbmail system (adding of users, changing passwords etc.) are effective immediately. WWW: http://www.dbmail.org/ PR: ports/101356 Submitted by: Mark Starovoytov <mark_sf@kikg.ifmo.ru>
* - Update to 2.0.10mnag2006-04-0914-19568/+19
| | | | | PR: 95457 Submitted by: maintainer
* [update] mail/dbmail: sync to svnedwin2005-12-265-11/+17922
| | | | | | | 1. #281 - fix compilation on FreeBSD 4.x PR: ports/90914 Submitted by: Mark Starovoytov <mark_sf@kikg.ifmo.ru>
* - Integrate vendor patches:pav2005-11-1511-0/+1612
| | | | | | | | | | | | 1. #266 - Excessive db connects and quits 2. #271 - BUG with connect to postgresql database 3. #272 - Non-UTF characters in a message's body 4. #277 - Fix "INTERNALDATE" calculation in imaputil.c 5. other patches from repository. - Add SHA256 PR: ports/88277 Submitted by: Mark Starovoytov <mark_sf@kikg.ifmo.ru> (maintainer)
* - Update to 2.0.7pav2005-09-1416-1354/+43
| | | | | | | | | | - Add patch for bug 266 - Reset maintainership (3 months of maintainer timeouts) - Assign maintainership to a volunteer PR: ports/85455, ports/85763 Submitted by: Mark Starovoytov <mark_sf@kikg.ifmo.ru> Approved by: maintainer timeout (seanc; 14 days)
* - Patch nine bugs:pav2005-07-1916-17/+1329
| | | | | | | | | | | | | | | | | | | | | #79 - INTERNALDATE reponses do not conform to RFC #145 - LMTP loses return-path #177 - Compile Fails on FreeBSD (fixes compilation on FreeBSD 4.X) #184 - socklen_t issue #190 - huge load if database crash #198 - DBMail processes killing each other #199 - spare child creates zombie #214 - dbmail-smtp dumps core with double free #216 - malformed header prevents delivery - Fix RC_SUBR usage PR: ports/83437, also ports/80736, ports/82437, ports/83575 Submitted by: Mark Starovoytov <mark@kikg.ifmo.ru>, parts also by: Radim Kolar <hsn@netmag.cz>, thompsa, Marcus Grando <marcus@corp.grupos.com.br> Approved by: maintainer timeout (2 months on oldest PR)
* Update to version 2.0.4.thompsa2005-06-193-6/+15
| | | | | PR: ports/79775 Approved by: maintainer timeout (seanc), linimon
* Split the postgresql ports into a server and a client part.girgen2005-01-311-1/+1
| | | | | | | | 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)
* Add rcNG startup scripts for dbmail. Bump port version.seanc2004-11-105-1/+119
|
* Fix dbmail's packaging in the mysql case. Bumped version.seanc2004-11-032-4/+5
| | | | Submitted by: kris
* dbmail 2.0.0 needs -fPIC set in order to be sodomized by libtool on amd64.seanc2004-10-281-0/+1
| | | | | | Set this universally since it's quite plausible that other 64bit platforms may need this. Don't bump the port version since it wasn't installable on the systems that would need the portversion bump.
* Updated distinfo. I updated this but for some reason wasn't included inseanc2004-10-251-2/+2
| | | | | | the commit to dbmail. Correct oversight. Pointed out by: iVyacheslav I. Ivanchenko (ivi -at- dhs.net.ru)
* Update dbmail to 2.0.0. This upgrade requires a migration script to be run.seanc2004-10-242-36/+43
| | | | See UPDATING for details. Grab maintainership of this port for the time being.
* upgrade to 1.2.9ijliao2004-07-204-42/+9
| | | | Submitted by: forth@zbwei.net
* - Update to 1.2.8bclement2004-07-132-6/+4
|
* BROKEN: Unfetchablekris2004-07-111-0/+2
|
* Minor cleanup:vs2004-06-302-2/+2
| | | | | | | | - added file EXTRAS (referenced from other documents) - removed script install-dbmail.sh PR: ports/68473 Submitted by: Radim Kolar
* - Security fix:clement2004-06-112-3/+3
| | | | | | | | | "DBMail 1.2.8a June 08, 2004 16:21:55 Posted by: Ilja Booij A buffer overflow error in DBMail 1.2.x has been discovered and fix. The buffer overflow causes dbmail-smtp to crash with a segmentation fault when a line in the email header is bigger than 2048 bytes. All version < 1.2.8a are affected, so please update your DBMail installation."
* - Update to 1.2.7bclement2004-06-022-8/+7
| | | | | - s/WITH_PGSQL/WITH_POSTGRESQL/ - Drop maintainership
* Remove databases/postgresql-client because there can't be a -server, and havingmat2004-05-251-1/+1
| | | | | it installed prevents databases/postgresql7 from being installed, leading to some dependencies problems
* - SIZEifyclement2004-03-181-0/+1
| | | | Submitted by: trevor
* Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.marcus2004-02-041-0/+1
| | | | (Part 2)
* - Update to 1.2.3clement2004-02-032-3/+5
|
* - Cleanups.clement2004-01-161-4/+1
| | | | | Notice by: From: lou <lou@0xffff.org> Approved by: erwin (mentor) (implicitly)
* - Update my email addressclement2004-01-131-1/+1
| | | | Approved and reviewed by: erwin (mentor)
* - Install manual pages [1]clement2003-12-192-5/+8
| | | | | | | | - use PORTDOCS - bump PORTREVISION Noticed by: Dave C. <djc@microwave.com> [1] Approved by: erwin (mentor)
* - Update to 1.2.1:sergei2003-10-243-7/+6
| | | | | | | | | This update fixes a security bug in the SMTP handling code and adds some indexes to the PostgreSQL table layout for speed improvements PR: 58470 Submitted by: maintainer Approved by: krion (implicit)
* dbmail tarball has been updated.erwin2003-10-163-10/+10
| | | | | | | | | | - configure script have been improved - some strings changed. Bump PORTREVISION. PR: 58065 Submitted by: maintainer
* Upgrade to 1.2.sumikawa2003-10-144-39/+49
| | | | | PR: ports/57958 Submitted by: Clement Laforet <sheepkiller@cultdeadsheep.org>
* Fix NOPORTDOCSerwin2003-10-091-1/+1
| | | | | PR: 57750 Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com> via maintainer