Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-05-31 | remove 'where' parameter from all x*() functions in utils.c, it doesn't | Gilles Chehade | |
really help us with anything, propagate the change in codebase ok millert@ | |||
2018-05-31 | - Replace virtual(5) reference by table(5) as virtual table format is | Gilles Chehade | |
documentation in table(5) man page under "Aliasing tables" section. - Add "auth <table>" documentation. Example at end of the man page uses it, so it should be documented. diff from Sebastien Marie | |||
2018-05-31 | simplify | Eric Faurot | |
ok gilles@ | |||
2018-05-31 | Document -u | Marc Espie | |
assume the user.list format to be self-documented, as it is fairly loose. | |||
2018-05-30 | cosmethic change, shuffle smtpd specific grammar bits _after_ the ones that | Gilles Chehade | |
make sense to others | |||
2018-05-30 | Use new SIOCGIFGLIST to provide carpGroupTable, showing "demote" values | Stuart Henderson | |
for interface groups on the system. From Jan Klemkow. | |||
2018-05-30 | when path is too long, display it in error message | Gilles Chehade | |
suggested by millert@ | |||
2018-05-30 | consistent casing; | Jason McIntyre | |
2018-05-30 | tweak previous; | Jason McIntyre | |
2018-05-30 | port -u userlist option from update-plist, as suggested by sthen@. | Marc Espie | |
main differences: - error out on a problem instead of warning - always parse the userlist if the option is specified. Avoid ticking time bomb effect on bulk builds, where packages would be fine until the first @new(user|group) usage in case the user list got corrupted. Note it's still an option, so if you're using pkg_create outside of the ports tree, you can do whatever you want. | |||
2018-05-30 | teach mail.maildir how to junk mails if -j option is set and X-Spam is | Gilles Chehade | |
positive, this can be enabled with the 'junk' option in maildir action ok eric@ | |||
2018-05-29 | it turns out we can provide syntaxic sugar for an LMTP action in smtpd.conf | Gilles Chehade | |
which should please our users ;-) while at it get rid of unix:/inet: prefixes in LMTP destinations, we either use an absolute path for a UNIX socket or it's necessarily a network socket so '/' as the first char of the destination makes the prefixes irrelevant. | |||
2018-05-29 | RECIPIENT should really be the dest address, post-expansion, not rcpt | Gilles Chehade | |
suggested by eric@ | |||
2018-05-29 | remove unused function | Eric Faurot | |
ok gilles@ | |||
2018-05-29 | missing case | Eric Faurot | |
ok gilles@ | |||
2018-05-29 | no need to parse and dump the relayhost in the lookup process. | Eric Faurot | |
ok gilles@ | |||
2018-05-29 | remove unused code | Eric Faurot | |
ok gilles@ | |||
2018-05-29 | simplify mail.maildir as well as the parse.y glue | Gilles Chehade | |
ok eric@ | |||
2018-05-29 | provide mail user agents with the same environments as Postfix | Gilles Chehade | |
ok millert@, eric@ | |||
2018-05-29 | remove paragraph that's no longer true about authenticated users being | Gilles Chehade | |
matched by from local | |||
2018-05-28 | fix mail-from in relay rules, was not propagated from grammar to mta | Gilles Chehade | |
reported by a user | |||
2018-05-28 | zero memory before calling text_to_relayhost() | Eric Faurot | |
fix issue reported by semarie@ ok gilles@ | |||
2018-05-28 | stop processing envelope if smarthost parsing failed | Eric Faurot | |
ok gilles@ | |||
2018-05-28 | missing m_close() | Eric Faurot | |
ok gilles@ | |||
2018-05-28 | recognise MikroTik's Ethernet over IP (eoip) protocol | David Gwynne | |
eoip is a twisted gre based protocol using version 1 like pptp, but a different protocol id. this splits the gre 1 protocol handling up so it doesn't assume that all packets are pptp, but decides between eoip and pptp based on the protocol field. unknown protocols are unknown rather that assumed to be pptp. ok sthen@ | |||
2018-05-26 | - old implem of @rcscript predates absolute_okay. | Marc Espie | |
I don't think the implicit cwd is needed anymore. and a full bulk agrees with me. (this will simplify update-plist's logic as @rcscript is no longer special) - mandoc special subclass never got any use, as Ingo got mandoc to be so good the distinction does not make any sense, gc it. | |||
2018-05-25 | Document that "from local" and "for local" are still the defaults. | Todd C. Miller | |
OK gilles@ | |||
2018-05-25 | default to from local and for local as we used to | Gilles Chehade | |
spotted by millert@, ok eric@ | |||
2018-05-25 | fix broken example | Gilles Chehade | |
2018-05-25 | Use a cache for process information to speed up snmp walks. | Gerhard Roth | |
ok jca@ claudio@ | |||
2018-05-24 | three forgotten s/-literal/-unfilled/ | Ingo Schwarze | |
2018-05-24 | adapt to the new smtpd.conf(5) format, OK gilles@ | Ingo Schwarze | |
2018-05-24 | no longer used, remove | Gilles Chehade | |
2018-05-24 | PATH_SPOOL is /var/spool/smtpd | Gilles Chehade | |
2018-05-24 | basic macro cleanup | Ingo Schwarze | |
2018-05-24 | bump version, this will be a big release when OpenBSD 6.4 is released :-) | Gilles Chehade | |
2018-05-24 | switch smtpd to new grammar | Gilles Chehade | |
ok eric@ | |||
2018-05-24 | check the intended value | Eric Faurot | |
ok krw@ gilles@ | |||
2018-05-23 | Set the port.op value when parsing the httpd.conf port value. | Alexander Bluhm | |
Otherwise the default port for http or https may used depending on uninitialized memory. Fixes regress on i386. OK reyk@ | |||
2018-05-23 | Forgot to revert another "port 80" | Reyk Floeter | |
Pointed out by jmc@ | |||
2018-05-23 | Do not override the default BINMODE 555 with 111. | Theo Buehler | |
ok gilles | |||
2018-05-23 | vmd(8): revert r1.23 (unlatched PIT reads), this made time go too fast on | Mike Larkin | |
some machines. Will investigate and commit a proper fix later. | |||
2018-05-21 | Nuke unused variables. Initialize variable before use. | Kenneth R Westerback | |
Makes clang happy. ok gilles@ | |||
2018-05-19 | Add support for client certificate authentication to httpd. | Joel Sing | |
From Jack Burton <jack at saosce dot com dot au> - thanks! Also tested by Jan Klemkow <j.klemkow at wemelug dot de>. ok beck@ reyk@ | |||
2018-05-18 | Move LISTEN ON {} code into a function listen_on(). | Reyk Floeter | |
No functional change, but it makes it easier to deal with the grammar. | |||
2018-05-18 | Revert manpage description as well | Reyk Floeter | |
2018-05-18 | Revert previous: it introduced a shift/reduce conflict in the grammar. | Reyk Floeter | |
2018-05-18 | Allow to omit the listen port configuration. Default to port 80, tls port 443. | Reyk Floeter | |
OK florian@ jmc@ | |||
2018-05-18 | Add support for attribute filter rules on search/read operations. | Reyk Floeter | |
OK jmatthew@ | |||
2018-05-18 | Turn on minimal-reponses and refuse-any per default. | Florian Obser | |
OK sthen |