* The code was reorganized and all the SMTP logic was moved
to its own file.
* CC: works now
* General code cleanup
PR: 58804
Submitted by: Miguel Mendez <flynn@energyhq.es.eu.org> (maintainer)
I found convinient some additional key to the pkg_tree utility,
and I propose to include them. The patches can be placed in
files directory.
PR: ports/46810
Submitted by: Vladimir I. Chukharev <chu@gpi.ru>
Approved by: moi
*** addresses that may be dead, even though the error is temporary:
*** addresses that seem to be dead, but give a hint to a new address:
PR: ports/58694
Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
The biggest difference between runwhen and other schedulers is that
runwhen doesn't have a single daemon overseeing multiple jobs.
The runwhen tools essentially act as a glorified sleep command.
Perhaps runwhen does nothing that at(1) doesn't, and there are
lots of things at(1) does that runwhen doesn't:
- runwhen doesn't change user IDs - thus it will never run
anything as the wrong user.
- It doesn't keep a central daemon running at all times -
thus it won't break if that daemon dies.
- It doesn't require any modifications to the system boot procedure.
- It doesn't log through syslog(3) - thus it won't make a mess
on the console if syslogd(1) isn't running.
- It doesn't centralize storage of scheduled jobs (or any other
per-job information) - thus unprivileged users can install and use it
without cooperation from root, and without the use of a setuid program
to handle changes.
- It doesn't send output through mail - thus it doesn't break
if there is no mail system installed.
- It doesn't check access control files - thus it doesn't gratuitously
deny users.
Author: Paul Jarc <prj@po.cwru.edu>
WWW: http://multivac.cwru.edu/runwhen/
PR: 58789
Submitted by: David Thiel <lx@redundancy.redundancy.org>
minirsyslogd is a minimalistic, fast and secure (through lack of bloat)
remote-only syslog receiver suitable for hardened log receiver hosts
and/or central log receivers that receive several gigabyte of logs each day.
It will not deal with local syslog data. It does not have a multitude
of configuration, alerting or scripting options. It will however
automatically split inbound syslog data according to IP address,
date and current hour, and do so as rapidly and (I hope) securely as
possible.
Author: Mikael Olsson <mikael.olsson@clavister.com>
WWW: http://www.clueby4.org/minirsyslogd/
PR: 58737
Submitted by: lx@redundancy.redundancy.org
Also:
- replace <xxx> with <xxx.h> due to Standard C++.
- In my observation, when include "devstats.h",
- In 4.x or earlier version, we use checkversion(), getnumdevs() ...
But In 5.x, it should be repalce with devstat_checkversion(kvm_t *),
devstat_getnumdevs(kvm_t *) respectively.
In summary, function in 4.x's devstats.h can add prefix word "devstat
Submitted by: Cheng-Lung Sung <clsung@dragon2.net>
Maintainership to: submitter
PR: 58596