Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-10-12 | Use fdboot for amd64 floppy disk media. | Joel Sing | |
ok deraadt@ | |||
2012-10-12 | Build a 'fdboot' that will be used for floppy disk media. This can be made | Joel Sing | |
smaller than the normal 'boot', however for now it is identical. ok deraadt@ | |||
2012-10-12 | fix infinite loops on regexps that match the empty word, which is | Marc 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-12 | Extend the "retry" field to 16 bits. The new quadratic retry formula | Eric Faurot | |
makes the maximum retry delay a bit to small on 8 bits. ok gilles@ chl@ | |||
2012-10-11 | fix "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 usage | Gilles Chehade | |
2012-10-11 | - no need to assign a separator to the last route flag since we're not | Gilles Chehade | |
going to use it | |||
2012-10-11 | - no need to set imsg_type to IMSG_MFA_CLOSE when we're not going to answer | Gilles Chehade | |
to SMTP .. | |||
2012-10-11 | - remove dead store | Gilles Chehade | |
spotted by clang | |||
2012-10-11 | - remove dead store | Gilles Chehade | |
spotted by clang | |||
2012-10-11 | - map_create() takes a map_src not a map_kind | Gilles 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_t | Gilles 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-11 | do not attempt a hardware list - it is currently out of date to the point | Jason McIntyre | |
of being unhelpful, and we can;t realistically change that; help/ok mk | |||
2012-10-11 | package checksums are no longer MD5, from Dawe on tech@. | Stuart Henderson | |
2012-10-11 | rework the firmware interface and incorporate all the guts into | Mike Belopuhov | |
one single function instead of spreading them across 10 others. | |||
2012-10-11 | kill a scary unused function | Mike Belopuhov | |
2012-10-11 | better integer log2 implementation, checked with what linux is doing | Mike Belopuhov | |
2012-10-11 | remove pci_set_powerstate() calls that are not needed, since the pci | Theo de Raadt | |
framework does these more correctly ok kettenis | |||
2012-10-11 | amend bug section with some fixed stuff. | Marc Espie | |
2012-10-11 | fix make's cond parser to be able to handle .if 5 < 7 directly. | Marc Espie | |
okay millert@ | |||
2012-10-11 | Initialise the protected mode IDT after zeroing .bss - otherwise we wipe | Joel Sing | |
the IDT that we have just finishing building. | |||
2012-10-11 | Enable Host AP power saving support for the RT2700, RT2800 and RT3090 chipsets. | Mark Kettenis | |
Tested by Nathanael Rensen. | |||
2012-10-11 | Fix a use-after-free when collapsing the tree in choose mode, from | Nicholas Marriott | |
Carl Henrik Lunde. | |||
2012-10-11 | The 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-11 | Remove the new (as of r1.56) line of code which updates ifi->linkstat in | Stuart 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-10 | Oops. Need to handle the case of nfs diskless machines, where the block | Theo de Raadt | |
device name is NULL. From Tim Wiess | |||
2012-10-10 | F_BACKUP and ROUTE_BACKUP must be sync-ed for now, otherwise smtpd won't | Gilles Chehade | |
work as a backup MX ... bug experienced by todd, verified and analyzed by eric | |||
2012-10-10 | teach 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-10 | io_connect() can take an optional address to bind() before connecting. | Eric Faurot | |
ok gilles@ | |||
2012-10-10 | For each alias node, mark if it has been expanded from an alias map or | Eric 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-10 | show the port number for a relay if specified. | Eric Faurot | |
ok gilles@ | |||
2012-10-10 | Revert r1.155. Routing breaks if dhclient-script flushes the | Kenneth 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-10 | add missing break | Theo de Raadt | |
2012-10-10 | Fix the hash http filter action to initialize the hash key correctly after | Reyk Floeter | |
the multiple relay tables commit. | |||
2012-10-10 | Add __BEGIN_DECLS so that programs using C++ can use functions | Stuart Henderson | |
defined in sysarch.h again, they were broken following the change to NO_IMPLICIT_EXTERN_C. help/ok kettenis@ | |||
2012-10-10 | make bridge_rtflush and bridge_flushrule void functions, as they never | Henning Brauer | |
return anything but 0 anyways From: "Michael W. Bombardieri" <mb at ii dot net>, ok camield | |||
2012-10-10 | Clear the powersave flag and purge queued packets when a node leaves the AP | Mark Kettenis | |
(either by disassociating or by timeout). Fixes (most) remaining issues with power saving. From Nathanael Rensen. ok claudio@, krw@, sthen@ | |||
2012-10-10 | Avoid potential uninitialized variable access in fxp driver. | Bret Lambert | |
Found by haesbaert@. ok haesbaert@ deraadt@ | |||
2012-10-10 | a little better DESCRIPTION; | Jason McIntyre | |
help/ok mk | |||
2012-10-10 | a SMTP -> an SMTP; | Jason McIntyre | |
2012-10-10 | Missed the MD bits with the bridgeport change. Found the hard way by deraadt. | Camiel Dobbelaar | |
2012-10-09 | make "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-09 | Reject ssl key/certs/CA/DH files if their ownership/permissions are not | Eric 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-09 | steal .if commands() concept from NetBSD. | Marc Espie | |
Actually less ambiguous than .if target(). | |||
2012-10-09 | warn about targets with multiple command lists (debug option), as it's | Marc Espie | |
definitely non portable behavior. discussed with millert@, who rightfully insisted on the optional debug part |