summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2015-12-17s/failes/failed/gmmcc
2015-12-17add return code to newrequest to distinguish between cache hit and error.Ted Unangst
we want to keep looping for more requests after a hit, not stop. (though i'm reconsidering if the looping is worthwhile. maybe should just return to kevent() after each request.)
2015-12-17regen NSD's autoconf script, forgotten with the update - noticed by BradStuart Henderson
2015-12-17Move vcpu register state init to vmd. Allows vmd bootloader to make theMike Larkin
decision as to how the vcpu should be set up for initial start and reset. Also removes some hardcoded register constants from vmm(4). ok jsing@, mpi@
2015-12-17Replace 'arc4random() % (2^k - 1)' by 'arc4random() & (2^k - 1)' totb
avoid modulo bias. Part of a diff by Matthew Martin, reviewed by deraadt@ and me. ok deraadt@
2015-12-17Add missing $OpenBSD$ tags.tb
2015-12-17Replace arc4random() % i by arc4random_uniform(i) to avoid modulo bias.tb
Part of a diff by Matthew Martin, reviewed by deraadt@ and me. ok deraadt@
2015-12-16Adding mark messages to log files was broken since OpenBSD 5.7.Alexander Bluhm
The mark timeout event is not persistent, add the timer intervall everytime it fires. Bug report, analysis and fix from Einfach Jemand rru.142 at gmail.com
2015-12-15less macro and linesJoerg Jung
ok millert
2015-12-15update to Unbound 1.5.7, looks fine to deraadt@.Stuart Henderson
Notable addition: implements optional support for qname minimisation (a privacy improvement; see draft-ietf-dnsop-qname-minimisation-07)
2012-08-23update to unbound 1.4.18Stuart Henderson
2012-03-26Import Unbound 1.4.16 to work on in-tree (not yet linked to the build).Stuart Henderson
These are the direct sources from NLnet Labs upstream, minus these: compat contrib libunbound/python pythonmod testcode testdata winrc ok deraadt@ jakob@
2015-12-15PATCH is like PUT, data is expected.Reyk Floeter
From mxb at alumni chalmers se
2015-12-15Sync the DB file once when done with fsync(), not on each write with O_SYNC.Philip Guenther
The DB file being written is a temp file, so O_EXLOCK is unnecesary. ok sunil@ gilles@
2015-12-15if a vcpu run thread in vmd exits unexpectedly, teardown the VM's kernelMike Larkin
components as well. ok deraadt@
2015-12-14move daemon(3) call before chroot(2) in tftpd.Sebastien Marie
so daemon(3) will be able to redirect standard input, standard output and standard error to /dev/null. ok jca@
2015-12-14Wrap long lines.Sunil Nimmagadda
Ok gilles@
2015-12-14Wrap long lines and fix bad indents.Sunil Nimmagadda
Ok gilles@
2015-12-14Fix bad indents and whitespaces.Sunil Nimmagadda
Ok jung@ gilles@
2015-12-14Wrap long lines and whitespace fixes.Sunil Nimmagadda
Ok jung@ gilles@
2015-12-14remove trailing whitespaceJoerg Jung
ok sunil gilles
2015-12-14oops, sorry sunil, -d was in the wrong place:Jason McIntyre
so much for my ok ;(
2015-12-14Document -d option.Sunil Nimmagadda
Ok gilles@ jmc@
2015-12-14various minor tweaks;Jason McIntyre
2015-12-14track used memory in each VM. This is passed back to vmctl status.Mike Larkin
ok reyk@, beck@, mpi@
2015-12-14Remove unused macro that's just a clone of abs(3). ok tb@mmcc
2015-12-14s/begining/beginning/gmmcc
2015-12-14Update default MTA reference to smtpd(8). Rectify documentation ofSunil Nimmagadda
fallback behaviour when configuration file is missing. Documentation bits from Serguey Parkhomovsky. Ok jung@ "if the fallback code stays"
2015-12-14pledge.Kenneth R Westerback
Diff from Ricardo Mestre. Test report from sthen@.
2015-12-13fix warnings; spotted by `mandoc -Tlint'Gleydson Soares
OK jung@
2015-12-13add filter api man pageJoerg Jung
ok gilles
2015-12-13Respect the k-values configuration when calculating the composite metric.Renato Westphal
2015-12-13Fix bug in the documentation of the k-values configuration option.Renato Westphal
2015-12-13Minor cosmetic changes.Renato Westphal
2015-12-13Introduce new command to show traffic statistics.Renato Westphal
Can be useful as a troubleshooting tool.
2015-12-13less macro;Jason McIntyre
2015-12-13Move some variables local to makemap().Sunil Nimmagadda
Suggested by guenther@ Ok gilles@
2015-12-13smtpd is no longer 5.4.6Gilles Chehade
2015-12-13document filter keywordGilles Chehade
2015-12-13refactor smtp_session to plug into the filters infrastructureGilles Chehade
2015-12-13remove prototype to now unused function + pass fallback hint to lkaGilles Chehade
2015-12-13document wildcard pki/caGilles Chehade
2015-12-13refactor a bit to move the SNI handling away from smtp_session into smtpGilles Chehade
ok sunil@, jung@
2015-12-12tweaks;Jason McIntyre
2015-12-12Remove the rest of the 20+ year-old memory debugging gunk. Discussedmmcc
with deraadt@
2015-12-12Remove NULL-checks before free().mmcc
2015-12-12remove CA from pki and no longer allow specifying a CA with 'pki' keyword.Gilles Chehade
introduce 'ca' keyword to allow specifying a custom CA. making CA part of pki was a bad idea and several people hit use-cases that plain couldn't work. instead of: pki foobar.org ca "/etc/mail/CA.pem" use now: ca foobar.org certificate "/etc/mail/CA.pem" ok sunil@, jung@
2015-12-12Remove a needless inclusion of sys/cdefs.h. Inspired by reyk's recentmmcc
commit doing the same.
2015-12-12whitespacesGilles Chehade
2015-12-12when using senders map to restrict email address a user may use in SMTPGilles Chehade
dialogue, if `masquerade' is used as a parameter then rewrite the email address of the DATA From header to the email address in the map.