Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-11-22 | typo | Marc Espie | |
2009-11-22 | less verbose display: only shows .libs* once, but still show all partial-* | Marc Espie | |
2009-11-22 | change the timing a bit: create a list of updateset first, and process | Marc Espie | |
them later. To do that, normal additions go through hint2, and the findtruelocation code moves to Update.pm This will allow for more systematic handling of all names (including solving more stuff on the fly, instead of upfront). | |||
2009-11-21 | MIN_UID in yp make removes root, so look for something that is | Ian Darwin | |
still likely: localhost in hosts map. ok deraadt@ | |||
2009-11-21 | If tagging is used use match rules instead of pass rules. This is needed | Claudio Jeker | |
so that later pass rules will not overwrite the nat-to/rdr-to settings. Because of this there must be an expilicit "pass .. tagged proxytag .." rule after the ftp-proxy anchor. OK henning@ | |||
2009-11-17 | remove dead code | Marc Espie | |
2009-11-17 | trim more, we already display a quick message for the missing lib elsewhere. | Marc Espie | |
2009-11-17 | shorter message when we don't find library, and stash it away to avoid | Marc Espie | |
repeating ourselves uselessly. | |||
2009-11-17 | revamp interactive stuff: simplify (just one always for everything, per | Marc Espie | |
theo suggestion. Also go through the "state" object which simplifies code a great deal) | |||
2009-11-17 | style nit | Marc Espie | |
2009-11-17 | Fix handling of 5yz response to EHLO, ie. fallback to HELO. | Jacek Masiulaniec | |
2009-11-16 | fuller meter, that goes to the end of the line - 1 | Marc Espie | |
2009-11-16 | -Vstat (get it from AddDelete) | Marc Espie | |
2009-11-16 | typo | Marc Espie | |
2009-11-16 | oops | Marc Espie | |
2009-11-16 | typo | Marc Espie | |
2009-11-16 | unify hints and normal updates some more | Marc Espie | |
2009-11-16 | unify hint and location processing some more. | Marc Espie | |
2009-11-16 | create a pseudo vstat object inside state, so that we can modify Vstat | Marc Espie | |
interface very locally... model hints objects like Locations, to uniformize further treatment. | |||
2009-11-16 | pull more common code in a "framework" routine. | Marc Espie | |
2009-11-16 | identical end sequence, to be factorized | Marc Espie | |
2009-11-16 | start pulling all the code that's the same between pkg_add and pkg_delete | Marc Espie | |
into a common AddDelete package... lots of identical options and handling, actually... | |||
2009-11-16 | Kill dead code. | Jacek Masiulaniec | |
2009-11-16 | Minimize the delay between receiving response to "." and removing the queue | Jacek Masiulaniec | |
entry in order to avoid the risk of sending duplicate mail. | |||
2009-11-15 | make these independent from Getopt, require Exporter | Marc Espie | |
2009-11-15 | add missing headers needed by err/errx(), alarm(), sigemptyset(), sigaction(). | Charles Longeau | |
"go ahead" sturm@ | |||
2009-11-15 | start categorizing stuff as error messages that should be error messages | Marc Espie | |
2009-11-15 | common code, handle SIG{CONT} in both cases. | Marc Espie | |
2009-11-15 | missing return (nothing else to see) | Marc Espie | |
2009-11-14 | ouch, collision handling must take destdir into account | Marc Espie | |
2009-11-14 | add missing header needed by signal() | Charles Longeau | |
ok gilles@ | |||
2009-11-14 | remove duplicate header include | Charles Longeau | |
ok gilles@ | |||
2009-11-14 | remove stupid extraneous return... | Marc Espie | |
2009-11-14 | pull the eval {} code into an anonymous sub, so that we can choose to exec | Marc Espie | |
it without the eval (useful for backtraces when I want bug-reports, since eval {} will show you the backtrace of the eval, not of the function call) | |||
2009-11-14 | fix. noticed by sthen@ | Marc Espie | |
2009-11-13 | add missing headers needed by time() | Charles Longeau | |
ok jacekm@ | |||
2009-11-13 | Don't use [] in function arguments when dealing with arrays | Jonathan Gray | |
we don't know the size of, otherwise gcc >= 4 will error. ok markus@ deraadt@ | |||
2009-11-13 | Add logging of failed local deliveries. | Jacek Masiulaniec | |
2009-11-13 | Log all 4yz and 5yz replies that we send to our clients. | Jacek Masiulaniec | |
2009-11-13 | Include recipient address in "Recipient rejected" reply. | Jacek Masiulaniec | |
2009-11-13 | Log FQDN and IP of the server we handed mail to. As a bonus, don't delay | Jacek Masiulaniec | |
logging of successful deliveries until all MXs were tried, plus add logging of 5yz replies. tested by todd@, "reads ok" gilles@ | |||
2009-11-12 | Add more paranoia in lsa_router_check(). There needs to be at least one | Claudio Jeker | |
router link in a type-1 LSA. | |||
2009-11-12 | get_rtr_link and get_net_link are not supposed to fail and returning | Claudio Jeker | |
NULL would be bad. So instead use a fatalx() in that impossible case. After a discussion with deraadt@ because of a parfait warning. | |||
2009-11-12 | Make life easier for parfait. I corporation with deraadt. -moj | Mats O Jansson | |
2009-11-12 | for packets with unknown payloads (outside the range of our knowledge) simply | Theo de Raadt | |
treat them the same as truncated packets ok sthen | |||
2009-11-12 | accessses 1 entry too far, found by parfait, ok jsg claudio | Theo de Raadt | |
2009-11-12 | simpler: the whole set fails | Marc Espie | |
2009-11-12 | Fix a memleak in parse_config(). Correct return code in few error paths. | Jacek Masiulaniec | |
Fix two memleaks in purge_config(). First problem spotted by parfait, the other ones - by myself. "looks good" gilles@ | |||
2009-11-12 | Don't reuse a loop counter specifying the size of an array outside | Jonathan Gray | |
of the loop to then access an offset in the array as this can lead to an off by one. found by parfait ok miod@ | |||
2009-11-12 | a sprinkle of knf | Theo de Raadt | |