summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-10-12Use fdboot for amd64 floppy disk media.Joel Sing
ok deraadt@
2012-10-12Build a 'fdboot' that will be used for floppy disk media. This can be madeJoel Sing
smaller than the normal 'boot', however for now it is identical. ok deraadt@
2012-10-12fix infinite loops on regexps that match the empty word, which isMarc Espie
especially bad during runtime as we trap ^C. For instance ${A:C/-*//g}. Problem found by rpe@ Do the same as other modern tools: advance by one char and repeat, so that there's at most one empty word match at each position. okay millert@
2012-10-12Extend the "retry" field to 16 bits. The new quadratic retry formulaEric Faurot
makes the maximum retry delay a bit to small on 8 bits. ok gilles@ chl@
2012-10-11fix "disable lidsuspend on shutdown":Alexander Hall
- pull in machine/cpu.h so we can actually see CPU_LIDSUSPEND if it's there - fix the resulting compilation errors now that the code is actually used "Just go for it" deraadt@
2012-10-11- if argc / argv not empty after getopt() loop, display usageGilles Chehade
2012-10-11- no need to assign a separator to the last route flag since we're notGilles Chehade
going to use it
2012-10-11- no need to set imsg_type to IMSG_MFA_CLOSE when we're not going to answerGilles Chehade
to SMTP ..
2012-10-11- remove dead storeGilles Chehade
spotted by clang
2012-10-11- remove dead storeGilles Chehade
spotted by clang
2012-10-11- map_create() takes a map_src not a map_kindGilles Chehade
ok eric@ and chl@
2012-10-11- char * -> unsigned char *Gilles Chehade
spotted by clang, ok eric@ and chl@
2012-10-11- ssize_t -> size_tGilles Chehade
spotted with clang, ok eric@ and chl@
2012-10-11- replace "all" with "any"Gilles Chehade
- add examples for how to accept mail from external source and for a specific domain
2012-10-11- replace "from all" and "for all" with "from any" and "for any"Gilles Chehade
ok eric@, chl@
2012-10-11do not attempt a hardware list - it is currently out of date to the pointJason McIntyre
of being unhelpful, and we can;t realistically change that; help/ok mk
2012-10-11package checksums are no longer MD5, from Dawe on tech@.Stuart Henderson
2012-10-11rework the firmware interface and incorporate all the guts intoMike Belopuhov
one single function instead of spreading them across 10 others.
2012-10-11kill a scary unused functionMike Belopuhov
2012-10-11better integer log2 implementation, checked with what linux is doingMike Belopuhov
2012-10-11remove pci_set_powerstate() calls that are not needed, since the pciTheo de Raadt
framework does these more correctly ok kettenis
2012-10-11amend bug section with some fixed stuff.Marc Espie
2012-10-11fix make's cond parser to be able to handle .if 5 < 7 directly.Marc Espie
okay millert@
2012-10-11Initialise the protected mode IDT after zeroing .bss - otherwise we wipeJoel Sing
the IDT that we have just finishing building.
2012-10-11Enable Host AP power saving support for the RT2700, RT2800 and RT3090 chipsets.Mark Kettenis
Tested by Nathanael Rensen.
2012-10-11Fix a use-after-free when collapsing the tree in choose mode, fromNicholas Marriott
Carl Henrik Lunde.
2012-10-11The RSA public keys will be found in a subdirectory of /etc/iked/Reyk Floeter
called "pubkeys" not "pubkey". Found by Michael Cardell "MC" Widerkrantz
2012-10-11Remove the new (as of r1.56) line of code which updates ifi->linkstat inStuart Henderson
the dispatch loop again; in the case where two RTM_IFINFO link changes occur immediately after each other (as in the case with trunk and probably vlan) dhclient missed the state change of the second interface. ok krw@, who points out that dhcp packets received between the two RTM_IFINFO messages would be lost, however the window is small (<0.4ms on my laptop) and this is better than not noticing the link change.
2012-10-10Oops. Need to handle the case of nfs diskless machines, where the blockTheo de Raadt
device name is NULL. From Tim Wiess
2012-10-10F_BACKUP and ROUTE_BACKUP must be sync-ed for now, otherwise smtpd won'tGilles Chehade
work as a backup MX ... bug experienced by todd, verified and analyzed by eric
2012-10-10teach smtpctl how to display envelopes and messages using their id.Gilles Chehade
this allows an admin to inspect the queue without having to manually extract bucket and find the path to an envelope or message. diff by Sunil Nimmagadda <sunil@poolp.org> ok eric@, chl@ and I
2012-10-10io_connect() can take an optional address to bind() before connecting.Eric Faurot
ok gilles@
2012-10-10For each alias node, mark if it has been expanded from an alias map orEric Faurot
from a .forward file. Local deliveries for files and filters expanded from an alias map are run as user _smtpd. issue reported by tood@ ok gilles@ todd@
2012-10-10show the port number for a relay if specified.Eric Faurot
ok gilles@
2012-10-10Revert r1.155. Routing breaks if dhclient-script flushes theKenneth R Westerback
interface's routes when the interface is down. Prevents floods of RTM_MISS messages on 'ifconfig down'. And might fix the vpn related failures pirofti@ is seeing.
2012-10-10add missing breakTheo de Raadt
2012-10-10Fix the hash http filter action to initialize the hash key correctly afterReyk Floeter
the multiple relay tables commit.
2012-10-10Add __BEGIN_DECLS so that programs using C++ can use functionsStuart Henderson
defined in sysarch.h again, they were broken following the change to NO_IMPLICIT_EXTERN_C. help/ok kettenis@
2012-10-10make bridge_rtflush and bridge_flushrule void functions, as they neverHenning Brauer
return anything but 0 anyways From: "Michael W. Bombardieri" <mb at ii dot net>, ok camield
2012-10-10Clear the powersave flag and purge queued packets when a node leaves the APMark Kettenis
(either by disassociating or by timeout). Fixes (most) remaining issues with power saving. From Nathanael Rensen. ok claudio@, krw@, sthen@
2012-10-10Avoid potential uninitialized variable access in fxp driver.Bret Lambert
Found by haesbaert@. ok haesbaert@ deraadt@
2012-10-10a little better DESCRIPTION;Jason McIntyre
help/ok mk
2012-10-10a SMTP -> an SMTP;Jason McIntyre
2012-10-10Missed the MD bits with the bridgeport change. Found the hard way by deraadt.Camiel Dobbelaar
2012-10-09make "relay ... as ..." work again. It's been zapped by mistake.Eric Faurot
spotted by todd@ ok gilles@
2012-10-09- allow a listen statement to impose tls on its clients;Gilles Chehade
- make listen statements impose authentication if 'auth' is specified and to make it optional if 'auth-optional' is specified; - sync documentation accordingly with ideas and input from beck@ and halex@, ok eric@
2012-10-09Reject ssl key/certs/CA/DH files if their ownership/permissions are notEric Faurot
correct (uid 0, no rights for g/o). Initial diff by Sunil Nimmagadda. ok gilles@ chl@
2012-10-09... yet more documentation, lots of inputs from jmc@ as usual.Marc Espie
2012-10-09steal .if commands() concept from NetBSD.Marc Espie
Actually less ambiguous than .if target().
2012-10-09warn about targets with multiple command lists (debug option), as it'sMarc Espie
definitely non portable behavior. discussed with millert@, who rightfully insisted on the optional debug part